Auto-generated configs and docs

This commit is contained in:
GitHub build-firmware Action 2022-07-08 05:14:15 +00:00
parent a3c7e59b2a
commit 7764bf729a
35 changed files with 343 additions and 335 deletions

View File

@ -395,17 +395,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -414,8 +414,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -362,10 +362,10 @@ wallFuel("Amount of fuel on the wall, in ms of injector open time for each injec
idleState("idleState", SensorCategory.SENSOR_INPUTS, FieldType.INT, 932, 1.0, -1.0, -1.0, ""),
currentIdlePosition("idle: current position\nthat's current position with CLT and IAT corrections", SensorCategory.SENSOR_INPUTS, FieldType.INT, 936, 1.0, -1.0, -1.0, ""),
baseIdlePosition("idle: base value\ncurrent position without adjustments (iacByTpsTaper, afterCrankingIACtaperDuration)", SensorCategory.SENSOR_INPUTS, FieldType.INT, 940, 1.0, -1.0, -1.0, ""),
iacByTpsTaper("iacByTpsTaper portion of idle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 944, 1.0, -1.0, -1.0, ""),
iacByTpsTaper("idle: iacByTpsTaper portion of idle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 944, 1.0, -1.0, -1.0, ""),
throttlePedalUpState("true in IDLE throttle pedal state, false if driver is touching the pedal\ntodo: better name for this field?", SensorCategory.SENSOR_INPUTS, FieldType.INT, 948, 1.0, -1.0, -1.0, ""),
targetRpmByClt("targetRpmByClt", SensorCategory.SENSOR_INPUTS, FieldType.INT, 956, 1.0, -1.0, -1.0, ""),
targetRpmAcBump("targetRpmAcBump", SensorCategory.SENSOR_INPUTS, FieldType.INT, 960, 1.0, -1.0, -1.0, ""),
targetRpmByClt("idle: target by CLT", SensorCategory.SENSOR_INPUTS, FieldType.INT, 956, 1.0, -1.0, -1.0, ""),
targetRpmAcBump("idle: A/C bump", SensorCategory.SENSOR_INPUTS, FieldType.INT, 960, 1.0, -1.0, -1.0, ""),
baseDwell("baseDwell", SensorCategory.SENSOR_INPUTS, FieldType.INT, 964, 1.0, -1.0, -1.0, ""),
dwellVoltageCorrection("dwellVoltageCorrection", SensorCategory.SENSOR_INPUTS, FieldType.INT, 968, 1.0, -1.0, -1.0, ""),
luaTimingAdd("luaTimingAdd", SensorCategory.SENSOR_INPUTS, FieldType.INT, 972, 1.0, -1.0, -1.0, ""),

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/idle_state.txt Fri Jul 08 04:28:20 UTC 2022
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/idle_state.txt Fri Jul 08 05:13:11 UTC 2022
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -22,7 +22,7 @@ struct idle_state_s {
*/
percent_t baseIdlePosition = (percent_t)0;
/**
* iacByTpsTaper portion of idle
* idle: iacByTpsTaper portion of idle
* offset 12
*/
percent_t iacByTpsTaper = (percent_t)0;
@ -40,17 +40,21 @@ struct idle_state_s {
offset 20 bit 0 */
bool mightResetPid : 1 {};
/**
* idle: shouldResetPid
offset 20 bit 1 */
bool shouldResetPid : 1 {};
/**
* idle: wasResetPid
* This is needed to slowly turn on the PID back after it was reset.
offset 20 bit 2 */
bool wasResetPid : 1 {};
/**
* idle: mustResetPid
* This is used when the PID configuration is changed, to guarantee the reset
offset 20 bit 3 */
bool mustResetPid : 1 {};
/**
* idle: coasting
offset 20 bit 4 */
bool isCoasting : 1 {};
/**
@ -60,9 +64,11 @@ struct idle_state_s {
offset 20 bit 6 */
bool notIdling : 1 {};
/**
* idle: reset
offset 20 bit 7 */
bool needReset : 1 {};
/**
* idle: dead zone
offset 20 bit 8 */
bool isInDeadZone : 1 {};
/**
@ -135,10 +141,12 @@ struct idle_state_s {
offset 20 bit 31 */
bool unusedBit_22_31 : 1 {};
/**
* idle: target by CLT
* offset 24
*/
int targetRpmByClt = (int)0;
/**
* idle: A/C bump
* offset 28
*/
int targetRpmAcBump = (int)0;
@ -146,4 +154,4 @@ struct idle_state_s {
static_assert(sizeof(idle_state_s) == 32);
// end
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/idle_state.txt Fri Jul 08 04:28:20 UTC 2022
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/idle_state.txt Fri Jul 08 05:13:11 UTC 2022

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:38 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:58 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:14 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:40 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:44:37 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:12 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:44:39 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:14 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:34 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:55 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:12 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:38 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:29 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:51 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:32 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:53 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:16 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:42 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:44:41 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:15 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:01 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:30 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:44:59 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:28 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:44:48 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:20 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:44:46 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:18 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:44:43 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:17 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:44:50 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:22 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:44:54 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:25 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:44:57 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:27 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:44:52 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:23 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:03 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:32 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:05 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:33 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat integration/rusefi_config.txt Fri Jul 08 04:45:42 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat integration/rusefi_config.txt Fri Jul 08 05:14:01 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Fri Jul 08 04:45:40 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Fri Jul 08 05:13:59 UTC 2022
pageSize = 21272
page = 1
@ -4185,17 +4185,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4204,8 +4204,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:10 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:37 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:07 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:35 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:20 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:45 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:18 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:43 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:25 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:48 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:23 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:46 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:27 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:50 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on config/boards/subaru_eg33/config/gen_subaru_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:44 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on config/boards/subaru_eg33/config/gen_subaru_config.sh integration/rusefi_config.txt Fri Jul 08 05:14:02 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"

View File

@ -85,7 +85,7 @@ enable2ndByteCanID = false
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
; CONFIG_DEFINITION_START
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 04:45:36 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri Jul 08 05:13:56 UTC 2022
pageSize = 21300
page = 1
@ -4224,17 +4224,17 @@ entry = wallFuel, "Amount of fuel on the wall, in ms of injector open time for e
entry = idleState, "idleState", int, "%d"
entry = currentIdlePosition, "idle: current position", float, "%.3f"
entry = baseIdlePosition, "idle: base value", float, "%.3f"
entry = iacByTpsTaper, "iacByTpsTaper portion of idle", float, "%.3f"
entry = iacByTpsTaper, "idle: iacByTpsTaper portion of idle", float, "%.3f"
entry = throttlePedalUpState, "true in IDLE throttle pedal state, false if driver is touching the pedal", int, "%d"
entry = mightResetPid, "The idea of 'mightResetPid' is to reset PID only once - each time when TPS > idlePidDeactivationTpsThreshold.", int, "%d"
entry = shouldResetPid, "shouldResetPid", int, "%d"
entry = wasResetPid, "This is needed to slowly turn on the PID back after it was reset.", int, "%d"
entry = mustResetPid, "This is used when the PID configuration is changed, to guarantee the reset", int, "%d"
entry = isCoasting, "isCoasting", int, "%d"
entry = shouldResetPid, "idle: shouldResetPid", int, "%d"
entry = wasResetPid, "idle: wasResetPid", int, "%d"
entry = mustResetPid, "idle: mustResetPid", int, "%d"
entry = isCoasting, "idle: coasting", int, "%d"
entry = useIacTableForCoasting, "useIacTableForCoasting", int, "%d"
entry = notIdling, "notIdling", int, "%d"
entry = needReset, "needReset", int, "%d"
entry = isInDeadZone, "isInDeadZone", int, "%d"
entry = needReset, "idle: reset", int, "%d"
entry = isInDeadZone, "idle: dead zone", int, "%d"
entry = isBlipping, "isBlipping", int, "%d"
entry = useClosedLoop, "useClosedLoop", int, "%d"
entry = badTps, "badTps", int, "%d"
@ -4243,8 +4243,8 @@ entry = looksLikeCoasting, "looksLikeCoasting", int, "%d"
entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d"
entry = useInstantRpmForIdle, "useInstantRpmForIdle", int, "%d"
entry = isVerboseIAC, "isVerboseIAC", int, "%d"
entry = targetRpmByClt, "targetRpmByClt", int, "%d"
entry = targetRpmAcBump, "targetRpmAcBump", int, "%d"
entry = targetRpmByClt, "idle: target by CLT", int, "%d"
entry = targetRpmAcBump, "idle: A/C bump", int, "%d"
entry = baseDwell, "baseDwell", float, "%.3f"
entry = dwellVoltageCorrection, "dwellVoltageCorrection", float, "%.3f"
entry = luaTimingAdd, "luaTimingAdd", float, "%.3f"