fixes (#4497)
This commit is contained in:
parent
7eb3f11907
commit
921ac51944
|
@ -1115,7 +1115,7 @@ custom pin_mode_e 1 bits, U08, @OFFSET@, [0:6], @@pin_mode_e_enum@@
|
||||||
pid_s alternatorControl;
|
pid_s alternatorControl;
|
||||||
pid_s etb;
|
pid_s etb;
|
||||||
Gpio[TRIGGER_INPUT_PIN_COUNT iterate] triggerInputDebugPins;
|
Gpio[TRIGGER_INPUT_PIN_COUNT iterate] triggerInputDebugPins;
|
||||||
int16_t airTaperRpmRange;RPM range above upper limit for extra air taper", 1, 0, 0, 1500, 0
|
int16_t airTaperRpmRange;RPM range above upper limit for extra air taper,"RPM", 1, 0, 0, 1500, 0
|
||||||
brain_input_pin_e turboSpeedSensorInputPin;
|
brain_input_pin_e turboSpeedSensorInputPin;
|
||||||
int16_t tps2Min;Closed throttle#2. todo: extract these two fields into a structure\nSee also tps2_1AdcChannel\nset tps2_min X;"ADC", 1, 0, 0, 1023, 0
|
int16_t tps2Min;Closed throttle#2. todo: extract these two fields into a structure\nSee also tps2_1AdcChannel\nset tps2_min X;"ADC", 1, 0, 0, 1023, 0
|
||||||
int16_t tps2Max;Full throttle#2. tpsMax value as 10 bit ADC value. Not Voltage!\nSee also tps1_1AdcChannel\nset tps2_max X;"ADC", 1, 0, 0, 1023, 0
|
int16_t tps2Max;Full throttle#2. tpsMax value as 10 bit ADC value. Not Voltage!\nSee also tps1_1AdcChannel\nset tps2_max X;"ADC", 1, 0, 0, 1023, 0
|
||||||
|
|
|
@ -523,11 +523,11 @@ enable2ndByteCanID = false
|
||||||
yBins = cltIdleCorr
|
yBins = cltIdleCorr
|
||||||
gauge = CLTGauge
|
gauge = CLTGauge
|
||||||
|
|
||||||
curve = iacCoastingCurve, "Coasting IAC Position for Auto-Idle"
|
curve = iacCoastingCurve, "Coasting IAC Position"
|
||||||
columnLabel = "Coolant", "Multiplier"
|
columnLabel = "RPM", "Multiplier"
|
||||||
xAxis = -40, 120, 9
|
xAxis = -40, 120, 9
|
||||||
yAxis = 0, 100, 10
|
yAxis = 0, 100, 10
|
||||||
xBins = iacCoastingBins, coolant
|
xBins = iacCoastingRpmBins, RPMValue
|
||||||
yBins = iacCoasting
|
yBins = iacCoasting
|
||||||
gauge = idleAirValvePositionGauge
|
gauge = idleAirValvePositionGauge
|
||||||
|
|
||||||
|
@ -1526,8 +1526,8 @@ menuDialog = main
|
||||||
subMenu = cltIdleCurve, "CLT multiplier"
|
subMenu = cltIdleCurve, "CLT multiplier"
|
||||||
subMenu = std_separator
|
subMenu = std_separator
|
||||||
subMenu = idleTimingPidCorrDialog, "Closed-loop idle timing"
|
subMenu = idleTimingPidCorrDialog, "Closed-loop idle timing"
|
||||||
subMenu = iacPidMultTbl, "IAC PID Multiplier", 0, {idleMode == 0 && useIacPidMultTable == 1}
|
subMenu = iacPidMultTbl, "IAC PID multiplier", 0, {idleMode == 0 && useIacPidMultTable == 1}
|
||||||
subMenu = iacCoastingCurve, "Coasting IAC Position for Auto-Idle", 0, {useIacTableForCoasting == 1}
|
subMenu = iacCoastingCurve, "Coasting IAC position", 0, {useIacTableForCoasting == 1}
|
||||||
subMenu = std_separator
|
subMenu = std_separator
|
||||||
subMenu = idleVeTableTbl, "Idle VE", 0, {useSeparateVeForIdle == 1}
|
subMenu = idleVeTableTbl, "Idle VE", 0, {useSeparateVeForIdle == 1}
|
||||||
subMenu = idleAdvanceCurve, "Ignition advance", 0, {useSeparateAdvanceForIdle == 1}
|
subMenu = idleAdvanceCurve, "Ignition advance", 0, {useSeparateAdvanceForIdle == 1}
|
||||||
|
@ -2881,7 +2881,7 @@ cmd_set_engine_type_default = "@@TS_IO_TEST_COMMAND_char@@\x00\x31\x00\x00"
|
||||||
field = "Use idle ignition table", useSeparateAdvanceForIdle
|
field = "Use idle ignition table", useSeparateAdvanceForIdle
|
||||||
field = "Use idle VE table", useSeparateVeForIdle
|
field = "Use idle VE table", useSeparateVeForIdle
|
||||||
field = "Use idle tables for cranking taper", useSeparateIdleTablesForCrankingTaper
|
field = "Use idle tables for cranking taper", useSeparateIdleTablesForCrankingTaper
|
||||||
field = "Use coasting idle table", useIacTableForCoasting, {idleMode == 0}
|
field = "Use coasting idle table", useIacTableForCoasting
|
||||||
field = useInstantRpmForIdle, useInstantRpmForIdle
|
field = useInstantRpmForIdle, useInstantRpmForIdle
|
||||||
field = "Detailed status in console", isVerboseIAC
|
field = "Detailed status in console", isVerboseIAC
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue