Too many bench test buttons are broken #5327
This commit is contained in:
parent
b27a87b601
commit
308bbbe6c5
|
@ -20,7 +20,9 @@ void FuelPumpController::onSlowCallback() {
|
||||||
|
|
||||||
isFuelPumpOn = isPrime || engineTurnedRecently;
|
isFuelPumpOn = isPrime || engineTurnedRecently;
|
||||||
|
|
||||||
enginePins.fuelPumpRelay.setValue(isFuelPumpOn);
|
if (!isRunningBenchTest()) {
|
||||||
|
enginePins.fuelPumpRelay.setValue("FP", isFuelPumpOn);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void FuelPumpController::onIgnitionStateChanged(bool ignitionOnParam) {
|
void FuelPumpController::onIgnitionStateChanged(bool ignitionOnParam) {
|
||||||
|
|
Loading…
Reference in New Issue