From f5d9263ad1f60644675f57e0064e53dde21562e3 Mon Sep 17 00:00:00 2001 From: David Holdeman Date: Wed, 9 Sep 2020 02:22:15 -0500 Subject: [PATCH] switch start/stop to ButtonDebounce (#1777) --- firmware/controllers/algo/engine.h | 1 - firmware/controllers/controllers.mk | 1 + firmware/controllers/engine_controller.cpp | 3 ++ firmware/controllers/engine_controller.h | 1 + .../controllers/engine_controller_misc.cpp | 39 ++++--------------- firmware/controllers/start_stop.cpp | 10 +++++ firmware/controllers/start_stop.h | 6 +++ firmware/hw_layer/hardware.cpp | 10 ----- 8 files changed, 29 insertions(+), 42 deletions(-) create mode 100644 firmware/controllers/start_stop.cpp create mode 100644 firmware/controllers/start_stop.h diff --git a/firmware/controllers/algo/engine.h b/firmware/controllers/algo/engine.h index 74063305ac..3d0c165e0f 100644 --- a/firmware/controllers/algo/engine.h +++ b/firmware/controllers/algo/engine.h @@ -222,7 +222,6 @@ public: bool startStopState = false; - efitick_t startStopStateLastPushTime = 0; int startStopStateToggleCounter = 0; /** diff --git a/firmware/controllers/controllers.mk b/firmware/controllers/controllers.mk index c546632d5d..46b73a91ad 100644 --- a/firmware/controllers/controllers.mk +++ b/firmware/controllers/controllers.mk @@ -50,6 +50,7 @@ CONTROLLERS_SRC_CPP = \ $(CONTROLLERS_DIR)/serial/serial_sensor.cpp \ $(CONTROLLERS_DIR)/buttonshift.cpp \ $(CONTROLLERS_DIR)/tcu.cpp \ + $(CONTROLLERS_DIR)/start_stop.cpp \ CONTROLLERS_INC=\ $(CONTROLLERS_DIR) \ diff --git a/firmware/controllers/engine_controller.cpp b/firmware/controllers/engine_controller.cpp index 85ce87c3c8..88aa29e5b3 100644 --- a/firmware/controllers/engine_controller.cpp +++ b/firmware/controllers/engine_controller.cpp @@ -58,6 +58,7 @@ #include "gppwm.h" #include "date_stamp.h" #include "buttonshift.h" +#include "start_stop.h" #if EFI_SENSOR_CHART #include "sensor_chart.h" @@ -591,6 +592,8 @@ void commonInitEngineController(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_S initButtonShift(PASS_ENGINE_PARAMETER_SIGNATURE); + initStartStopButton(PASS_ENGINE_PARAMETER_SIGNATURE); + #if EFI_ELECTRONIC_THROTTLE_BODY initElectronicThrottle(PASS_ENGINE_PARAMETER_SIGNATURE); #endif /* EFI_ELECTRONIC_THROTTLE_BODY */ diff --git a/firmware/controllers/engine_controller.h b/firmware/controllers/engine_controller.h index c70d28fbe1..64752173e9 100644 --- a/firmware/controllers/engine_controller.h +++ b/firmware/controllers/engine_controller.h @@ -14,6 +14,7 @@ char * getPinNameByAdcChannel(const char *msg, adc_channel_e hwChannel, char *bu void initPeriodicEvents(DECLARE_ENGINE_PARAMETER_SIGNATURE); void initEngineContoller(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX); void commonInitEngineController(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX); +void initStartStopButton(DECLARE_ENGINE_PARAMETER_SIGNATURE); void initDataStructures(DECLARE_ENGINE_PARAMETER_SIGNATURE); void touchTimeCounter(); diff --git a/firmware/controllers/engine_controller_misc.cpp b/firmware/controllers/engine_controller_misc.cpp index 6dab7eb6c9..ca1b090fd1 100644 --- a/firmware/controllers/engine_controller_misc.cpp +++ b/firmware/controllers/engine_controller_misc.cpp @@ -13,6 +13,7 @@ EXTERN_ENGINE; extern LoggingWithStorage sharedLogger; +extern ButtonDebounce startStopButtonDebounce; #if ENABLE_PERF_TRACE static uint8_t nextThreadId = 0; @@ -154,9 +155,7 @@ void touchTimeCounter() { static void onStartStopButtonToggle(DECLARE_ENGINE_PARAMETER_SIGNATURE) { engine->startStopStateToggleCounter++; - if (engine->rpmCalculator.isStopped()) { - engine->startStopStateLastPushTime = getTimeNowNt(); - + if (engine->rpmCalculator.isStopped(PASS_ENGINE_PARAMETER_SIGNATURE)) { bool wasStarterEngaged = enginePins.starterControl.getAndSet(1); if (!wasStarterEngaged) { scheduleMsg(&sharedLogger, "Let's crank this engine for up to %dseconds!", CONFIG(startCrankingDuration)); @@ -167,29 +166,16 @@ static void onStartStopButtonToggle(DECLARE_ENGINE_PARAMETER_SIGNATURE) { } } -static bool isFirstStartStopCallback = true; - void slowStartStopButtonCallback(DECLARE_ENGINE_PARAMETER_SIGNATURE) { - if (CONFIG(startStopButtonPin) != GPIO_UNASSIGNED) { #if EFI_PROD_CODE - bool startStopState = efiReadPin(CONFIG(startStopButtonPin)); + bool startStopState = startStopButtonDebounce.readPinEvent(); - if (isFirstStartStopCallback) { - // we just remember initial value on first callback and do not react to it - isFirstStartStopCallback = false; - } else if (startStopState && !engine->startStopState) { - // we are here on transition from 0 to 1 - onStartStopButtonToggle(PASS_ENGINE_PARAMETER_SIGNATURE); - } - engine->startStopState = startStopState; + if (startStopState && !engine->startStopState) { + // we are here on transition from 0 to 1 + onStartStopButtonToggle(PASS_ENGINE_PARAMETER_SIGNATURE); + } + engine->startStopState = startStopState; #endif /* EFI_PROD_CODE */ - } - - if (engine->startStopStateLastPushTime == 0) { - // nothing is going on with startStop button - return; - } - // todo: should this be simply FSIO? if (engine->rpmCalculator.isRunning()) { @@ -198,15 +184,6 @@ void slowStartStopButtonCallback(DECLARE_ENGINE_PARAMETER_SIGNATURE) { if (wasStarterEngaged) { scheduleMsg(&sharedLogger, "Engine runs we can disengage the starter"); } - engine->startStopStateLastPushTime = 0; - } - - if (getTimeNowNt() - engine->startStopStateLastPushTime > NT_PER_SECOND * CONFIG(startCrankingDuration)) { - bool wasStarterEngaged = enginePins.starterControl.getAndSet(0); - if (wasStarterEngaged) { - scheduleMsg(&sharedLogger, "Cranking timeout %dseconds", CONFIG(startCrankingDuration)); - } - engine->startStopStateLastPushTime = 0; } } diff --git a/firmware/controllers/start_stop.cpp b/firmware/controllers/start_stop.cpp new file mode 100644 index 0000000000..5c0d9d6638 --- /dev/null +++ b/firmware/controllers/start_stop.cpp @@ -0,0 +1,10 @@ +#include "start_stop.h" +#include "engine.h" + +EXTERN_ENGINE; + +ButtonDebounce startStopButtonDebounce; + +void initStartStopButton(DECLARE_ENGINE_PARAMETER_SIGNATURE) { + startStopButtonDebounce.init(CONFIG(startCrankingDuration), &CONFIG(startStopButtonPin), &CONFIG(startStopButtonMode)); +} diff --git a/firmware/controllers/start_stop.h b/firmware/controllers/start_stop.h new file mode 100644 index 0000000000..823f6c1a84 --- /dev/null +++ b/firmware/controllers/start_stop.h @@ -0,0 +1,6 @@ +#pragma once + +#include "debounce.h" +#include "globalaccess.h" + +void initStartStopButton(DECLARE_ENGINE_PARAMETER_SIGNATURE); diff --git a/firmware/hw_layer/hardware.cpp b/firmware/hw_layer/hardware.cpp index c619724a31..777d7e7667 100644 --- a/firmware/hw_layer/hardware.cpp +++ b/firmware/hw_layer/hardware.cpp @@ -339,10 +339,6 @@ void applyNewHardwareSettings(void) { brain_pin_markUnused(activeConfiguration.clutchUpPin); } - if (isPinOrModeChanged(startStopButtonPin, startStopButtonMode)) { - brain_pin_markUnused(activeConfiguration.startStopButtonPin); - } - enginePins.unregisterPins(); #if EFI_SHAFT_POSITION_INPUT @@ -502,12 +498,6 @@ void initHardware(Logging *l) { initSmartGpio(PASS_ENGINE_PARAMETER_SIGNATURE); #endif - if (CONFIG(startStopButtonPin) != GPIO_UNASSIGNED) { - efiSetPadMode("start/stop", CONFIG(startStopButtonPin), - getInputMode(CONFIG(startStopButtonMode))); - } - - // output pins potentially depend on 'initSmartGpio' initOutputPins(PASS_ENGINE_PARAMETER_SIGNATURE);