From 99daecb7c77447004cab19d063495b4592a6ac5d Mon Sep 17 00:00:00 2001 From: Andrei Date: Fri, 8 Oct 2021 11:58:11 +0300 Subject: [PATCH] better ignition_voltage_detected message --- firmware/controllers/algo/engine.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/firmware/controllers/algo/engine.cpp b/firmware/controllers/algo/engine.cpp index 491dedddce..c90fc34c98 100644 --- a/firmware/controllers/algo/engine.cpp +++ b/firmware/controllers/algo/engine.cpp @@ -526,8 +526,11 @@ void Engine::checkShutdown() { // and we want to turn on the main relay only when 100% sure. if ((Sensor::get(SensorType::BatteryVoltage).value_or(0) > vBattThresholdOn) && !isInShutdownMode()) { ignitionOnTimeNt = getTimeNowNt(); - stopEngineRequestTimeNt = 0; - efiPrintf("Ignition voltage detected! Cancel the engine shutdown!"); + efiPrintf("Ignition voltage detected!"); + if (stopEngineRequestTimeNt != 0) { + efiPrintf("Cancel the engine shutdown!"); + stopEngineRequestTimeNt = 0; + } } } #endif /* EFI_MAIN_RELAY_CONTROL */