Too many bench test buttons are broken #5327

This commit is contained in:
rusefi 2023-06-15 22:23:35 -04:00
parent b27a87b601
commit 308bbbe6c5
1 changed files with 3 additions and 1 deletions

View File

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