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) {