From 87e4e7e4cff7d1f5434a7ca8e5cddda719ec9e0b Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Wed, 25 Aug 2021 01:29:20 -0700 Subject: [PATCH] simpler way for limp manager to handle engine stop (#3194) * simpler * why would we lie about spinning? --- firmware/controllers/algo/engine.cpp | 2 -- firmware/controllers/engine_cycle/rpm_calculator.cpp | 4 ---- firmware/controllers/limp_manager.cpp | 4 ++++ 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/firmware/controllers/algo/engine.cpp b/firmware/controllers/algo/engine.cpp index 0633e0f790..53dc6f5f81 100644 --- a/firmware/controllers/algo/engine.cpp +++ b/firmware/controllers/algo/engine.cpp @@ -669,8 +669,6 @@ void doScheduleStopEngine(DECLARE_ENGINE_PARAMETER_SIGNATURE) { efiPrintf("Starting doScheduleStopEngine"); engine->stopEngineRequestTimeNt = getTimeNowNt(); engine->ignitionOnTimeNt = 0; - // let's close injectors or else if these happen to be open right now - enginePins.stopPins(); // todo: initiate stepper motor parking // make sure we have stored all the info #if EFI_PROD_CODE diff --git a/firmware/controllers/engine_cycle/rpm_calculator.cpp b/firmware/controllers/engine_cycle/rpm_calculator.cpp index ed771071c2..05b6b1cf36 100644 --- a/firmware/controllers/engine_cycle/rpm_calculator.cpp +++ b/firmware/controllers/engine_cycle/rpm_calculator.cpp @@ -98,10 +98,6 @@ bool RpmCalculator::isRunning() const { * @return true if engine is spinning (cranking or running) */ bool RpmCalculator::checkIfSpinning(efitick_t nowNt) const { - if (ENGINE(needToStopEngine(nowNt))) { - return false; - } - /** * note that the result of this subtraction could be negative, that would happen if * we have a trigger event between the time we've invoked 'getTimeNow' and here diff --git a/firmware/controllers/limp_manager.cpp b/firmware/controllers/limp_manager.cpp index 41f47f4bc4..1471a600a1 100644 --- a/firmware/controllers/limp_manager.cpp +++ b/firmware/controllers/limp_manager.cpp @@ -59,6 +59,10 @@ void LimpManager::updateState(int rpm, efitick_t nowNt) { m_hadOilPressureAfterStart = false; } + if (engine->needToStopEngine(nowNt)) { + allowFuel.clear(); + } + m_transientAllowInjection = allowFuel; m_transientAllowIgnition = allowSpark; }