Auto-generated configs and docs
This commit is contained in:
parent
c808acee01
commit
f7c33ef547
|
@ -2,25 +2,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -22,6 +22,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Fri May 05 01:46:17 UTC 2023
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Fri May 05 02:21:13 UTC 2023
|
||||
// by class com.rusefi.output.CHeaderConsumer
|
||||
// begin
|
||||
#pragma once
|
||||
|
@ -47,7 +47,7 @@ struct output_channels_s {
|
|||
offset 0 bit 3 */
|
||||
bool antilagTriggered : 1 {};
|
||||
/**
|
||||
* radiator fan
|
||||
* Radiator Fan
|
||||
offset 0 bit 4 */
|
||||
bool isFanOn : 1 {};
|
||||
/**
|
||||
|
@ -60,77 +60,93 @@ struct output_channels_s {
|
|||
offset 0 bit 7 */
|
||||
bool needBurn : 1 {};
|
||||
/**
|
||||
* SD is MSD
|
||||
offset 0 bit 8 */
|
||||
bool sd_msd : 1 {};
|
||||
/**
|
||||
* Radiator Fan2
|
||||
offset 0 bit 9 */
|
||||
bool isFan2On : 1 {};
|
||||
/**
|
||||
offset 0 bit 10 */
|
||||
bool unusedBitLAtwfs : 1 {};
|
||||
/**
|
||||
* Tooth Logger Ready
|
||||
offset 0 bit 11 */
|
||||
bool toothLogReady : 1 {};
|
||||
/**
|
||||
* Error: TPS
|
||||
offset 0 bit 12 */
|
||||
bool isTpsError : 1 {};
|
||||
/**
|
||||
* Error: CLT
|
||||
offset 0 bit 13 */
|
||||
bool isCltError : 1 {};
|
||||
/**
|
||||
* Error: MAP
|
||||
offset 0 bit 14 */
|
||||
bool isMapError : 1 {};
|
||||
/**
|
||||
* Error: IAT
|
||||
offset 0 bit 15 */
|
||||
bool isIatError : 1 {};
|
||||
/**
|
||||
* Error: Trigger
|
||||
offset 0 bit 16 */
|
||||
bool isTriggerError : 1 {};
|
||||
/**
|
||||
* Error, Critical: ECM
|
||||
offset 0 bit 17 */
|
||||
bool hasCriticalError : 1 {};
|
||||
/**
|
||||
* Warning: ECM
|
||||
offset 0 bit 18 */
|
||||
bool isWarnNow : 1 {};
|
||||
/**
|
||||
* Error: Pedal
|
||||
offset 0 bit 19 */
|
||||
bool isPedalError : 1 {};
|
||||
/**
|
||||
offset 0 bit 20 */
|
||||
bool isKnockChipOk : 1 {};
|
||||
/**
|
||||
* Launch Control Triggered
|
||||
offset 0 bit 21 */
|
||||
bool launchTriggered : 1 {};
|
||||
/**
|
||||
* Error: TPS2
|
||||
offset 0 bit 22 */
|
||||
bool isTps2Error : 1 {};
|
||||
/**
|
||||
* Closed Loop Idle
|
||||
offset 0 bit 23 */
|
||||
bool isIdleClosedLoop : 1 {};
|
||||
/**
|
||||
* Injector Fault
|
||||
offset 0 bit 24 */
|
||||
bool unusedBit_24_24 : 1 {};
|
||||
bool injectorFault : 1 {};
|
||||
/**
|
||||
* Ignition Fault
|
||||
offset 0 bit 25 */
|
||||
bool unusedBit_24_25 : 1 {};
|
||||
bool ignitionFault : 1 {};
|
||||
/**
|
||||
offset 0 bit 26 */
|
||||
bool unusedBit_24_26 : 1 {};
|
||||
bool unusedBit_26_26 : 1 {};
|
||||
/**
|
||||
offset 0 bit 27 */
|
||||
bool unusedBit_24_27 : 1 {};
|
||||
bool unusedBit_26_27 : 1 {};
|
||||
/**
|
||||
offset 0 bit 28 */
|
||||
bool unusedBit_24_28 : 1 {};
|
||||
bool unusedBit_26_28 : 1 {};
|
||||
/**
|
||||
offset 0 bit 29 */
|
||||
bool unusedBit_24_29 : 1 {};
|
||||
bool unusedBit_26_29 : 1 {};
|
||||
/**
|
||||
offset 0 bit 30 */
|
||||
bool unusedBit_24_30 : 1 {};
|
||||
bool unusedBit_26_30 : 1 {};
|
||||
/**
|
||||
offset 0 bit 31 */
|
||||
bool unusedBit_24_31 : 1 {};
|
||||
bool unusedBit_26_31 : 1 {};
|
||||
/**
|
||||
* @@GAUGE_NAME_RPM@@
|
||||
RPM
|
||||
|
@ -1442,4 +1458,4 @@ struct output_channels_s {
|
|||
static_assert(sizeof(output_channels_s) == 812);
|
||||
|
||||
// end
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Fri May 05 01:46:17 UTC 2023
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Fri May 05 02:21:13 UTC 2023
|
||||
|
|
|
@ -73,6 +73,12 @@ float getOutputValueByName(const char *name) {
|
|||
// isIdleClosedLoop
|
||||
case 1473688883:
|
||||
return engine->outputChannels.isIdleClosedLoop;
|
||||
// injectorFault
|
||||
case 1608791711:
|
||||
return engine->outputChannels.injectorFault;
|
||||
// ignitionFault
|
||||
case -1158382750:
|
||||
return engine->outputChannels.ignitionFault;
|
||||
// RPMValue
|
||||
case 1699696209:
|
||||
return engine->outputChannels.RPMValue;
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:47:05 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:22:04 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:45 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:43 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:21 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:18 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:22 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:19 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:23 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:21 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:47:02 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:22:01 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:44 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:42 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:19 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat integration/rusefi_config.txt Fri May 05 02:21:15 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:56 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:55 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:57 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:56 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:49 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:47 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:25 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:22 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:37 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:35 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:30 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:28 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:36 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:34 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:29 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:26 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:27 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:25 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:26 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:24 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:31 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:29 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:34 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:32 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:35 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:33 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:32 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:30 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:39 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:37 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:40 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:38 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:18 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Fri May 05 02:21:14 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:46 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:45 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:42 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:41 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4500,25 +4502,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:41 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:39 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4500,25 +4502,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:59 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:57 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:47:00 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:59 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:47:01 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:22:00 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:51 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:50 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:50 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:49 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:54 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:52 UTC 2023
|
||||
|
||||
pageSize = 27176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:52 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:51 UTC 2023
|
||||
|
||||
pageSize = 27176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:55 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:54 UTC 2023
|
||||
|
||||
pageSize = 27176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:47 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:21:46 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:46:20 UTC 2023
|
||||
; 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 May 05 02:21:17 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -87,7 +87,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 May 05 01:47:03 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Fri May 05 02:22:02 UTC 2023
|
||||
|
||||
pageSize = 23176
|
||||
page = 1
|
||||
|
@ -2250,6 +2250,8 @@ isKnockChipOk = bits, U32, 0, [20:20]
|
|||
launchTriggered = bits, U32, 0, [21:21]
|
||||
isTps2Error = bits, U32, 0, [22:22]
|
||||
isIdleClosedLoop = bits, U32, 0, [23:23]
|
||||
injectorFault = bits, U32, 0, [24:24]
|
||||
ignitionFault = bits, U32, 0, [25:25]
|
||||
RPMValue = scalar, U16, 4, "RPM", 1, 0
|
||||
rpmAcceleration = scalar, U16, 6, "RPM acceleration", 1, 0
|
||||
speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0
|
||||
|
@ -4499,25 +4501,27 @@ entry = sd_present, "sd_present", int, "%d"
|
|||
entry = sd_logging_internal, "sd_logging_internal", int, "%d"
|
||||
entry = triggerScopeReady, "triggerScopeReady", int, "%d"
|
||||
entry = antilagTriggered, "antilagTriggered", int, "%d"
|
||||
entry = isFanOn, "radiator fan", int, "%d"
|
||||
entry = isFanOn, "Radiator Fan", int, "%d"
|
||||
entry = isO2HeaterOn, "isO2HeaterOn", int, "%d"
|
||||
entry = checkEngine, "checkEngine", int, "%d"
|
||||
entry = needBurn, "needBurn", int, "%d"
|
||||
entry = sd_msd, "sd_msd", int, "%d"
|
||||
entry = isFan2On, "isFan2On", int, "%d"
|
||||
entry = toothLogReady, "toothLogReady", int, "%d"
|
||||
entry = isTpsError, "isTpsError", int, "%d"
|
||||
entry = isCltError, "isCltError", int, "%d"
|
||||
entry = isMapError, "isMapError", int, "%d"
|
||||
entry = isIatError, "isIatError", int, "%d"
|
||||
entry = isTriggerError, "isTriggerError", int, "%d"
|
||||
entry = hasCriticalError, "hasCriticalError", int, "%d"
|
||||
entry = isWarnNow, "isWarnNow", int, "%d"
|
||||
entry = isPedalError, "isPedalError", int, "%d"
|
||||
entry = sd_msd, "SD is MSD", int, "%d"
|
||||
entry = isFan2On, "Radiator Fan2", int, "%d"
|
||||
entry = toothLogReady, "Tooth Logger Ready", int, "%d"
|
||||
entry = isTpsError, "Error: TPS", int, "%d"
|
||||
entry = isCltError, "Error: CLT", int, "%d"
|
||||
entry = isMapError, "Error: MAP", int, "%d"
|
||||
entry = isIatError, "Error: IAT", int, "%d"
|
||||
entry = isTriggerError, "Error: Trigger", int, "%d"
|
||||
entry = hasCriticalError, "Error, Critical: ECM", int, "%d"
|
||||
entry = isWarnNow, "Warning: ECM", int, "%d"
|
||||
entry = isPedalError, "Error: Pedal", int, "%d"
|
||||
entry = isKnockChipOk, "isKnockChipOk", int, "%d"
|
||||
entry = launchTriggered, "launchTriggered", int, "%d"
|
||||
entry = isTps2Error, "isTps2Error", int, "%d"
|
||||
entry = isIdleClosedLoop, "isIdleClosedLoop", int, "%d"
|
||||
entry = launchTriggered, "Launch Control Triggered", int, "%d"
|
||||
entry = isTps2Error, "Error: TPS2", int, "%d"
|
||||
entry = isIdleClosedLoop, "Closed Loop Idle", int, "%d"
|
||||
entry = injectorFault, "Injector Fault", int, "%d"
|
||||
entry = ignitionFault, "Ignition Fault", int, "%d"
|
||||
entry = RPMValue, "RPM", int, "%d"
|
||||
entry = rpmAcceleration, "dRPM", int, "%d"
|
||||
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config.generated;
|
||||
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Fri May 05 01:46:17 UTC 2023
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Fri May 05 02:21:13 UTC 2023
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -189,6 +189,8 @@ public class TsOutputs {
|
|||
public static final Field LAUNCHTRIGGERED = Field.create("LAUNCHTRIGGERED", 0, FieldType.BIT, 21).setBaseOffset(0);
|
||||
public static final Field ISTPS2ERROR = Field.create("ISTPS2ERROR", 0, FieldType.BIT, 22).setBaseOffset(0);
|
||||
public static final Field ISIDLECLOSEDLOOP = Field.create("ISIDLECLOSEDLOOP", 0, FieldType.BIT, 23).setBaseOffset(0);
|
||||
public static final Field INJECTORFAULT = Field.create("INJECTORFAULT", 0, FieldType.BIT, 24).setBaseOffset(0);
|
||||
public static final Field IGNITIONFAULT = Field.create("IGNITIONFAULT", 0, FieldType.BIT, 25).setBaseOffset(0);
|
||||
public static final Field RPMVALUE = Field.create("RPMVALUE", 4, FieldType.INT16).setScale(1.0).setBaseOffset(0);
|
||||
public static final Field RPMACCELERATION = Field.create("RPMACCELERATION", 6, FieldType.INT16).setScale(1.0).setBaseOffset(0);
|
||||
public static final Field SPEEDTORPMRATIO = Field.create("SPEEDTORPMRATIO", 8, FieldType.INT16).setScale(0.01).setBaseOffset(0);
|
||||
|
@ -693,6 +695,8 @@ public class TsOutputs {
|
|||
LAUNCHTRIGGERED,
|
||||
ISTPS2ERROR,
|
||||
ISIDLECLOSEDLOOP,
|
||||
INJECTORFAULT,
|
||||
IGNITIONFAULT,
|
||||
RPMVALUE,
|
||||
RPMACCELERATION,
|
||||
SPEEDTORPMRATIO,
|
||||
|
|
Loading…
Reference in New Issue