From a1d834130e2ccfe122e680564f861f1b06e41c89 Mon Sep 17 00:00:00 2001 From: rusefi Date: Sat, 5 Jan 2019 23:48:37 -0500 Subject: [PATCH] FSIO to stop engine if things are REALLY bad - user-configurable and disabled by default obviously --- firmware/config/stm32f4ems/efifeatures.h | 3 ++ firmware/controllers/algo/engine.cpp | 8 +++++ firmware/controllers/algo/engine.h | 24 +++++++++++++- ...ngine_configuration_generated_structures.h | 17 ++++++++-- firmware/controllers/algo/rusefi_generated.h | 10 ++++-- firmware/controllers/core/fsio_core.cpp | 2 +- firmware/controllers/core/fsio_core.h | 1 + firmware/controllers/core/fsio_impl.cpp | 33 ++++++++++++++++--- firmware/integration/rusefi_config.txt | 5 ++- firmware/tunerstudio/rusefi.input | 2 ++ .../models/src/com/rusefi/config/Fields.java | 12 +++++-- simulator/simulator/efifeatures.h | 3 ++ unit_tests/efifeatures.h | 3 ++ 13 files changed, 108 insertions(+), 15 deletions(-) diff --git a/firmware/config/stm32f4ems/efifeatures.h b/firmware/config/stm32f4ems/efifeatures.h index b69d88d2f8..eafb08ea7c 100644 --- a/firmware/config/stm32f4ems/efifeatures.h +++ b/firmware/config/stm32f4ems/efifeatures.h @@ -22,6 +22,9 @@ #define HAL_USE_USB_MSD FALSE +#define EFI_ENABLE_CRITICAL_ENGINE_STOP TRUE +#define EFI_ENABLE_ENGINE_WARNING TRUE + #define EFI_USE_CCM TRUE /** diff --git a/firmware/controllers/algo/engine.cpp b/firmware/controllers/algo/engine.cpp index 7f184e7bc3..fe8f0114ca 100644 --- a/firmware/controllers/algo/engine.cpp +++ b/firmware/controllers/algo/engine.cpp @@ -41,6 +41,14 @@ EXTERN_ENGINE extern TunerStudioOutputChannels tsOutputChannels; #endif /* EFI_TUNER_STUDIO */ +FsioState::FsioState() { +#if EFI_ENABLE_ENGINE_WARNING + isEngineWarning = FALSE; +#endif +#if EFI_ENABLE_CRITICAL_ENGINE_STOP + isCriticalEngineCondition = FALSE; +#endif +} void Engine::initializeTriggerShape(Logging *logger DECLARE_ENGINE_PARAMETER_SUFFIX) { #if !EFI_UNIT_TEST diff --git a/firmware/controllers/algo/engine.h b/firmware/controllers/algo/engine.h index abc0b0ca67..291c0b126a 100644 --- a/firmware/controllers/algo/engine.h +++ b/firmware/controllers/algo/engine.h @@ -285,6 +285,26 @@ class WallFuel; typedef void (*configuration_callback_t)(Engine*); +class FsioState { +public: + FsioState(); +#if EFI_ENABLE_ENGINE_WARNING + /** + * Shall we purposely miss on some cylinders in order to attract driver's attention to some problem + * like getting too hot + */ + float isEngineWarning; +#endif /* EFI_ENABLE_ENGINE_WARNING */ + +#if EFI_ENABLE_CRITICAL_ENGINE_STOP + /** + * Shall we stop engine due to some critical condition in order to save the engine + */ + float isCriticalEngineCondition; +#endif /* EFI_ENABLE_CRITICAL_ENGINE_STOP */ +}; + + class Engine { public: Engine(persistent_config_s *config); @@ -391,11 +411,13 @@ public: bool isRunningPwmTest; + // todo: move this into FsioState class float fsioTimingAdjustment; float fsioIdleTargetRPMAdjustment; - float servoValues[SERVO_COUNT]; + FsioState fsioState; + /** * Are we experiencing knock right now? */ diff --git a/firmware/controllers/algo/engine_configuration_generated_structures.h b/firmware/controllers/algo/engine_configuration_generated_structures.h index 4e60952083..b166f18f30 100644 --- a/firmware/controllers/algo/engine_configuration_generated_structures.h +++ b/firmware/controllers/algo/engine_configuration_generated_structures.h @@ -1,4 +1,4 @@ -// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Fri Jan 04 22:03:58 EST 2019 +// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sat Jan 05 23:35:34 EST 2019 // begin #ifndef ENGINE_CONFIGURATION_GENERATED_H_ #define ENGINE_CONFIGURATION_GENERATED_H_ @@ -1366,8 +1366,19 @@ typedef struct { offset 1472 bit 26 */ bool useFSIO15ForIdleRpmAdjustment : 1; /** + * Sometimes we just have to shut the engine down. Use carefully! offset 1472 bit 27 */ - bool unused_bit_1472_27 : 1; + bool useFSIO5ForCriticalIssueEngineStop : 1; + /** + * Sometimes we have to miss injection on purpose to attract driver's attention + offset 1472 bit 28 */ + bool useFSIO4ForSeriousEngineWarning : 1; + /** + offset 1472 bit 29 */ + bool unused_bit_1472_29 : 1; + /** + offset 1472 bit 30 */ + bool unused_bit_1472_30 : 1; /** * offset 1476 */ @@ -2461,4 +2472,4 @@ typedef struct { #endif // end -// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Fri Jan 04 22:03:58 EST 2019 +// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sat Jan 05 23:35:34 EST 2019 diff --git a/firmware/controllers/algo/rusefi_generated.h b/firmware/controllers/algo/rusefi_generated.h index 1bc95d0bc2..02e3420d6a 100644 --- a/firmware/controllers/algo/rusefi_generated.h +++ b/firmware/controllers/algo/rusefi_generated.h @@ -923,8 +923,14 @@ #define useFSIO12ForServo5_offset_hex 5c0 #define useFSIO15ForIdleRpmAdjustment_offset 1472 #define useFSIO15ForIdleRpmAdjustment_offset_hex 5c0 -#define unused_bit_1472_27_offset 1472 -#define unused_bit_1472_27_offset_hex 5c0 +#define useFSIO5ForCriticalIssueEngineStop_offset 1472 +#define useFSIO5ForCriticalIssueEngineStop_offset_hex 5c0 +#define useFSIO4ForSeriousEngineWarning_offset 1472 +#define useFSIO4ForSeriousEngineWarning_offset_hex 5c0 +#define unused_bit_1472_29_offset 1472 +#define unused_bit_1472_29_offset_hex 5c0 +#define unused_bit_1472_30_offset 1472 +#define unused_bit_1472_30_offset_hex 5c0 #define hipOutputChannel_offset 1476 #define hipOutputChannel_offset_hex 5c4 #define idleMode_offset 1480 diff --git a/firmware/controllers/core/fsio_core.cpp b/firmware/controllers/core/fsio_core.cpp index 195ac6a90a..aeaf26db7a 100644 --- a/firmware/controllers/core/fsio_core.cpp +++ b/firmware/controllers/core/fsio_core.cpp @@ -113,7 +113,7 @@ void LECalculator::add(LEElement *element) { } } -static bool float2bool(float v) { +bool float2bool(float v) { return v != 0; } diff --git a/firmware/controllers/core/fsio_core.h b/firmware/controllers/core/fsio_core.h index cb7cd42e80..efe155c3ed 100644 --- a/firmware/controllers/core/fsio_core.h +++ b/firmware/controllers/core/fsio_core.h @@ -133,5 +133,6 @@ public: const char *getNextToken(const char *line, char *buffer, const int bufferSize); bool isNumeric(const char* line); le_action_e parseAction(const char * line); +bool float2bool(float v); #endif /* LOGIC_EXPRESSION_H_ */ diff --git a/firmware/controllers/core/fsio_impl.cpp b/firmware/controllers/core/fsio_impl.cpp index 18a8c65598..fcb616bc3b 100644 --- a/firmware/controllers/core/fsio_impl.cpp +++ b/firmware/controllers/core/fsio_impl.cpp @@ -14,6 +14,7 @@ #if EFI_FSIO || defined(__DOXYGEN__) #include "fsio_impl.h" +#include "settings.h" #include "allsensors.h" #include "rpm_calculator.h" #include "efiGpio.h" @@ -25,6 +26,8 @@ */ #define NO_PWM 0 +#define MAGIC_OFFSET_FOR_ENGINE_WARNING 4 +#define MAGIC_OFFSET_FOR_CRITICAL_ENGINE 5 // see useFSIO15ForIdleRpmAdjustment #define MAGIC_OFFSET_FOR_IDLE_TARGET_RPM 14 @@ -410,13 +413,18 @@ static void setFsioFrequency(int index, int frequency) { /** * @param out param! current and new value as long as element is not NULL + * @return 'true' if value has changed */ -static void updateValueOrWarning(int fsioIndex, const char *msg, float *value DECLARE_ENGINE_PARAMETER_SUFFIX) { +static bool updateValueOrWarning(int fsioIndex, const char *msg, float *value DECLARE_ENGINE_PARAMETER_SUFFIX) { LEElement * element = fsioLogics[fsioIndex]; if (element == NULL) { warning(CUSTOM_FSIO_INVALID_EXPRESSION, "invalid expression for %s", msg); + return false; } else { - *value = calc.getValue2(*value, element PASS_ENGINE_PARAMETER_SUFFIX); + float beforeValue = *value; + *value = calc.getValue2(beforeValue, element PASS_ENGINE_PARAMETER_SUFFIX); + // floating '==' comparison without EPS seems fine here + return (beforeValue != *value); } } @@ -468,12 +476,29 @@ void runFsio(DECLARE_ENGINE_PARAMETER_SIGNATURE) { setPinState("fan", &enginePins.fanRelay, radiatorFanLogic PASS_ENGINE_PARAMETER_SUFFIX); } +#if EFI_ENABLE_ENGINE_WARNING + if (engineConfiguration->useFSIO4ForSeriousEngineWarning) { + updateValueOrWarning(MAGIC_OFFSET_FOR_ENGINE_WARNING, "eng warning", &ENGINE(fsioState.isEngineWarning) PASS_ENGINE_PARAMETER_SUFFIX); + } +#endif + +#if EFI_ENABLE_CRITICAL_ENGINE_STOP + if (engineConfiguration->useFSIO5ForCriticalIssueEngineStop) { + bool changed = updateValueOrWarning(MAGIC_OFFSET_FOR_CRITICAL_ENGINE, "eng critical", &ENGINE(fsioState.isCriticalEngineCondition) PASS_ENGINE_PARAMETER_SUFFIX); + if (changed && float2bool(ENGINE(fsioState.isCriticalEngineCondition))) { +#if EFI_PROD_CODE || EFI_SIMULATOR + scheduleStopEngine(); +#endif + } + } +#endif + if (engineConfiguration->useFSIO15ForIdleRpmAdjustment) { - updateValueOrWarning(MAGIC_OFFSET_FOR_IDLE_TARGET_RPM, "RPM target", &engine->fsioIdleTargetRPMAdjustment PASS_ENGINE_PARAMETER_SUFFIX); + updateValueOrWarning(MAGIC_OFFSET_FOR_IDLE_TARGET_RPM, "RPM target", &ENGINE(fsioIdleTargetRPMAdjustment) PASS_ENGINE_PARAMETER_SUFFIX); } if (engineConfiguration->useFSIO16ForTimingAdjustment) { - updateValueOrWarning(MAGIC_OFFSET_FOR_TIMING_FSIO, "timing", &engine->fsioTimingAdjustment PASS_ENGINE_PARAMETER_SUFFIX); + updateValueOrWarning(MAGIC_OFFSET_FOR_TIMING_FSIO, "timing", &ENGINE(fsioTimingAdjustment) PASS_ENGINE_PARAMETER_SUFFIX); } if (engineConfiguration->useFSIO8ForServo1) { diff --git a/firmware/integration/rusefi_config.txt b/firmware/integration/rusefi_config.txt index 4f93206637..c37d6788ad 100644 --- a/firmware/integration/rusefi_config.txt +++ b/firmware/integration/rusefi_config.txt @@ -669,7 +669,10 @@ bit hasFrequencyReportingMapSensor; bit useFSIO11ForServo4 bit useFSIO12ForServo5 bit useFSIO15ForIdleRpmAdjustment; -bit unused_bit_1472_27; +bit useFSIO5ForCriticalIssueEngineStop;Sometimes we just have to shut the engine down. Use carefully! +bit useFSIO4ForSeriousEngineWarning;Sometimes we have to miss injection on purpose to attract driver's attention +bit unused_bit_1472_29; +bit unused_bit_1472_30; adc_channel_e hipOutputChannel; custom idle_mode_e 4 bits, U32, @OFFSET@, [0:0], "Automatic", "Manual" diff --git a/firmware/tunerstudio/rusefi.input b/firmware/tunerstudio/rusefi.input index 9f35e772f3..70e7980fb2 100644 --- a/firmware/tunerstudio/rusefi.input +++ b/firmware/tunerstudio/rusefi.input @@ -2128,7 +2128,9 @@ cmd_stop_engine = "w\x00\x99\x00\x00" field = "#1", fsioFormulas1 field = "#2", fsioFormulas2 field = "#3", fsioFormulas3 + field = "use FSIO #8 for serious eninge warning",useFSIO4ForSeriousEngineWarning field = "#4", fsioFormulas4 + field = "use FSIO #5 for critical engine stop", useFSIO5ForCriticalIssueEngineStop field = "#5", fsioFormulas5 field = "#6", fsioFormulas6 field = "#7", fsioFormulas7 diff --git a/java_console/models/src/com/rusefi/config/Fields.java b/java_console/models/src/com/rusefi/config/Fields.java index b6eb0dffbd..256d33ce9f 100644 --- a/java_console/models/src/com/rusefi/config/Fields.java +++ b/java_console/models/src/com/rusefi/config/Fields.java @@ -1,6 +1,6 @@ package com.rusefi.config; -// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Fri Jan 04 22:03:58 EST 2019 +// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sat Jan 05 16:40:23 EST 2019 public class Fields { public static final int LE_COMMAND_LENGTH = 200; public static final int BLOCKING_FACTOR = 400; @@ -632,7 +632,10 @@ public class Fields { public static final int useFSIO11ForServo4_offset = 1472; public static final int useFSIO12ForServo5_offset = 1472; public static final int useFSIO15ForIdleRpmAdjustment_offset = 1472; - public static final int unused_bit_1472_27_offset = 1472; + public static final int useFSIO5ForCriticalIssueEngineStop_offset = 1472; + public static final int useFSIO4ForSeriousEngineWarning_offset = 1472; + public static final int unused_bit_1472_29_offset = 1472; + public static final int unused_bit_1472_30_offset = 1472; public static final int hipOutputChannel_offset = 1476; public static final int idleMode_offset = 1480; public static final int isInjectionEnabled_offset = 1484; @@ -1603,7 +1606,10 @@ public class Fields { public static final Field USEFSIO11FORSERVO4 = Field.create("USEFSIO11FORSERVO4", 1472, FieldType.BIT, 24); public static final Field USEFSIO12FORSERVO5 = Field.create("USEFSIO12FORSERVO5", 1472, FieldType.BIT, 25); public static final Field USEFSIO15FORIDLERPMADJUSTMENT = Field.create("USEFSIO15FORIDLERPMADJUSTMENT", 1472, FieldType.BIT, 26); - public static final Field UNUSED_BIT_1472_27 = Field.create("UNUSED_BIT_1472_27", 1472, FieldType.BIT, 27); + public static final Field USEFSIO5FORCRITICALISSUEENGINESTOP = Field.create("USEFSIO5FORCRITICALISSUEENGINESTOP", 1472, FieldType.BIT, 27); + public static final Field USEFSIO4FORSERIOUSENGINEWARNING = Field.create("USEFSIO4FORSERIOUSENGINEWARNING", 1472, FieldType.BIT, 28); + public static final Field UNUSED_BIT_1472_29 = Field.create("UNUSED_BIT_1472_29", 1472, FieldType.BIT, 29); + public static final Field UNUSED_BIT_1472_30 = Field.create("UNUSED_BIT_1472_30", 1472, FieldType.BIT, 30); public static final Field HIPOUTPUTCHANNEL = Field.create("HIPOUTPUTCHANNEL", 1476, FieldType.INT, adc_channel_e); public static final Field IDLEMODE = Field.create("IDLEMODE", 1480, FieldType.INT); public static final Field ISINJECTIONENABLED = Field.create("ISINJECTIONENABLED", 1484, FieldType.BIT, 0); diff --git a/simulator/simulator/efifeatures.h b/simulator/simulator/efifeatures.h index 17b9703a9a..2ce6682b96 100644 --- a/simulator/simulator/efifeatures.h +++ b/simulator/simulator/efifeatures.h @@ -13,6 +13,9 @@ #define EFI_ENABLE_MOCK_ADC TRUE #define EFI_PRINTF_FUEL_DETAILS TRUE +#define EFI_ENABLE_CRITICAL_ENGINE_STOP TRUE +#define EFI_ENABLE_ENGINE_WARNING TRUE + #define EFI_CDM_INTEGRATION FALSE diff --git a/unit_tests/efifeatures.h b/unit_tests/efifeatures.h index 8e01953c91..4f336e81e4 100644 --- a/unit_tests/efifeatures.h +++ b/unit_tests/efifeatures.h @@ -16,6 +16,9 @@ #define SPARK_EXTREME_LOGGING TRUE +#define EFI_ENABLE_CRITICAL_ENGINE_STOP TRUE +#define EFI_ENABLE_ENGINE_WARNING TRUE + #define EFI_GPIO_HARDWARE FALSE #define FUEL_MATH_EXTREME_LOGGING FALSE