Rename "2 wire wasted" in TS ignition settings fix #3048
This commit is contained in:
parent
0ea66782fb
commit
2cc0272047
|
@ -630,7 +630,7 @@ typedef enum {
|
|||
* in this mode we use as many coils as we have cylinders
|
||||
*/
|
||||
IM_INDIVIDUAL_COILS = 1,
|
||||
IM_WASTED_SPARK = 2,
|
||||
IM_WASTED_SPARK = IM_IM_WASTED_SPARK,
|
||||
|
||||
/**
|
||||
* some v12 engines line BMW M70 and M73 run two distributors, one for each bank of cylinders
|
||||
|
@ -658,7 +658,7 @@ typedef enum {
|
|||
* todo: we might want to implement one additional mode where each pair of injectors is floating twice per engine cycle.
|
||||
* todo: this could reduce phase offset from injection to stroke but would not work great for large injectors
|
||||
*/
|
||||
IM_BATCH = 2,
|
||||
IM_BATCH = IM_IM_BATCH,
|
||||
/**
|
||||
* only one injector located in throttle body
|
||||
*/
|
||||
|
|
|
@ -1811,7 +1811,7 @@ cmd_set_engine_type_default = "@@TS_IO_TEST_COMMAND_char@@\x00\x31\x00\x00"
|
|||
field = "Enabled", isInjectionEnabled
|
||||
field = "Mode", injectionMode, {isInjectionEnabled == 1}
|
||||
field = "#Batch injection with individual wiring"
|
||||
field = "Two wire batch emulation", twoWireBatchInjection, {isInjectionEnabled == 1 && injectionMode == 2}
|
||||
field = "Individually wired Batch Fuel", twoWireBatchInjection, {isInjectionEnabled == 1 && injectionMode == @@IM_IM_BATCH@@ }
|
||||
field = "Override VE table load axis", veOverrideMode, { isInjectionEnabled }
|
||||
field = "Override AFR table load axis", afrOverrideMode, { isInjectionEnabled }
|
||||
|
||||
|
@ -1825,7 +1825,7 @@ cmd_set_engine_type_default = "@@TS_IO_TEST_COMMAND_char@@\x00\x31\x00\x00"
|
|||
dialog = ignitionBasic, ""
|
||||
field = "Enabled", isIgnitionEnabled
|
||||
field = "Mode", ignitionMode, {isIgnitionEnabled == 1}
|
||||
field = "Two wire wasted", twoWireBatchIgnition, {isIgnitionEnabled == 1 && ignitionMode == 2}
|
||||
field = "Individually wired Wasted Spark", twoWireBatchIgnition, {isIgnitionEnabled == 1 && ignitionMode == @@IM_IM_WASTED_SPARK @@ }
|
||||
field = "Override ignition table load axis", ignOverrideMode, {isIgnitionEnabled}
|
||||
field = "#Use fixed timing while validating with a timing gun"
|
||||
field = "Timing Mode", timingMode, {isIgnitionEnabled == 1}
|
||||
|
|
Loading…
Reference in New Issue