From 308bbbe6c52c9c7490745a4ec6f8b26841121e44 Mon Sep 17 00:00:00 2001 From: rusefi Date: Thu, 15 Jun 2023 22:23:35 -0400 Subject: [PATCH] Too many bench test buttons are broken #5327 --- firmware/controllers/actuators/fuel_pump.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/firmware/controllers/actuators/fuel_pump.cpp b/firmware/controllers/actuators/fuel_pump.cpp index 900debf509..94c6af57ae 100644 --- a/firmware/controllers/actuators/fuel_pump.cpp +++ b/firmware/controllers/actuators/fuel_pump.cpp @@ -20,7 +20,9 @@ void FuelPumpController::onSlowCallback() { isFuelPumpOn = isPrime || engineTurnedRecently; - enginePins.fuelPumpRelay.setValue(isFuelPumpOn); + if (!isRunningBenchTest()) { + enginePins.fuelPumpRelay.setValue("FP", isFuelPumpOn); + } } void FuelPumpController::onIgnitionStateChanged(bool ignitionOnParam) {