detect and ignore doubled trigger edges #4656
This commit is contained in:
parent
a207258334
commit
ee5c9db9a8
|
@ -40,6 +40,7 @@ Release template (copy/paste this for new release):
|
||||||
- Antilag #2403
|
- Antilag #2403
|
||||||
- Lua 'setIgnDisabled' function for all kinds of cranking safety systems
|
- Lua 'setIgnDisabled' function for all kinds of cranking safety systems
|
||||||
- STM32Cube v2.12
|
- STM32Cube v2.12
|
||||||
|
- detect and ignore doubled trigger edges #4656
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- multi-line tooltips in TS #4927
|
- multi-line tooltips in TS #4927
|
||||||
|
|
|
@ -466,7 +466,7 @@ bit useTLE8888_cranking_hack;
|
||||||
bit kickStartCranking
|
bit kickStartCranking
|
||||||
bit useSeparateIdleTablesForCrankingTaper;This uses separate ignition timing and VE tables not only for idle conditions, also during the postcranking-to-idle taper transition (See also afterCrankingIACtaperDuration).
|
bit useSeparateIdleTablesForCrankingTaper;This uses separate ignition timing and VE tables not only for idle conditions, also during the postcranking-to-idle taper transition (See also afterCrankingIACtaperDuration).
|
||||||
bit launchControlEnabled;
|
bit launchControlEnabled;
|
||||||
bit anotherUnusedHere444
|
bit doNotFilterTriggerEdgeNoise,"without filter","with filter";"Detect double trigger edges"
|
||||||
bit antiLagEnabled;
|
bit antiLagEnabled;
|
||||||
bit useRunningMathForCranking,"Fuel Map","Fixed";For cranking either use the specified fixed base fuel mass, or use the normal running math (VE table).
|
bit useRunningMathForCranking,"Fuel Map","Fixed";For cranking either use the specified fixed base fuel mass, or use the normal running math (VE table).
|
||||||
bit displayLogicLevelsInEngineSniffer;Shall we display real life signal or just the part consumed by trigger decoder.\nApplies to both trigger and cam/vvt input.\n\nenable logic_level_trigger
|
bit displayLogicLevelsInEngineSniffer;Shall we display real life signal or just the part consumed by trigger decoder.\nApplies to both trigger and cam/vvt input.\n\nenable logic_level_trigger
|
||||||
|
|
|
@ -2220,6 +2220,7 @@ cmd_set_engine_type_default = "@@TS_IO_TEST_COMMAND_char@@@@ts_command_e_TS_
|
||||||
field = "Do not print messages in case of sync error", silentTriggerError
|
field = "Do not print messages in case of sync error", silentTriggerError
|
||||||
field = "Focus on inputs in engine sniffer", engineSnifferFocusOnInputs
|
field = "Focus on inputs in engine sniffer", engineSnifferFocusOnInputs
|
||||||
field = "Enable noise filtering", useNoiselessTriggerDecoder, {trigger_type == @@trigger_type_e_TT_TOOTHED_WHEEL_60_2@@ || trigger_type == @@trigger_type_e_TT_TOOTHED_WHEEL_36_1@@}
|
field = "Enable noise filtering", useNoiselessTriggerDecoder, {trigger_type == @@trigger_type_e_TT_TOOTHED_WHEEL_60_2@@ || trigger_type == @@trigger_type_e_TT_TOOTHED_WHEEL_36_1@@}
|
||||||
|
field = "Trigger Edge Filter", doNotFilterTriggerEdgeNoise
|
||||||
|
|
||||||
dialog = triggerInputs, "Trigger Inputs"
|
dialog = triggerInputs, "Trigger Inputs"
|
||||||
field = "#Cam is primary if you have cam sensor as part of trigger shape"
|
field = "#Cam is primary if you have cam sensor as part of trigger shape"
|
||||||
|
|
Loading…
Reference in New Issue