parent
f73caee20c
commit
991ee7d227
|
@ -455,6 +455,7 @@ entry = dwellVoltageCorrection, "Ign: Dwell voltage correction", float, "%.3f"
|
||||||
entry = luaTimingAdd, "Ign: Lua timing add", float, "%.3f"
|
entry = luaTimingAdd, "Ign: Lua timing add", float, "%.3f"
|
||||||
entry = luaTimingMult, "Ign: Lua timing mult", float, "%.3f"
|
entry = luaTimingMult, "Ign: Lua timing mult", float, "%.3f"
|
||||||
entry = luaIgnitionSkip, "Ign: Lua Spark Skip", int, "%d"
|
entry = luaIgnitionSkip, "Ign: Lua Spark Skip", int, "%d"
|
||||||
|
entry = m_isPriming, "IsFuelPriming", int, "%d"
|
||||||
entry = m_knockLevel, "Knock: Current level", float, "%.3f"
|
entry = m_knockLevel, "Knock: Current level", float, "%.3f"
|
||||||
entry = m_knockCyl1, "Knock: Cyl 1", int, "%d"
|
entry = m_knockCyl1, "Knock: Cyl 1", int, "%d"
|
||||||
entry = m_knockCyl2, "Knock: Cyl 2", int, "%d"
|
entry = m_knockCyl2, "Knock: Cyl 2", int, "%d"
|
||||||
|
|
|
@ -49,6 +49,12 @@ dialog = ignition_stateDialog, "ignition_state"
|
||||||
liveGraph = ignition_state_4_Graph, "Graph", South
|
liveGraph = ignition_state_4_Graph, "Graph", South
|
||||||
graphLine = luaTimingMult
|
graphLine = luaTimingMult
|
||||||
|
|
||||||
|
indicatorPanel = prime_injectionIndicatorPanel, 2
|
||||||
|
indicator = {m_isPriming}, "m_isPriming No", "m_isPriming Yes"
|
||||||
|
|
||||||
|
dialog = prime_injectionDialog, "prime_injection"
|
||||||
|
panel = prime_injectionIndicatorPanel
|
||||||
|
|
||||||
|
|
||||||
dialog = knock_controllerDialog, "knock_controller"
|
dialog = knock_controllerDialog, "knock_controller"
|
||||||
liveGraph = knock_controller_1_Graph, "Graph", South
|
liveGraph = knock_controller_1_Graph, "Graph", South
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
subMenu = fuel_computerDialog, "fuel_computer"
|
subMenu = fuel_computerDialog, "fuel_computer"
|
||||||
subMenu = ignition_stateDialog, "ignition_state"
|
subMenu = ignition_stateDialog, "ignition_state"
|
||||||
|
subMenu = prime_injectionDialog, "prime_injection"
|
||||||
subMenu = knock_controllerDialog, "knock_controller"
|
subMenu = knock_controllerDialog, "knock_controller"
|
||||||
subMenu = tcu_controllerDialog, "tcu_controller"
|
subMenu = tcu_controllerDialog, "tcu_controller"
|
||||||
subMenu = throttle_modelDialog, "throttle_model"
|
subMenu = throttle_modelDialog, "throttle_model"
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
decl_frag<output_channels_s>{},
|
decl_frag<output_channels_s>{},
|
||||||
decl_frag<fuel_computer_s>{},
|
decl_frag<fuel_computer_s>{},
|
||||||
decl_frag<ignition_state_s>{},
|
decl_frag<ignition_state_s>{},
|
||||||
|
decl_frag<prime_injection_s>{},
|
||||||
decl_frag<knock_controller_s>{},
|
decl_frag<knock_controller_s>{},
|
||||||
decl_frag<tcu_controller_s>{},
|
decl_frag<tcu_controller_s>{},
|
||||||
decl_frag<throttle_model_s>{},
|
decl_frag<throttle_model_s>{},
|
||||||
|
|
|
@ -6,6 +6,7 @@ typedef enum {
|
||||||
LDS_output_channels,
|
LDS_output_channels,
|
||||||
LDS_fuel_computer,
|
LDS_fuel_computer,
|
||||||
LDS_ignition_state,
|
LDS_ignition_state,
|
||||||
|
LDS_prime_injection,
|
||||||
LDS_knock_controller,
|
LDS_knock_controller,
|
||||||
LDS_tcu_controller,
|
LDS_tcu_controller,
|
||||||
LDS_throttle_model,
|
LDS_throttle_model,
|
||||||
|
@ -44,30 +45,31 @@ LDS_lambda_monitor,
|
||||||
#define OUTPUT_CHANNELS_BASE_ADDRESS 0
|
#define OUTPUT_CHANNELS_BASE_ADDRESS 0
|
||||||
#define FUEL_COMPUTER_BASE_ADDRESS 860
|
#define FUEL_COMPUTER_BASE_ADDRESS 860
|
||||||
#define IGNITION_STATE_BASE_ADDRESS 912
|
#define IGNITION_STATE_BASE_ADDRESS 912
|
||||||
#define KNOCK_CONTROLLER_BASE_ADDRESS 956
|
#define PRIME_INJECTION_BASE_ADDRESS 956
|
||||||
#define TCU_CONTROLLER_BASE_ADDRESS 1064
|
#define KNOCK_CONTROLLER_BASE_ADDRESS 960
|
||||||
#define THROTTLE_MODEL_BASE_ADDRESS 1080
|
#define TCU_CONTROLLER_BASE_ADDRESS 1068
|
||||||
#define HIGH_PRESSURE_FUEL_PUMP_BASE_ADDRESS 1092
|
#define THROTTLE_MODEL_BASE_ADDRESS 1084
|
||||||
#define INJECTOR_MODEL_BASE_ADDRESS 1120
|
#define HIGH_PRESSURE_FUEL_PUMP_BASE_ADDRESS 1096
|
||||||
#define LAUNCH_CONTROL_STATE_BASE_ADDRESS 1132
|
#define INJECTOR_MODEL_BASE_ADDRESS 1124
|
||||||
#define SHIFT_TORQUE_REDUCTION_STATE_BASE_ADDRESS 1140
|
#define LAUNCH_CONTROL_STATE_BASE_ADDRESS 1136
|
||||||
#define ANTILAG_SYSTEM_STATE_BASE_ADDRESS 1144
|
#define SHIFT_TORQUE_REDUCTION_STATE_BASE_ADDRESS 1144
|
||||||
#define BOOST_CONTROL_BASE_ADDRESS 1156
|
#define ANTILAG_SYSTEM_STATE_BASE_ADDRESS 1148
|
||||||
#define AC_CONTROL_BASE_ADDRESS 1180
|
#define BOOST_CONTROL_BASE_ADDRESS 1160
|
||||||
#define NITROUS_CONTROL_STATE_BASE_ADDRESS 1188
|
#define AC_CONTROL_BASE_ADDRESS 1184
|
||||||
#define FAN_CONTROL_BASE_ADDRESS 1192
|
#define NITROUS_CONTROL_STATE_BASE_ADDRESS 1192
|
||||||
#define FUEL_PUMP_CONTROL_BASE_ADDRESS 1208
|
#define FAN_CONTROL_BASE_ADDRESS 1196
|
||||||
#define MAIN_RELAY_BASE_ADDRESS 1212
|
#define FUEL_PUMP_CONTROL_BASE_ADDRESS 1212
|
||||||
#define ENGINE_STATE_BASE_ADDRESS 1216
|
#define MAIN_RELAY_BASE_ADDRESS 1216
|
||||||
#define TPS_ACCEL_STATE_BASE_ADDRESS 1316
|
#define ENGINE_STATE_BASE_ADDRESS 1220
|
||||||
#define TRIGGER_CENTRAL_BASE_ADDRESS 1364
|
#define TPS_ACCEL_STATE_BASE_ADDRESS 1320
|
||||||
#define TRIGGER_STATE_BASE_ADDRESS 1412
|
#define TRIGGER_CENTRAL_BASE_ADDRESS 1368
|
||||||
#define TRIGGER_STATE_PRIMARY_BASE_ADDRESS 1592
|
#define TRIGGER_STATE_BASE_ADDRESS 1416
|
||||||
#define WALL_FUEL_STATE_BASE_ADDRESS 1600
|
#define TRIGGER_STATE_PRIMARY_BASE_ADDRESS 1596
|
||||||
#define IDLE_STATE_BASE_ADDRESS 1608
|
#define WALL_FUEL_STATE_BASE_ADDRESS 1604
|
||||||
#define ELECTRONIC_THROTTLE_BASE_ADDRESS 1652
|
#define IDLE_STATE_BASE_ADDRESS 1612
|
||||||
#define WIDEBAND_STATE_BASE_ADDRESS 1748
|
#define ELECTRONIC_THROTTLE_BASE_ADDRESS 1656
|
||||||
#define DC_MOTORS_BASE_ADDRESS 1772
|
#define WIDEBAND_STATE_BASE_ADDRESS 1752
|
||||||
#define SENT_STATE_BASE_ADDRESS 1784
|
#define DC_MOTORS_BASE_ADDRESS 1776
|
||||||
#define VVT_BASE_ADDRESS 1792
|
#define SENT_STATE_BASE_ADDRESS 1788
|
||||||
#define LAMBDA_MONITOR_BASE_ADDRESS 1796
|
#define VVT_BASE_ADDRESS 1796
|
||||||
|
#define LAMBDA_MONITOR_BASE_ADDRESS 1800
|
||||||
|
|
|
@ -512,407 +512,409 @@ luaTimingAdd = scalar, F32, 944, "deg", 1, 0
|
||||||
luaTimingMult = scalar, F32, 948, "deg", 1, 0
|
luaTimingMult = scalar, F32, 948, "deg", 1, 0
|
||||||
luaIgnitionSkip = bits, U32, 952, [0:0]
|
luaIgnitionSkip = bits, U32, 952, [0:0]
|
||||||
; total TS size = 956
|
; total TS size = 956
|
||||||
m_knockLevel = scalar, F32, 956, "Volts", 1, 0
|
m_isPriming = bits, U32, 956, [0:0]
|
||||||
m_knockCyl1 = scalar, S08, 960, "dBv", 1, 0
|
; total TS size = 960
|
||||||
m_knockCyl2 = scalar, S08, 961, "dBv", 1, 0
|
m_knockLevel = scalar, F32, 960, "Volts", 1, 0
|
||||||
m_knockCyl3 = scalar, S08, 962, "dBv", 1, 0
|
m_knockCyl1 = scalar, S08, 964, "dBv", 1, 0
|
||||||
m_knockCyl4 = scalar, S08, 963, "dBv", 1, 0
|
m_knockCyl2 = scalar, S08, 965, "dBv", 1, 0
|
||||||
m_knockCyl5 = scalar, S08, 964, "dBv", 1, 0
|
m_knockCyl3 = scalar, S08, 966, "dBv", 1, 0
|
||||||
m_knockCyl6 = scalar, S08, 965, "dBv", 1, 0
|
m_knockCyl4 = scalar, S08, 967, "dBv", 1, 0
|
||||||
m_knockCyl7 = scalar, S08, 966, "dBv", 1, 0
|
m_knockCyl5 = scalar, S08, 968, "dBv", 1, 0
|
||||||
m_knockCyl8 = scalar, S08, 967, "dBv", 1, 0
|
m_knockCyl6 = scalar, S08, 969, "dBv", 1, 0
|
||||||
m_knockCyl9 = scalar, S08, 968, "dBv", 1, 0
|
m_knockCyl7 = scalar, S08, 970, "dBv", 1, 0
|
||||||
m_knockCyl10 = scalar, S08, 969, "dBv", 1, 0
|
m_knockCyl8 = scalar, S08, 971, "dBv", 1, 0
|
||||||
m_knockCyl11 = scalar, S08, 970, "dBv", 1, 0
|
m_knockCyl9 = scalar, S08, 972, "dBv", 1, 0
|
||||||
m_knockCyl12 = scalar, S08, 971, "dBv", 1, 0
|
m_knockCyl10 = scalar, S08, 973, "dBv", 1, 0
|
||||||
m_knockRetard = scalar, F32, 972, "deg", 1,0
|
m_knockCyl11 = scalar, S08, 974, "dBv", 1, 0
|
||||||
m_knockThreshold = scalar, F32, 976, "", 1, 0
|
m_knockCyl12 = scalar, S08, 975, "dBv", 1, 0
|
||||||
m_knockCount = scalar, U32, 980, "", 1, 0
|
m_knockRetard = scalar, F32, 976, "deg", 1,0
|
||||||
m_maximumRetard = scalar, F32, 984, "", 1, 0
|
m_knockThreshold = scalar, F32, 980, "", 1, 0
|
||||||
m_knockSpectrum1 = scalar, U32, 988, "compressed data", 1, 0
|
m_knockCount = scalar, U32, 984, "", 1, 0
|
||||||
m_knockSpectrum2 = scalar, U32, 992, "compressed data", 1, 0
|
m_maximumRetard = scalar, F32, 988, "", 1, 0
|
||||||
m_knockSpectrum3 = scalar, U32, 996, "compressed data", 1, 0
|
m_knockSpectrum1 = scalar, U32, 992, "compressed data", 1, 0
|
||||||
m_knockSpectrum4 = scalar, U32, 1000, "compressed data", 1, 0
|
m_knockSpectrum2 = scalar, U32, 996, "compressed data", 1, 0
|
||||||
m_knockSpectrum5 = scalar, U32, 1004, "compressed data", 1, 0
|
m_knockSpectrum3 = scalar, U32, 1000, "compressed data", 1, 0
|
||||||
m_knockSpectrum6 = scalar, U32, 1008, "compressed data", 1, 0
|
m_knockSpectrum4 = scalar, U32, 1004, "compressed data", 1, 0
|
||||||
m_knockSpectrum7 = scalar, U32, 1012, "compressed data", 1, 0
|
m_knockSpectrum5 = scalar, U32, 1008, "compressed data", 1, 0
|
||||||
m_knockSpectrum8 = scalar, U32, 1016, "compressed data", 1, 0
|
m_knockSpectrum6 = scalar, U32, 1012, "compressed data", 1, 0
|
||||||
m_knockSpectrum9 = scalar, U32, 1020, "compressed data", 1, 0
|
m_knockSpectrum7 = scalar, U32, 1016, "compressed data", 1, 0
|
||||||
m_knockSpectrum10 = scalar, U32, 1024, "compressed data", 1, 0
|
m_knockSpectrum8 = scalar, U32, 1020, "compressed data", 1, 0
|
||||||
m_knockSpectrum11 = scalar, U32, 1028, "compressed data", 1, 0
|
m_knockSpectrum9 = scalar, U32, 1024, "compressed data", 1, 0
|
||||||
m_knockSpectrum12 = scalar, U32, 1032, "compressed data", 1, 0
|
m_knockSpectrum10 = scalar, U32, 1028, "compressed data", 1, 0
|
||||||
m_knockSpectrum13 = scalar, U32, 1036, "compressed data", 1, 0
|
m_knockSpectrum11 = scalar, U32, 1032, "compressed data", 1, 0
|
||||||
m_knockSpectrum14 = scalar, U32, 1040, "compressed data", 1, 0
|
m_knockSpectrum12 = scalar, U32, 1036, "compressed data", 1, 0
|
||||||
m_knockSpectrum15 = scalar, U32, 1044, "compressed data", 1, 0
|
m_knockSpectrum13 = scalar, U32, 1040, "compressed data", 1, 0
|
||||||
m_knockSpectrum16 = scalar, U32, 1048, "compressed data", 1, 0
|
m_knockSpectrum14 = scalar, U32, 1044, "compressed data", 1, 0
|
||||||
m_knockSpectrumChannelCyl = scalar, U16, 1052, "compressed N + N", 1, 0
|
m_knockSpectrum15 = scalar, U32, 1048, "compressed data", 1, 0
|
||||||
m_knockFrequencyStart = scalar, U16, 1054, "Hz", 1, 0
|
m_knockSpectrum16 = scalar, U32, 1052, "compressed data", 1, 0
|
||||||
m_knockFrequencyStep = scalar, F32, 1056, "Hz", 1, 0
|
m_knockSpectrumChannelCyl = scalar, U16, 1056, "compressed N + N", 1, 0
|
||||||
m_knockFuelTrimMultiplier = scalar, F32, 1060, "multiplier", 1, 0
|
m_knockFrequencyStart = scalar, U16, 1058, "Hz", 1, 0
|
||||||
; total TS size = 1064
|
m_knockFrequencyStep = scalar, F32, 1060, "Hz", 1, 0
|
||||||
tcuCurrentGear = scalar, S08, 1064, "gear", 1, 0
|
m_knockFuelTrimMultiplier = scalar, F32, 1064, "multiplier", 1, 0
|
||||||
tcRatio = scalar, U16, 1066, "value", 0.01, 0
|
; total TS size = 1068
|
||||||
lastShiftTime = scalar, F32, 1068, "", 1, 0
|
tcuCurrentGear = scalar, S08, 1068, "gear", 1, 0
|
||||||
tcu_currentRange = scalar, U08, 1072, "", 1, 0
|
tcRatio = scalar, U16, 1070, "value", 0.01, 0
|
||||||
pressureControlDuty = scalar, S08, 1073, "%", 1,0
|
lastShiftTime = scalar, F32, 1072, "", 1, 0
|
||||||
torqueConverterDuty = scalar, S08, 1074, "%", 1,0
|
tcu_currentRange = scalar, U08, 1076, "", 1, 0
|
||||||
isShifting = bits, U32, 1076, [0:0]
|
pressureControlDuty = scalar, S08, 1077, "%", 1,0
|
||||||
; total TS size = 1080
|
torqueConverterDuty = scalar, S08, 1078, "%", 1,0
|
||||||
throttleUseWotModel = bits, U32, 1080, [0:0]
|
isShifting = bits, U32, 1080, [0:0]
|
||||||
throttleModelCrossoverAngle = scalar, S16, 1084, "%", 0.01, 0
|
; total TS size = 1084
|
||||||
throttleEstimatedFlow = scalar, F32, 1088, "g/s", 1, 0
|
throttleUseWotModel = bits, U32, 1084, [0:0]
|
||||||
; total TS size = 1092
|
throttleModelCrossoverAngle = scalar, S16, 1088, "%", 0.01, 0
|
||||||
m_requested_pump = scalar, F32, 1092, "", 1, 0
|
throttleEstimatedFlow = scalar, F32, 1092, "g/s", 1, 0
|
||||||
fuel_requested_percent = scalar, F32, 1096, "", 1, 0
|
; total TS size = 1096
|
||||||
fuel_requested_percent_pi = scalar, F32, 1100, "", 1, 0
|
m_requested_pump = scalar, F32, 1096, "", 1, 0
|
||||||
noValve = bits, U32, 1104, [0:0]
|
fuel_requested_percent = scalar, F32, 1100, "", 1, 0
|
||||||
angleAboveMin = bits, U32, 1104, [1:1]
|
fuel_requested_percent_pi = scalar, F32, 1104, "", 1, 0
|
||||||
isHpfpInactive = bits, U32, 1104, [2:2]
|
noValve = bits, U32, 1108, [0:0]
|
||||||
m_pressureTarget_kPa = scalar, F32, 1108, "", 1, 0
|
angleAboveMin = bits, U32, 1108, [1:1]
|
||||||
nextLobe = scalar, F32, 1112, "", 1, 0
|
isHpfpInactive = bits, U32, 1108, [2:2]
|
||||||
di_nextStart = scalar, F32, 1116, "v", 1, 0
|
m_pressureTarget_kPa = scalar, F32, 1112, "", 1, 0
|
||||||
; total TS size = 1120
|
nextLobe = scalar, F32, 1116, "", 1, 0
|
||||||
m_deadtime = scalar, F32, 1120, "ms", 1, 0
|
di_nextStart = scalar, F32, 1120, "v", 1, 0
|
||||||
pressureDelta = scalar, F32, 1124, "kPa", 1, 0
|
; total TS size = 1124
|
||||||
pressureRatio = scalar, F32, 1128, "", 1, 0
|
m_deadtime = scalar, F32, 1124, "ms", 1, 0
|
||||||
; total TS size = 1132
|
pressureDelta = scalar, F32, 1128, "kPa", 1, 0
|
||||||
retardThresholdRpm = scalar, S32, 1132, "", 1, 0
|
pressureRatio = scalar, F32, 1132, "", 1, 0
|
||||||
launchActivatePinState = bits, U32, 1136, [0:0]
|
; total TS size = 1136
|
||||||
isPreLaunchCondition = bits, U32, 1136, [1:1]
|
retardThresholdRpm = scalar, S32, 1136, "", 1, 0
|
||||||
isLaunchCondition = bits, U32, 1136, [2:2]
|
launchActivatePinState = bits, U32, 1140, [0:0]
|
||||||
isSwitchActivated = bits, U32, 1136, [3:3]
|
isPreLaunchCondition = bits, U32, 1140, [1:1]
|
||||||
isClutchActivated = bits, U32, 1136, [4:4]
|
isLaunchCondition = bits, U32, 1140, [2:2]
|
||||||
isBrakePedalActivated = bits, U32, 1136, [5:5]
|
isSwitchActivated = bits, U32, 1140, [3:3]
|
||||||
isValidInputPin = bits, U32, 1136, [6:6]
|
isClutchActivated = bits, U32, 1140, [4:4]
|
||||||
activateSwitchCondition = bits, U32, 1136, [7:7]
|
isBrakePedalActivated = bits, U32, 1140, [5:5]
|
||||||
rpmLaunchCondition = bits, U32, 1136, [8:8]
|
isValidInputPin = bits, U32, 1140, [6:6]
|
||||||
rpmPreLaunchCondition = bits, U32, 1136, [9:9]
|
activateSwitchCondition = bits, U32, 1140, [7:7]
|
||||||
speedCondition = bits, U32, 1136, [10:10]
|
rpmLaunchCondition = bits, U32, 1140, [8:8]
|
||||||
tpsCondition = bits, U32, 1136, [11:11]
|
rpmPreLaunchCondition = bits, U32, 1140, [9:9]
|
||||||
; total TS size = 1140
|
speedCondition = bits, U32, 1140, [10:10]
|
||||||
isTorqueReductionTriggerPinValid = bits, U32, 1140, [0:0]
|
tpsCondition = bits, U32, 1140, [11:11]
|
||||||
torqueReductionTriggerPinState = bits, U32, 1140, [1:1]
|
|
||||||
isTimeConditionSatisfied = bits, U32, 1140, [2:2]
|
|
||||||
isRpmConditionSatisfied = bits, U32, 1140, [3:3]
|
|
||||||
isAppConditionSatisfied = bits, U32, 1140, [4:4]
|
|
||||||
isFlatShiftConditionSatisfied = bits, U32, 1140, [5:5]
|
|
||||||
; total TS size = 1144
|
; total TS size = 1144
|
||||||
isAntilagCondition = bits, U32, 1144, [0:0]
|
isTorqueReductionTriggerPinValid = bits, U32, 1144, [0:0]
|
||||||
ALSMinRPMCondition = bits, U32, 1144, [1:1]
|
torqueReductionTriggerPinState = bits, U32, 1144, [1:1]
|
||||||
ALSMaxRPMCondition = bits, U32, 1144, [2:2]
|
isTimeConditionSatisfied = bits, U32, 1144, [2:2]
|
||||||
ALSMinCLTCondition = bits, U32, 1144, [3:3]
|
isRpmConditionSatisfied = bits, U32, 1144, [3:3]
|
||||||
ALSMaxCLTCondition = bits, U32, 1144, [4:4]
|
isAppConditionSatisfied = bits, U32, 1144, [4:4]
|
||||||
ALSMaxThrottleIntentCondition = bits, U32, 1144, [5:5]
|
isFlatShiftConditionSatisfied = bits, U32, 1144, [5:5]
|
||||||
isALSSwitchActivated = bits, U32, 1144, [6:6]
|
; total TS size = 1148
|
||||||
ALSActivatePinState = bits, U32, 1144, [7:7]
|
isAntilagCondition = bits, U32, 1148, [0:0]
|
||||||
ALSSwitchCondition = bits, U32, 1144, [8:8]
|
ALSMinRPMCondition = bits, U32, 1148, [1:1]
|
||||||
ALSTimerCondition = bits, U32, 1144, [9:9]
|
ALSMaxRPMCondition = bits, U32, 1148, [2:2]
|
||||||
fuelALSCorrection = scalar, F32, 1148, "", 1, 0
|
ALSMinCLTCondition = bits, U32, 1148, [3:3]
|
||||||
timingALSCorrection = scalar, S16, 1152, "deg", 0.01, 0
|
ALSMaxCLTCondition = bits, U32, 1148, [4:4]
|
||||||
timingALSSkip = scalar, S16, 1154, "deg", 0.01, 0
|
ALSMaxThrottleIntentCondition = bits, U32, 1148, [5:5]
|
||||||
; total TS size = 1156
|
isALSSwitchActivated = bits, U32, 1148, [6:6]
|
||||||
isTpsInvalid = bits, U32, 1156, [0:0]
|
ALSActivatePinState = bits, U32, 1148, [7:7]
|
||||||
m_shouldResetPid = bits, U32, 1156, [1:1]
|
ALSSwitchCondition = bits, U32, 1148, [8:8]
|
||||||
isBelowClosedLoopThreshold = bits, U32, 1156, [2:2]
|
ALSTimerCondition = bits, U32, 1148, [9:9]
|
||||||
isNotClosedLoop = bits, U32, 1156, [3:3]
|
fuelALSCorrection = scalar, F32, 1152, "", 1, 0
|
||||||
isZeroRpm = bits, U32, 1156, [4:4]
|
timingALSCorrection = scalar, S16, 1156, "deg", 0.01, 0
|
||||||
hasInitBoost = bits, U32, 1156, [5:5]
|
timingALSSkip = scalar, S16, 1158, "deg", 0.01, 0
|
||||||
rpmTooLow = bits, U32, 1156, [6:6]
|
; total TS size = 1160
|
||||||
tpsTooLow = bits, U32, 1156, [7:7]
|
isTpsInvalid = bits, U32, 1160, [0:0]
|
||||||
mapTooLow = bits, U32, 1156, [8:8]
|
m_shouldResetPid = bits, U32, 1160, [1:1]
|
||||||
isPlantValid = bits, U32, 1156, [9:9]
|
isBelowClosedLoopThreshold = bits, U32, 1160, [2:2]
|
||||||
isBoostControlled = bits, U32, 1156, [10:10]
|
isNotClosedLoop = bits, U32, 1160, [3:3]
|
||||||
luaTargetAdd = scalar, S16, 1160, "v", 0.5,0
|
isZeroRpm = bits, U32, 1160, [4:4]
|
||||||
boostOutput = scalar, S16, 1162, "percent", 0.01,0
|
hasInitBoost = bits, U32, 1160, [5:5]
|
||||||
luaTargetMult = scalar, F32, 1164, "v", 1,0
|
rpmTooLow = bits, U32, 1160, [6:6]
|
||||||
openLoopPart = scalar, F32, 1168, "v", 1,0
|
tpsTooLow = bits, U32, 1160, [7:7]
|
||||||
luaOpenLoopAdd = scalar, F32, 1172, "v", 1,0
|
mapTooLow = bits, U32, 1160, [8:8]
|
||||||
boostControllerClosedLoopPart = scalar, S08, 1176, "%", 0.5,0
|
isPlantValid = bits, U32, 1160, [9:9]
|
||||||
boostControlTarget = scalar, S16, 1178, "kPa", 0.03333333333333333,0
|
isBoostControlled = bits, U32, 1160, [10:10]
|
||||||
; total TS size = 1180
|
luaTargetAdd = scalar, S16, 1164, "v", 0.5,0
|
||||||
acButtonState = scalar, S08, 1180, "", 1, 0
|
boostOutput = scalar, S16, 1166, "percent", 0.01,0
|
||||||
m_acEnabled = bits, U32, 1184, [0:0]
|
luaTargetMult = scalar, F32, 1168, "v", 1,0
|
||||||
engineTooSlow = bits, U32, 1184, [1:1]
|
openLoopPart = scalar, F32, 1172, "v", 1,0
|
||||||
engineTooFast = bits, U32, 1184, [2:2]
|
luaOpenLoopAdd = scalar, F32, 1176, "v", 1,0
|
||||||
noClt = bits, U32, 1184, [3:3]
|
boostControllerClosedLoopPart = scalar, S08, 1180, "%", 0.5,0
|
||||||
engineTooHot = bits, U32, 1184, [4:4]
|
boostControlTarget = scalar, S16, 1182, "kPa", 0.03333333333333333,0
|
||||||
tpsTooHigh = bits, U32, 1184, [5:5]
|
; total TS size = 1184
|
||||||
isDisabledByLua = bits, U32, 1184, [6:6]
|
acButtonState = scalar, S08, 1184, "", 1, 0
|
||||||
acCompressorState = bits, U32, 1184, [7:7]
|
m_acEnabled = bits, U32, 1188, [0:0]
|
||||||
acPressureTooLow = bits, U32, 1184, [8:8]
|
engineTooSlow = bits, U32, 1188, [1:1]
|
||||||
acPressureTooHigh = bits, U32, 1184, [9:9]
|
engineTooFast = bits, U32, 1188, [2:2]
|
||||||
; total TS size = 1188
|
noClt = bits, U32, 1188, [3:3]
|
||||||
isNitrousArmed = bits, U32, 1188, [0:0]
|
engineTooHot = bits, U32, 1188, [4:4]
|
||||||
isNitrousSpeedCondition = bits, U32, 1188, [1:1]
|
tpsTooHigh = bits, U32, 1188, [5:5]
|
||||||
isNitrousTpsCondition = bits, U32, 1188, [2:2]
|
isDisabledByLua = bits, U32, 1188, [6:6]
|
||||||
isNitrousCltCondition = bits, U32, 1188, [3:3]
|
acCompressorState = bits, U32, 1188, [7:7]
|
||||||
isNitrousMapCondition = bits, U32, 1188, [4:4]
|
acPressureTooLow = bits, U32, 1188, [8:8]
|
||||||
isNitrousAfrCondition = bits, U32, 1188, [5:5]
|
acPressureTooHigh = bits, U32, 1188, [9:9]
|
||||||
isNitrousRpmCondition = bits, U32, 1188, [6:6]
|
|
||||||
isNitrousCondition = bits, U32, 1188, [7:7]
|
|
||||||
; total TS size = 1192
|
; total TS size = 1192
|
||||||
cranking0 = bits, U32, 1192, [0:0]
|
isNitrousArmed = bits, U32, 1192, [0:0]
|
||||||
notRunning0 = bits, U32, 1192, [1:1]
|
isNitrousSpeedCondition = bits, U32, 1192, [1:1]
|
||||||
disabledWhileEngineStopped0 = bits, U32, 1192, [2:2]
|
isNitrousTpsCondition = bits, U32, 1192, [2:2]
|
||||||
brokenClt0 = bits, U32, 1192, [3:3]
|
isNitrousCltCondition = bits, U32, 1192, [3:3]
|
||||||
enabledForAc0 = bits, U32, 1192, [4:4]
|
isNitrousMapCondition = bits, U32, 1192, [4:4]
|
||||||
hot0 = bits, U32, 1192, [5:5]
|
isNitrousAfrCondition = bits, U32, 1192, [5:5]
|
||||||
cold0 = bits, U32, 1192, [6:6]
|
isNitrousRpmCondition = bits, U32, 1192, [6:6]
|
||||||
disabledBySpeed0 = bits, U32, 1192, [7:7]
|
isNitrousCondition = bits, U32, 1192, [7:7]
|
||||||
radiatorFanStatus0 = scalar, U08, 1196, "", 1, 0
|
; total TS size = 1196
|
||||||
; total TS size = 1200
|
cranking0 = bits, U32, 1196, [0:0]
|
||||||
cranking1 = bits, U32, 1200, [0:0]
|
notRunning0 = bits, U32, 1196, [1:1]
|
||||||
notRunning1 = bits, U32, 1200, [1:1]
|
disabledWhileEngineStopped0 = bits, U32, 1196, [2:2]
|
||||||
disabledWhileEngineStopped1 = bits, U32, 1200, [2:2]
|
brokenClt0 = bits, U32, 1196, [3:3]
|
||||||
brokenClt1 = bits, U32, 1200, [3:3]
|
enabledForAc0 = bits, U32, 1196, [4:4]
|
||||||
enabledForAc1 = bits, U32, 1200, [4:4]
|
hot0 = bits, U32, 1196, [5:5]
|
||||||
hot1 = bits, U32, 1200, [5:5]
|
cold0 = bits, U32, 1196, [6:6]
|
||||||
cold1 = bits, U32, 1200, [6:6]
|
disabledBySpeed0 = bits, U32, 1196, [7:7]
|
||||||
disabledBySpeed1 = bits, U32, 1200, [7:7]
|
radiatorFanStatus0 = scalar, U08, 1200, "", 1, 0
|
||||||
radiatorFanStatus1 = scalar, U08, 1204, "", 1, 0
|
; total TS size = 1204
|
||||||
; total TS size = 1208
|
cranking1 = bits, U32, 1204, [0:0]
|
||||||
isPrime = bits, U32, 1208, [0:0]
|
notRunning1 = bits, U32, 1204, [1:1]
|
||||||
engineTurnedRecently = bits, U32, 1208, [1:1]
|
disabledWhileEngineStopped1 = bits, U32, 1204, [2:2]
|
||||||
isFuelPumpOn = bits, U32, 1208, [2:2]
|
brokenClt1 = bits, U32, 1204, [3:3]
|
||||||
ignitionOn = bits, U32, 1208, [3:3]
|
enabledForAc1 = bits, U32, 1204, [4:4]
|
||||||
|
hot1 = bits, U32, 1204, [5:5]
|
||||||
|
cold1 = bits, U32, 1204, [6:6]
|
||||||
|
disabledBySpeed1 = bits, U32, 1204, [7:7]
|
||||||
|
radiatorFanStatus1 = scalar, U08, 1208, "", 1, 0
|
||||||
; total TS size = 1212
|
; total TS size = 1212
|
||||||
isBenchTest = bits, U32, 1212, [0:0]
|
isPrime = bits, U32, 1212, [0:0]
|
||||||
hasIgnitionVoltage = bits, U32, 1212, [1:1]
|
engineTurnedRecently = bits, U32, 1212, [1:1]
|
||||||
mainRelayState = bits, U32, 1212, [2:2]
|
isFuelPumpOn = bits, U32, 1212, [2:2]
|
||||||
delayedShutoffRequested = bits, U32, 1212, [3:3]
|
ignitionOn = bits, U32, 1212, [3:3]
|
||||||
; total TS size = 1216
|
; total TS size = 1216
|
||||||
lua_fuelAdd = scalar, F32, 1216, "g", 1, 0
|
isBenchTest = bits, U32, 1216, [0:0]
|
||||||
lua_fuelMult = scalar, F32, 1220, "", 1, 0
|
hasIgnitionVoltage = bits, U32, 1216, [1:1]
|
||||||
lua_clutchUpState = bits, U32, 1224, [0:0]
|
mainRelayState = bits, U32, 1216, [2:2]
|
||||||
lua_brakePedalState = bits, U32, 1224, [1:1]
|
delayedShutoffRequested = bits, U32, 1216, [3:3]
|
||||||
lua_acRequestState = bits, U32, 1224, [2:2]
|
; total TS size = 1220
|
||||||
lua_luaDisableEtb = bits, U32, 1224, [3:3]
|
lua_fuelAdd = scalar, F32, 1220, "g", 1, 0
|
||||||
lua_luaIgnCut = bits, U32, 1224, [4:4]
|
lua_fuelMult = scalar, F32, 1224, "", 1, 0
|
||||||
lua_luaFuelCut = bits, U32, 1224, [5:5]
|
lua_clutchUpState = bits, U32, 1228, [0:0]
|
||||||
lua_clutchDownState = bits, U32, 1224, [6:6]
|
lua_brakePedalState = bits, U32, 1228, [1:1]
|
||||||
lua_disableDecelerationFuelCutOff = bits, U32, 1224, [7:7]
|
lua_acRequestState = bits, U32, 1228, [2:2]
|
||||||
lua_torqueReductionState = bits, U32, 1224, [8:8]
|
lua_luaDisableEtb = bits, U32, 1228, [3:3]
|
||||||
sd_tCharge = scalar, S16, 1228, "deg C", 0.01, 0
|
lua_luaIgnCut = bits, U32, 1228, [4:4]
|
||||||
sd_tChargeK = scalar, F32, 1232, "", 1, 0
|
lua_luaFuelCut = bits, U32, 1228, [5:5]
|
||||||
crankingFuel_coolantTemperatureCoefficient = scalar, F32, 1236, "", 1, 0
|
lua_clutchDownState = bits, U32, 1228, [6:6]
|
||||||
crankingFuel_tpsCoefficient = scalar, F32, 1240, "", 1, 0
|
lua_disableDecelerationFuelCutOff = bits, U32, 1228, [7:7]
|
||||||
crankingFuel_durationCoefficient = scalar, F32, 1244, "", 1, 0
|
lua_torqueReductionState = bits, U32, 1228, [8:8]
|
||||||
crankingFuel_fuel = scalar, U16, 1248, "mg", 0.01, 0
|
sd_tCharge = scalar, S16, 1232, "deg C", 0.01, 0
|
||||||
baroCorrection = scalar, F32, 1252, "", 1, 0
|
sd_tChargeK = scalar, F32, 1236, "", 1, 0
|
||||||
hellenBoardId = scalar, S16, 1256, "id", 1, 0
|
crankingFuel_coolantTemperatureCoefficient = scalar, F32, 1240, "", 1, 0
|
||||||
clutchUpState = scalar, S08, 1258, "", 1, 0
|
crankingFuel_tpsCoefficient = scalar, F32, 1244, "", 1, 0
|
||||||
clutchDownState = scalar, S08, 1259, "", 1, 0
|
crankingFuel_durationCoefficient = scalar, F32, 1248, "", 1, 0
|
||||||
brakePedalState = scalar, S08, 1260, "", 1, 0
|
crankingFuel_fuel = scalar, U16, 1252, "mg", 0.01, 0
|
||||||
startStopState = scalar, S08, 1261, "", 1, 0
|
baroCorrection = scalar, F32, 1256, "", 1, 0
|
||||||
smartChipState = scalar, S08, 1262, "", 1, 0
|
hellenBoardId = scalar, S16, 1260, "id", 1, 0
|
||||||
smartChipRestartCounter = scalar, S08, 1263, "", 1, 0
|
clutchUpState = scalar, S08, 1262, "", 1, 0
|
||||||
smartChipAliveCounter = scalar, S08, 1264, "", 1, 0
|
clutchDownState = scalar, S08, 1263, "", 1, 0
|
||||||
startStopPhysicalState = bits, U32, 1268, [0:0]
|
brakePedalState = scalar, S08, 1264, "", 1, 0
|
||||||
acrActive = bits, U32, 1268, [1:1]
|
startStopState = scalar, S08, 1265, "", 1, 0
|
||||||
acrEngineMovedRecently = bits, U32, 1268, [2:2]
|
smartChipState = scalar, S08, 1266, "", 1, 0
|
||||||
heaterControlEnabled = bits, U32, 1268, [3:3]
|
smartChipRestartCounter = scalar, S08, 1267, "", 1, 0
|
||||||
luaDigitalState0 = bits, U32, 1268, [4:4]
|
smartChipAliveCounter = scalar, S08, 1268, "", 1, 0
|
||||||
luaDigitalState1 = bits, U32, 1268, [5:5]
|
startStopPhysicalState = bits, U32, 1272, [0:0]
|
||||||
luaDigitalState2 = bits, U32, 1268, [6:6]
|
acrActive = bits, U32, 1272, [1:1]
|
||||||
luaDigitalState3 = bits, U32, 1268, [7:7]
|
acrEngineMovedRecently = bits, U32, 1272, [2:2]
|
||||||
startStopStateToggleCounter = scalar, U32, 1272, "", 1, 0
|
heaterControlEnabled = bits, U32, 1272, [3:3]
|
||||||
luaSoftSparkSkip = scalar, F32, 1276, "", 1, 0
|
luaDigitalState0 = bits, U32, 1272, [4:4]
|
||||||
luaHardSparkSkip = scalar, F32, 1280, "", 1, 0
|
luaDigitalState1 = bits, U32, 1272, [5:5]
|
||||||
tractionControlSparkSkip = scalar, F32, 1284, "", 1, 0
|
luaDigitalState2 = bits, U32, 1272, [6:6]
|
||||||
desiredRpmLimit = scalar, S16, 1288, "rpm", 1, 0
|
luaDigitalState3 = bits, U32, 1272, [7:7]
|
||||||
fuelInjectionCounter = scalar, U32, 1292, "", 1, 0
|
startStopStateToggleCounter = scalar, U32, 1276, "", 1, 0
|
||||||
globalSparkCounter = scalar, U32, 1296, "", 1, 0
|
luaSoftSparkSkip = scalar, F32, 1280, "", 1, 0
|
||||||
fuelingLoad = scalar, F32, 1300, "", 1, 0
|
luaHardSparkSkip = scalar, F32, 1284, "", 1, 0
|
||||||
ignitionLoad = scalar, F32, 1304, "", 1, 0
|
tractionControlSparkSkip = scalar, F32, 1288, "", 1, 0
|
||||||
veTableYAxis = scalar, U16, 1308, "%", 0.01, 0
|
desiredRpmLimit = scalar, S16, 1292, "rpm", 1, 0
|
||||||
overDwellCounter = scalar, U08, 1310, "", 1, 0
|
fuelInjectionCounter = scalar, U32, 1296, "", 1, 0
|
||||||
overDwellNotScheduledCounter = scalar, U08, 1311, "", 1, 0
|
globalSparkCounter = scalar, U32, 1300, "", 1, 0
|
||||||
sparkOutOfOrderCounter = scalar, U08, 1312, "", 1, 0
|
fuelingLoad = scalar, F32, 1304, "", 1, 0
|
||||||
; total TS size = 1316
|
ignitionLoad = scalar, F32, 1308, "", 1, 0
|
||||||
tpsFrom = scalar, F32, 1316
|
veTableYAxis = scalar, U16, 1312, "%", 0.01, 0
|
||||||
tpsTo = scalar, F32, 1320
|
overDwellCounter = scalar, U08, 1314, "", 1, 0
|
||||||
deltaTps = scalar, F32, 1324
|
overDwellNotScheduledCounter = scalar, U08, 1315, "", 1, 0
|
||||||
extraFuel = scalar, F32, 1328, "", 1, 0
|
sparkOutOfOrderCounter = scalar, U08, 1316, "", 1, 0
|
||||||
valueFromTable = scalar, F32, 1332, "", 1, 0
|
; total TS size = 1320
|
||||||
isAboveAccelThreshold = bits, U32, 1336, [0:0]
|
tpsFrom = scalar, F32, 1320
|
||||||
isBelowDecelThreshold = bits, U32, 1336, [1:1]
|
tpsTo = scalar, F32, 1324
|
||||||
isTimeToResetAccumulator = bits, U32, 1336, [2:2]
|
deltaTps = scalar, F32, 1328
|
||||||
isFractionalEnrichment = bits, U32, 1336, [3:3]
|
extraFuel = scalar, F32, 1332, "", 1, 0
|
||||||
belowEpsilon = bits, U32, 1336, [4:4]
|
valueFromTable = scalar, F32, 1336, "", 1, 0
|
||||||
tooShort = bits, U32, 1336, [5:5]
|
isAboveAccelThreshold = bits, U32, 1340, [0:0]
|
||||||
fractionalInjFuel = scalar, F32, 1340, "", 1, 0
|
isBelowDecelThreshold = bits, U32, 1340, [1:1]
|
||||||
accumulatedValue = scalar, F32, 1344, "", 1, 0
|
isTimeToResetAccumulator = bits, U32, 1340, [2:2]
|
||||||
maxExtraPerCycle = scalar, F32, 1348, "", 1, 0
|
isFractionalEnrichment = bits, U32, 1340, [3:3]
|
||||||
maxExtraPerPeriod = scalar, F32, 1352, "", 1, 0
|
belowEpsilon = bits, U32, 1340, [4:4]
|
||||||
maxInjectedPerPeriod = scalar, F32, 1356, "", 1, 0
|
tooShort = bits, U32, 1340, [5:5]
|
||||||
cycleCnt = scalar, S32, 1360, "", 1, 0
|
fractionalInjFuel = scalar, F32, 1344, "", 1, 0
|
||||||
; total TS size = 1364
|
accumulatedValue = scalar, F32, 1348, "", 1, 0
|
||||||
hwEventCounters1 = scalar, U16, 1364, "", 1, 0
|
maxExtraPerCycle = scalar, F32, 1352, "", 1, 0
|
||||||
hwEventCounters2 = scalar, U16, 1366, "", 1, 0
|
maxExtraPerPeriod = scalar, F32, 1356, "", 1, 0
|
||||||
hwEventCounters3 = scalar, U16, 1368, "", 1, 0
|
maxInjectedPerPeriod = scalar, F32, 1360, "", 1, 0
|
||||||
hwEventCounters4 = scalar, U16, 1370, "", 1, 0
|
cycleCnt = scalar, S32, 1364, "", 1, 0
|
||||||
vvtCamCounter = scalar, U16, 1372, "", 1, 0
|
; total TS size = 1368
|
||||||
mapVvt_MAP_AT_SPECIAL_POINT = scalar, F32, 1376, "kPa", 1, 0
|
hwEventCounters1 = scalar, U16, 1368, "", 1, 0
|
||||||
mapVvt_MAP_AT_DIFF = scalar, F32, 1380, "kPa", 1, 0
|
hwEventCounters2 = scalar, U16, 1370, "", 1, 0
|
||||||
mapVvt_MAP_AT_CYCLE_COUNT = scalar, S08, 1384, "distance", 1, 0
|
hwEventCounters3 = scalar, U16, 1372, "", 1, 0
|
||||||
mapVvt_sync_counter = scalar, U08, 1385, "counter", 1, 0
|
hwEventCounters4 = scalar, U16, 1374, "", 1, 0
|
||||||
currentEngineDecodedPhase = scalar, F32, 1388, "deg", 1, 0
|
vvtCamCounter = scalar, U16, 1376, "", 1, 0
|
||||||
triggerToothAngleError = scalar, F32, 1392, "deg", 1, 0
|
mapVvt_MAP_AT_SPECIAL_POINT = scalar, F32, 1380, "kPa", 1, 0
|
||||||
triggerIgnoredToothCount = scalar, U08, 1396, "", 1, 0
|
mapVvt_MAP_AT_DIFF = scalar, F32, 1384, "kPa", 1, 0
|
||||||
mapCamPrevToothAngle = scalar, F32, 1400, "deg", 1, 0
|
mapVvt_MAP_AT_CYCLE_COUNT = scalar, S08, 1388, "distance", 1, 0
|
||||||
isDecodingMapCam = bits, U32, 1404, [0:0]
|
mapVvt_sync_counter = scalar, U08, 1389, "counter", 1, 0
|
||||||
triggerElapsedUs = scalar, U32, 1408, "", 1, 0
|
currentEngineDecodedPhase = scalar, F32, 1392, "deg", 1, 0
|
||||||
; total TS size = 1412
|
triggerToothAngleError = scalar, F32, 1396, "deg", 1, 0
|
||||||
synchronizationCounter0 = scalar, U32, 1412, "", 1, 0
|
triggerIgnoredToothCount = scalar, U08, 1400, "", 1, 0
|
||||||
vvtToothDurations00 = scalar, U32, 1416, "us", 1, 0
|
mapCamPrevToothAngle = scalar, F32, 1404, "deg", 1, 0
|
||||||
vvtCurrentPosition0 = scalar, F32, 1420, "", 1, 0
|
isDecodingMapCam = bits, U32, 1408, [0:0]
|
||||||
vvtToothPosition10 = scalar, F32, 1424, "", 1, 0
|
triggerElapsedUs = scalar, U32, 1412, "", 1, 0
|
||||||
vvtToothPosition20 = scalar, F32, 1428, "", 1, 0
|
; total TS size = 1416
|
||||||
vvtToothPosition30 = scalar, F32, 1432, "", 1, 0
|
synchronizationCounter0 = scalar, U32, 1416, "", 1, 0
|
||||||
vvtToothPosition40 = scalar, F32, 1436, "", 1, 0
|
vvtToothDurations00 = scalar, U32, 1420, "us", 1, 0
|
||||||
triggerSyncGapRatio0 = scalar, F32, 1440, "", 1, 0
|
vvtCurrentPosition0 = scalar, F32, 1424, "", 1, 0
|
||||||
triggerStateIndex0 = scalar, U08, 1444, "", 1, 0
|
vvtToothPosition10 = scalar, F32, 1428, "", 1, 0
|
||||||
; total TS size = 1448
|
vvtToothPosition20 = scalar, F32, 1432, "", 1, 0
|
||||||
synchronizationCounter1 = scalar, U32, 1448, "", 1, 0
|
vvtToothPosition30 = scalar, F32, 1436, "", 1, 0
|
||||||
vvtToothDurations01 = scalar, U32, 1452, "us", 1, 0
|
vvtToothPosition40 = scalar, F32, 1440, "", 1, 0
|
||||||
vvtCurrentPosition1 = scalar, F32, 1456, "", 1, 0
|
triggerSyncGapRatio0 = scalar, F32, 1444, "", 1, 0
|
||||||
vvtToothPosition11 = scalar, F32, 1460, "", 1, 0
|
triggerStateIndex0 = scalar, U08, 1448, "", 1, 0
|
||||||
vvtToothPosition21 = scalar, F32, 1464, "", 1, 0
|
; total TS size = 1452
|
||||||
vvtToothPosition31 = scalar, F32, 1468, "", 1, 0
|
synchronizationCounter1 = scalar, U32, 1452, "", 1, 0
|
||||||
vvtToothPosition41 = scalar, F32, 1472, "", 1, 0
|
vvtToothDurations01 = scalar, U32, 1456, "us", 1, 0
|
||||||
triggerSyncGapRatio1 = scalar, F32, 1476, "", 1, 0
|
vvtCurrentPosition1 = scalar, F32, 1460, "", 1, 0
|
||||||
triggerStateIndex1 = scalar, U08, 1480, "", 1, 0
|
vvtToothPosition11 = scalar, F32, 1464, "", 1, 0
|
||||||
; total TS size = 1484
|
vvtToothPosition21 = scalar, F32, 1468, "", 1, 0
|
||||||
synchronizationCounter2 = scalar, U32, 1484, "", 1, 0
|
vvtToothPosition31 = scalar, F32, 1472, "", 1, 0
|
||||||
vvtToothDurations02 = scalar, U32, 1488, "us", 1, 0
|
vvtToothPosition41 = scalar, F32, 1476, "", 1, 0
|
||||||
vvtCurrentPosition2 = scalar, F32, 1492, "", 1, 0
|
triggerSyncGapRatio1 = scalar, F32, 1480, "", 1, 0
|
||||||
vvtToothPosition12 = scalar, F32, 1496, "", 1, 0
|
triggerStateIndex1 = scalar, U08, 1484, "", 1, 0
|
||||||
vvtToothPosition22 = scalar, F32, 1500, "", 1, 0
|
; total TS size = 1488
|
||||||
vvtToothPosition32 = scalar, F32, 1504, "", 1, 0
|
synchronizationCounter2 = scalar, U32, 1488, "", 1, 0
|
||||||
vvtToothPosition42 = scalar, F32, 1508, "", 1, 0
|
vvtToothDurations02 = scalar, U32, 1492, "us", 1, 0
|
||||||
triggerSyncGapRatio2 = scalar, F32, 1512, "", 1, 0
|
vvtCurrentPosition2 = scalar, F32, 1496, "", 1, 0
|
||||||
triggerStateIndex2 = scalar, U08, 1516, "", 1, 0
|
vvtToothPosition12 = scalar, F32, 1500, "", 1, 0
|
||||||
; total TS size = 1520
|
vvtToothPosition22 = scalar, F32, 1504, "", 1, 0
|
||||||
synchronizationCounter3 = scalar, U32, 1520, "", 1, 0
|
vvtToothPosition32 = scalar, F32, 1508, "", 1, 0
|
||||||
vvtToothDurations03 = scalar, U32, 1524, "us", 1, 0
|
vvtToothPosition42 = scalar, F32, 1512, "", 1, 0
|
||||||
vvtCurrentPosition3 = scalar, F32, 1528, "", 1, 0
|
triggerSyncGapRatio2 = scalar, F32, 1516, "", 1, 0
|
||||||
vvtToothPosition13 = scalar, F32, 1532, "", 1, 0
|
triggerStateIndex2 = scalar, U08, 1520, "", 1, 0
|
||||||
vvtToothPosition23 = scalar, F32, 1536, "", 1, 0
|
; total TS size = 1524
|
||||||
vvtToothPosition33 = scalar, F32, 1540, "", 1, 0
|
synchronizationCounter3 = scalar, U32, 1524, "", 1, 0
|
||||||
vvtToothPosition43 = scalar, F32, 1544, "", 1, 0
|
vvtToothDurations03 = scalar, U32, 1528, "us", 1, 0
|
||||||
triggerSyncGapRatio3 = scalar, F32, 1548, "", 1, 0
|
vvtCurrentPosition3 = scalar, F32, 1532, "", 1, 0
|
||||||
triggerStateIndex3 = scalar, U08, 1552, "", 1, 0
|
vvtToothPosition13 = scalar, F32, 1536, "", 1, 0
|
||||||
; total TS size = 1556
|
vvtToothPosition23 = scalar, F32, 1540, "", 1, 0
|
||||||
synchronizationCounter4 = scalar, U32, 1556, "", 1, 0
|
vvtToothPosition33 = scalar, F32, 1544, "", 1, 0
|
||||||
vvtToothDurations04 = scalar, U32, 1560, "us", 1, 0
|
vvtToothPosition43 = scalar, F32, 1548, "", 1, 0
|
||||||
vvtCurrentPosition4 = scalar, F32, 1564, "", 1, 0
|
triggerSyncGapRatio3 = scalar, F32, 1552, "", 1, 0
|
||||||
vvtToothPosition14 = scalar, F32, 1568, "", 1, 0
|
triggerStateIndex3 = scalar, U08, 1556, "", 1, 0
|
||||||
vvtToothPosition24 = scalar, F32, 1572, "", 1, 0
|
; total TS size = 1560
|
||||||
vvtToothPosition34 = scalar, F32, 1576, "", 1, 0
|
synchronizationCounter4 = scalar, U32, 1560, "", 1, 0
|
||||||
vvtToothPosition44 = scalar, F32, 1580, "", 1, 0
|
vvtToothDurations04 = scalar, U32, 1564, "us", 1, 0
|
||||||
triggerSyncGapRatio4 = scalar, F32, 1584, "", 1, 0
|
vvtCurrentPosition4 = scalar, F32, 1568, "", 1, 0
|
||||||
triggerStateIndex4 = scalar, U08, 1588, "", 1, 0
|
vvtToothPosition14 = scalar, F32, 1572, "", 1, 0
|
||||||
; total TS size = 1592
|
vvtToothPosition24 = scalar, F32, 1576, "", 1, 0
|
||||||
camResyncCounter = scalar, U08, 1592, "", 1, 0
|
vvtToothPosition34 = scalar, F32, 1580, "", 1, 0
|
||||||
m_hasSynchronizedPhase = bits, U32, 1596, [0:0]
|
vvtToothPosition44 = scalar, F32, 1584, "", 1, 0
|
||||||
; total TS size = 1600
|
triggerSyncGapRatio4 = scalar, F32, 1588, "", 1, 0
|
||||||
wallFuelCorrection = scalar, F32, 1600, "", 1, 0
|
triggerStateIndex4 = scalar, U08, 1592, "", 1, 0
|
||||||
wallFuel = scalar, F32, 1604, "", 1, 0
|
; total TS size = 1596
|
||||||
; total TS size = 1608
|
camResyncCounter = scalar, U08, 1596, "", 1, 0
|
||||||
idleState = bits, S32, 1608, [0:2], "not important"
|
m_hasSynchronizedPhase = bits, U32, 1600, [0:0]
|
||||||
currentIdlePosition = scalar, F32, 1612
|
; total TS size = 1604
|
||||||
baseIdlePosition = scalar, F32, 1616
|
wallFuelCorrection = scalar, F32, 1604, "", 1, 0
|
||||||
idleClosedLoop = scalar, F32, 1620
|
wallFuel = scalar, F32, 1608, "", 1, 0
|
||||||
iacByTpsTaper = scalar, F32, 1624
|
; total TS size = 1612
|
||||||
mightResetPid = bits, U32, 1628, [0:0]
|
idleState = bits, S32, 1612, [0:2], "not important"
|
||||||
shouldResetPid = bits, U32, 1628, [1:1]
|
currentIdlePosition = scalar, F32, 1616
|
||||||
wasResetPid = bits, U32, 1628, [2:2]
|
baseIdlePosition = scalar, F32, 1620
|
||||||
mustResetPid = bits, U32, 1628, [3:3]
|
idleClosedLoop = scalar, F32, 1624
|
||||||
isCranking = bits, U32, 1628, [4:4]
|
iacByTpsTaper = scalar, F32, 1628
|
||||||
isIacTableForCoasting = bits, U32, 1628, [5:5]
|
mightResetPid = bits, U32, 1632, [0:0]
|
||||||
notIdling = bits, U32, 1628, [6:6]
|
shouldResetPid = bits, U32, 1632, [1:1]
|
||||||
needReset = bits, U32, 1628, [7:7]
|
wasResetPid = bits, U32, 1632, [2:2]
|
||||||
isInDeadZone = bits, U32, 1628, [8:8]
|
mustResetPid = bits, U32, 1632, [3:3]
|
||||||
isBlipping = bits, U32, 1628, [9:9]
|
isCranking = bits, U32, 1632, [4:4]
|
||||||
useClosedLoop = bits, U32, 1628, [10:10]
|
isIacTableForCoasting = bits, U32, 1632, [5:5]
|
||||||
badTps = bits, U32, 1628, [11:11]
|
notIdling = bits, U32, 1632, [6:6]
|
||||||
looksLikeRunning = bits, U32, 1628, [12:12]
|
needReset = bits, U32, 1632, [7:7]
|
||||||
looksLikeCoasting = bits, U32, 1628, [13:13]
|
isInDeadZone = bits, U32, 1632, [8:8]
|
||||||
looksLikeCrankToIdle = bits, U32, 1628, [14:14]
|
isBlipping = bits, U32, 1632, [9:9]
|
||||||
isIdleCoasting = bits, U32, 1628, [15:15]
|
useClosedLoop = bits, U32, 1632, [10:10]
|
||||||
isIdleClosedLoop = bits, U32, 1628, [16:16]
|
badTps = bits, U32, 1632, [11:11]
|
||||||
idleTarget = scalar, S32, 1632, "", 1, 0
|
looksLikeRunning = bits, U32, 1632, [12:12]
|
||||||
targetRpmByClt = scalar, S32, 1636, "", 1, 0
|
looksLikeCoasting = bits, U32, 1632, [13:13]
|
||||||
targetRpmAc = scalar, S32, 1640, "", 1, 0
|
looksLikeCrankToIdle = bits, U32, 1632, [14:14]
|
||||||
iacByRpmTaper = scalar, F32, 1644
|
isIdleCoasting = bits, U32, 1632, [15:15]
|
||||||
luaAdd = scalar, F32, 1648
|
isIdleClosedLoop = bits, U32, 1632, [16:16]
|
||||||
; total TS size = 1652
|
idleTarget = scalar, S32, 1636, "", 1, 0
|
||||||
targetWithIdlePosition0 = scalar, F32, 1652, "%", 1,0
|
targetRpmByClt = scalar, S32, 1640, "", 1, 0
|
||||||
trim0 = scalar, F32, 1656, "", 1, 0
|
targetRpmAc = scalar, S32, 1644, "", 1, 0
|
||||||
luaAdjustment0 = scalar, F32, 1660, "%", 1,0
|
iacByRpmTaper = scalar, F32, 1648
|
||||||
m_wastegatePosition0 = scalar, F32, 1664, "%", 1,0
|
luaAdd = scalar, F32, 1652
|
||||||
etbFeedForward0 = scalar, F32, 1668
|
; total TS size = 1656
|
||||||
etbIntegralError0 = scalar, F32, 1672, "", 1, 0
|
targetWithIdlePosition0 = scalar, F32, 1656, "%", 1,0
|
||||||
etbCurrentTarget0 = scalar, F32, 1676, "%", 1, 0
|
trim0 = scalar, F32, 1660, "", 1, 0
|
||||||
m_adjustedTarget0 = scalar, S16, 1680, "%", 0.01, 0
|
luaAdjustment0 = scalar, F32, 1664, "%", 1,0
|
||||||
etbRevLimitActive0 = bits, U32, 1684, [0:0]
|
m_wastegatePosition0 = scalar, F32, 1668, "%", 1,0
|
||||||
jamDetected0 = bits, U32, 1684, [1:1]
|
etbFeedForward0 = scalar, F32, 1672
|
||||||
validPlantPosition0 = bits, U32, 1684, [2:2]
|
etbIntegralError0 = scalar, F32, 1676, "", 1, 0
|
||||||
etbTpsErrorCounter0 = scalar, U16, 1688, "count", 1,0
|
etbCurrentTarget0 = scalar, F32, 1680, "%", 1, 0
|
||||||
etbPpsErrorCounter0 = scalar, U16, 1690, "count", 1,0
|
m_adjustedTarget0 = scalar, S16, 1684, "%", 0.01, 0
|
||||||
etbErrorCode0 = scalar, S08, 1692, "", 1, 0
|
etbRevLimitActive0 = bits, U32, 1688, [0:0]
|
||||||
etbErrorCodeBlinker0 = scalar, S08, 1693, "", 1, 0
|
jamDetected0 = bits, U32, 1688, [1:1]
|
||||||
tcEtbDrop0 = scalar, S08, 1694, "%", 1, 0
|
validPlantPosition0 = bits, U32, 1688, [2:2]
|
||||||
jamTimer0 = scalar, U16, 1696, "sec", 0.01, 0
|
etbTpsErrorCounter0 = scalar, U16, 1692, "count", 1,0
|
||||||
adjustedEtbTarget0 = scalar, S08, 1698, "%", 1, 0
|
etbPpsErrorCounter0 = scalar, U16, 1694, "count", 1,0
|
||||||
state0 = scalar, U08, 1699, "", 1, 0
|
etbErrorCode0 = scalar, S08, 1696, "", 1, 0
|
||||||
; total TS size = 1700
|
etbErrorCodeBlinker0 = scalar, S08, 1697, "", 1, 0
|
||||||
targetWithIdlePosition1 = scalar, F32, 1700, "%", 1,0
|
tcEtbDrop0 = scalar, S08, 1698, "%", 1, 0
|
||||||
trim1 = scalar, F32, 1704, "", 1, 0
|
jamTimer0 = scalar, U16, 1700, "sec", 0.01, 0
|
||||||
luaAdjustment1 = scalar, F32, 1708, "%", 1,0
|
adjustedEtbTarget0 = scalar, S08, 1702, "%", 1, 0
|
||||||
m_wastegatePosition1 = scalar, F32, 1712, "%", 1,0
|
state0 = scalar, U08, 1703, "", 1, 0
|
||||||
etbFeedForward1 = scalar, F32, 1716
|
; total TS size = 1704
|
||||||
etbIntegralError1 = scalar, F32, 1720, "", 1, 0
|
targetWithIdlePosition1 = scalar, F32, 1704, "%", 1,0
|
||||||
etbCurrentTarget1 = scalar, F32, 1724, "%", 1, 0
|
trim1 = scalar, F32, 1708, "", 1, 0
|
||||||
m_adjustedTarget1 = scalar, S16, 1728, "%", 0.01, 0
|
luaAdjustment1 = scalar, F32, 1712, "%", 1,0
|
||||||
etbRevLimitActive1 = bits, U32, 1732, [0:0]
|
m_wastegatePosition1 = scalar, F32, 1716, "%", 1,0
|
||||||
jamDetected1 = bits, U32, 1732, [1:1]
|
etbFeedForward1 = scalar, F32, 1720
|
||||||
validPlantPosition1 = bits, U32, 1732, [2:2]
|
etbIntegralError1 = scalar, F32, 1724, "", 1, 0
|
||||||
etbTpsErrorCounter1 = scalar, U16, 1736, "count", 1,0
|
etbCurrentTarget1 = scalar, F32, 1728, "%", 1, 0
|
||||||
etbPpsErrorCounter1 = scalar, U16, 1738, "count", 1,0
|
m_adjustedTarget1 = scalar, S16, 1732, "%", 0.01, 0
|
||||||
etbErrorCode1 = scalar, S08, 1740, "", 1, 0
|
etbRevLimitActive1 = bits, U32, 1736, [0:0]
|
||||||
etbErrorCodeBlinker1 = scalar, S08, 1741, "", 1, 0
|
jamDetected1 = bits, U32, 1736, [1:1]
|
||||||
tcEtbDrop1 = scalar, S08, 1742, "%", 1, 0
|
validPlantPosition1 = bits, U32, 1736, [2:2]
|
||||||
jamTimer1 = scalar, U16, 1744, "sec", 0.01, 0
|
etbTpsErrorCounter1 = scalar, U16, 1740, "count", 1,0
|
||||||
adjustedEtbTarget1 = scalar, S08, 1746, "%", 1, 0
|
etbPpsErrorCounter1 = scalar, U16, 1742, "count", 1,0
|
||||||
state1 = scalar, U08, 1747, "", 1, 0
|
etbErrorCode1 = scalar, S08, 1744, "", 1, 0
|
||||||
; total TS size = 1748
|
etbErrorCodeBlinker1 = scalar, S08, 1745, "", 1, 0
|
||||||
faultCode0 = scalar, U08, 1748, "", 1, 0
|
tcEtbDrop1 = scalar, S08, 1746, "%", 1, 0
|
||||||
heaterDuty0 = scalar, U08, 1749, "%", 1, 0
|
jamTimer1 = scalar, U16, 1748, "sec", 0.01, 0
|
||||||
pumpDuty0 = scalar, U08, 1750, "%", 1, 0
|
adjustedEtbTarget1 = scalar, S08, 1750, "%", 1, 0
|
||||||
tempC0 = scalar, U16, 1752, "C", 1, 0
|
state1 = scalar, U08, 1751, "", 1, 0
|
||||||
nernstVoltage0 = scalar, U16, 1754, "V", 0.001, 0
|
; total TS size = 1752
|
||||||
esr0 = scalar, U16, 1756, "ohm", 1, 0
|
faultCode0 = scalar, U08, 1752, "", 1, 0
|
||||||
; total TS size = 1760
|
heaterDuty0 = scalar, U08, 1753, "%", 1, 0
|
||||||
faultCode1 = scalar, U08, 1760, "", 1, 0
|
pumpDuty0 = scalar, U08, 1754, "%", 1, 0
|
||||||
heaterDuty1 = scalar, U08, 1761, "%", 1, 0
|
tempC0 = scalar, U16, 1756, "C", 1, 0
|
||||||
pumpDuty1 = scalar, U08, 1762, "%", 1, 0
|
nernstVoltage0 = scalar, U16, 1758, "V", 0.001, 0
|
||||||
tempC1 = scalar, U16, 1764, "C", 1, 0
|
esr0 = scalar, U16, 1760, "ohm", 1, 0
|
||||||
nernstVoltage1 = scalar, U16, 1766, "V", 0.001, 0
|
; total TS size = 1764
|
||||||
esr1 = scalar, U16, 1768, "ohm", 1, 0
|
faultCode1 = scalar, U08, 1764, "", 1, 0
|
||||||
; total TS size = 1772
|
heaterDuty1 = scalar, U08, 1765, "%", 1, 0
|
||||||
dcOutput0 = scalar, F32, 1772, "%", 1,0
|
pumpDuty1 = scalar, U08, 1766, "%", 1, 0
|
||||||
isEnabled0_int = scalar, U08, 1776, "%", 1,0
|
tempC1 = scalar, U16, 1768, "C", 1, 0
|
||||||
isEnabled0 = bits, U32, 1780, [0:0]
|
nernstVoltage1 = scalar, U16, 1770, "V", 0.001, 0
|
||||||
; total TS size = 1784
|
esr1 = scalar, U16, 1772, "ohm", 1, 0
|
||||||
value0 = scalar, U16, 1784, "RAW", 1,0
|
; total TS size = 1776
|
||||||
value1 = scalar, U16, 1786, "RAW", 1,0
|
dcOutput0 = scalar, F32, 1776, "%", 1,0
|
||||||
errorRate = scalar, F32, 1788, "% (don't belive me)", 1,0
|
isEnabled0_int = scalar, U08, 1780, "%", 1,0
|
||||||
; total TS size = 1792
|
isEnabled0 = bits, U32, 1784, [0:0]
|
||||||
vvtTarget = scalar, U16, 1792, "deg", 0.1, 0
|
; total TS size = 1788
|
||||||
vvtOutput = scalar, U08, 1794, "%", 0.5, 0
|
value0 = scalar, U16, 1788, "RAW", 1,0
|
||||||
|
value1 = scalar, U16, 1790, "RAW", 1,0
|
||||||
|
errorRate = scalar, F32, 1792, "% (don't belive me)", 1,0
|
||||||
; total TS size = 1796
|
; total TS size = 1796
|
||||||
lambdaCurrentlyGood = bits, U32, 1796, [0:0]
|
vvtTarget = scalar, U16, 1796, "deg", 0.1, 0
|
||||||
lambdaMonitorCut = bits, U32, 1796, [1:1]
|
vvtOutput = scalar, U08, 1798, "%", 0.5, 0
|
||||||
lambdaTimeSinceGood = scalar, U16, 1800, "sec", 0.01, 0
|
; total TS size = 1800
|
||||||
; total TS size = 1804
|
lambdaCurrentlyGood = bits, U32, 1800, [0:0]
|
||||||
|
lambdaMonitorCut = bits, U32, 1800, [1:1]
|
||||||
|
lambdaTimeSinceGood = scalar, U16, 1804, "sec", 0.01, 0
|
||||||
|
; total TS size = 1808
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
// generated by gen_live_documentation.sh / LiveDataProcessor.java
|
// generated by gen_live_documentation.sh / LiveDataProcessor.java
|
||||||
#define TS_TOTAL_OUTPUT_SIZE 1804
|
#define TS_TOTAL_OUTPUT_SIZE 1808
|
|
@ -1331,7 +1331,7 @@
|
||||||
#define SentInput_NONE 0
|
#define SentInput_NONE 0
|
||||||
#define show_tcu_gauges true
|
#define show_tcu_gauges true
|
||||||
#define show_vvt_output_pin true
|
#define show_vvt_output_pin true
|
||||||
#define SIGNATURE_HASH 2439624184
|
#define SIGNATURE_HASH 1216532570
|
||||||
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
|
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
|
||||||
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
|
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
|
||||||
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
|
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
|
||||||
|
@ -1547,6 +1547,7 @@
|
||||||
#define TS_BURN_COMMAND_char B
|
#define TS_BURN_COMMAND_char B
|
||||||
#define TS_CHUNK_WRITE_COMMAND 'C'
|
#define TS_CHUNK_WRITE_COMMAND 'C'
|
||||||
#define TS_CHUNK_WRITE_COMMAND_char C
|
#define TS_CHUNK_WRITE_COMMAND_char C
|
||||||
|
#define ts_cic_idle false
|
||||||
#define ts_command_e_TS_BENCH_CATEGORY 22
|
#define ts_command_e_TS_BENCH_CATEGORY 22
|
||||||
#define ts_command_e_TS_BOARD_ACTION 29
|
#define ts_command_e_TS_BOARD_ACTION 29
|
||||||
#define ts_command_e_TS_CLEAR_WARNINGS 17
|
#define ts_command_e_TS_CLEAR_WARNINGS 17
|
||||||
|
@ -1798,14 +1799,14 @@
|
||||||
#define ts_show_wastegate_sensor true
|
#define ts_show_wastegate_sensor true
|
||||||
#define ts_show_wbo_canbus_index true
|
#define ts_show_wbo_canbus_index true
|
||||||
#define ts_show_wbo_canbus_set_index true
|
#define ts_show_wbo_canbus_set_index true
|
||||||
#define TS_SIGNATURE "rusEFI main.2024.12.22.mega100.2439624184"
|
#define TS_SIGNATURE "rusEFI main.2024.12.23.mega100.1216532570"
|
||||||
#define TS_SIMULATE_CAN '>'
|
#define TS_SIMULATE_CAN '>'
|
||||||
#define TS_SIMULATE_CAN_char >
|
#define TS_SIMULATE_CAN_char >
|
||||||
#define TS_SINGLE_WRITE_COMMAND 'W'
|
#define TS_SINGLE_WRITE_COMMAND 'W'
|
||||||
#define TS_SINGLE_WRITE_COMMAND_char W
|
#define TS_SINGLE_WRITE_COMMAND_char W
|
||||||
#define TS_TEST_COMMAND 't'
|
#define TS_TEST_COMMAND 't'
|
||||||
#define TS_TEST_COMMAND_char t
|
#define TS_TEST_COMMAND_char t
|
||||||
#define TS_TOTAL_OUTPUT_SIZE 1804
|
#define TS_TOTAL_OUTPUT_SIZE 1808
|
||||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
|
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
|
||||||
//
|
//
|
||||||
|
|
||||||
#define SIGNATURE_HASH 2439624184
|
#define SIGNATURE_HASH 1216532570
|
||||||
#define TS_SIGNATURE "rusEFI main.2024.12.22.mega100.2439624184"
|
#define TS_SIGNATURE "rusEFI main.2024.12.23.mega100.1216532570"
|
||||||
|
|
|
@ -0,0 +1,109 @@
|
||||||
|
// this section was generated automatically by rusEFI tool config_definition_base-all.jar based on (unknown script) controllers/engine_cycle/prime_injection.txt
|
||||||
|
// by class com.rusefi.output.CHeaderConsumer
|
||||||
|
// begin
|
||||||
|
#pragma once
|
||||||
|
#include "rusefi_types.h"
|
||||||
|
// start of prime_injection_s
|
||||||
|
struct prime_injection_s {
|
||||||
|
/**
|
||||||
|
* "IsFuelPriming"
|
||||||
|
offset 0 bit 0 */
|
||||||
|
bool m_isPriming : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 1 */
|
||||||
|
bool unusedBit_1_1 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 2 */
|
||||||
|
bool unusedBit_1_2 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 3 */
|
||||||
|
bool unusedBit_1_3 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 4 */
|
||||||
|
bool unusedBit_1_4 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 5 */
|
||||||
|
bool unusedBit_1_5 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 6 */
|
||||||
|
bool unusedBit_1_6 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 7 */
|
||||||
|
bool unusedBit_1_7 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 8 */
|
||||||
|
bool unusedBit_1_8 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 9 */
|
||||||
|
bool unusedBit_1_9 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 10 */
|
||||||
|
bool unusedBit_1_10 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 11 */
|
||||||
|
bool unusedBit_1_11 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 12 */
|
||||||
|
bool unusedBit_1_12 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 13 */
|
||||||
|
bool unusedBit_1_13 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 14 */
|
||||||
|
bool unusedBit_1_14 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 15 */
|
||||||
|
bool unusedBit_1_15 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 16 */
|
||||||
|
bool unusedBit_1_16 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 17 */
|
||||||
|
bool unusedBit_1_17 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 18 */
|
||||||
|
bool unusedBit_1_18 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 19 */
|
||||||
|
bool unusedBit_1_19 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 20 */
|
||||||
|
bool unusedBit_1_20 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 21 */
|
||||||
|
bool unusedBit_1_21 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 22 */
|
||||||
|
bool unusedBit_1_22 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 23 */
|
||||||
|
bool unusedBit_1_23 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 24 */
|
||||||
|
bool unusedBit_1_24 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 25 */
|
||||||
|
bool unusedBit_1_25 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 26 */
|
||||||
|
bool unusedBit_1_26 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 27 */
|
||||||
|
bool unusedBit_1_27 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 28 */
|
||||||
|
bool unusedBit_1_28 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 29 */
|
||||||
|
bool unusedBit_1_29 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 30 */
|
||||||
|
bool unusedBit_1_30 : 1 {};
|
||||||
|
/**
|
||||||
|
offset 0 bit 31 */
|
||||||
|
bool unusedBit_1_31 : 1 {};
|
||||||
|
};
|
||||||
|
static_assert(sizeof(prime_injection_s) == 4);
|
||||||
|
|
||||||
|
// end
|
||||||
|
// this section was generated automatically by rusEFI tool config_definition_base-all.jar based on (unknown script) controllers/engine_cycle/prime_injection.txt
|
|
@ -38,12 +38,12 @@ enable2ndByteCanID = false
|
||||||
|
|
||||||
[MegaTune]
|
[MegaTune]
|
||||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||||
signature = "rusEFI main.2024.12.22.mega100.2439624184"
|
signature = "rusEFI main.2024.12.23.mega100.1216532570"
|
||||||
|
|
||||||
[TunerStudio]
|
[TunerStudio]
|
||||||
queryCommand = "S"
|
queryCommand = "S"
|
||||||
versionInfo = "V" ; firmware version for title bar.
|
versionInfo = "V" ; firmware version for title bar.
|
||||||
signature= "rusEFI main.2024.12.22.mega100.2439624184" ; signature is expected to be 7 or more characters.
|
signature= "rusEFI main.2024.12.23.mega100.1216532570" ; signature is expected to be 7 or more characters.
|
||||||
|
|
||||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||||
useLegacyFTempUnits = false
|
useLegacyFTempUnits = false
|
||||||
|
@ -2651,7 +2651,7 @@ targetAfrBlends2_blendValues = array, U08, 23334, [8], "%", 0.5, 0, 0, 100, 1
|
||||||
ochGetCommand = "O%2o%2c"
|
ochGetCommand = "O%2o%2c"
|
||||||
|
|
||||||
; see TS_OUTPUT_SIZE in console source code
|
; see TS_OUTPUT_SIZE in console source code
|
||||||
ochBlockSize = 1804
|
ochBlockSize = 1808
|
||||||
|
|
||||||
; 11.2.3 Full Optimized – High Speed
|
; 11.2.3 Full Optimized – High Speed
|
||||||
scatteredOchGetCommand = 9
|
scatteredOchGetCommand = 9
|
||||||
|
@ -3180,410 +3180,412 @@ luaTimingAdd = scalar, F32, 944, "deg", 1, 0
|
||||||
luaTimingMult = scalar, F32, 948, "deg", 1, 0
|
luaTimingMult = scalar, F32, 948, "deg", 1, 0
|
||||||
luaIgnitionSkip = bits, U32, 952, [0:0]
|
luaIgnitionSkip = bits, U32, 952, [0:0]
|
||||||
; total TS size = 956
|
; total TS size = 956
|
||||||
m_knockLevel = scalar, F32, 956, "Volts", 1, 0
|
m_isPriming = bits, U32, 956, [0:0]
|
||||||
m_knockCyl1 = scalar, S08, 960, "dBv", 1, 0
|
; total TS size = 960
|
||||||
m_knockCyl2 = scalar, S08, 961, "dBv", 1, 0
|
m_knockLevel = scalar, F32, 960, "Volts", 1, 0
|
||||||
m_knockCyl3 = scalar, S08, 962, "dBv", 1, 0
|
m_knockCyl1 = scalar, S08, 964, "dBv", 1, 0
|
||||||
m_knockCyl4 = scalar, S08, 963, "dBv", 1, 0
|
m_knockCyl2 = scalar, S08, 965, "dBv", 1, 0
|
||||||
m_knockCyl5 = scalar, S08, 964, "dBv", 1, 0
|
m_knockCyl3 = scalar, S08, 966, "dBv", 1, 0
|
||||||
m_knockCyl6 = scalar, S08, 965, "dBv", 1, 0
|
m_knockCyl4 = scalar, S08, 967, "dBv", 1, 0
|
||||||
m_knockCyl7 = scalar, S08, 966, "dBv", 1, 0
|
m_knockCyl5 = scalar, S08, 968, "dBv", 1, 0
|
||||||
m_knockCyl8 = scalar, S08, 967, "dBv", 1, 0
|
m_knockCyl6 = scalar, S08, 969, "dBv", 1, 0
|
||||||
m_knockCyl9 = scalar, S08, 968, "dBv", 1, 0
|
m_knockCyl7 = scalar, S08, 970, "dBv", 1, 0
|
||||||
m_knockCyl10 = scalar, S08, 969, "dBv", 1, 0
|
m_knockCyl8 = scalar, S08, 971, "dBv", 1, 0
|
||||||
m_knockCyl11 = scalar, S08, 970, "dBv", 1, 0
|
m_knockCyl9 = scalar, S08, 972, "dBv", 1, 0
|
||||||
m_knockCyl12 = scalar, S08, 971, "dBv", 1, 0
|
m_knockCyl10 = scalar, S08, 973, "dBv", 1, 0
|
||||||
m_knockRetard = scalar, F32, 972, "deg", 1,0
|
m_knockCyl11 = scalar, S08, 974, "dBv", 1, 0
|
||||||
m_knockThreshold = scalar, F32, 976, "", 1, 0
|
m_knockCyl12 = scalar, S08, 975, "dBv", 1, 0
|
||||||
m_knockCount = scalar, U32, 980, "", 1, 0
|
m_knockRetard = scalar, F32, 976, "deg", 1,0
|
||||||
m_maximumRetard = scalar, F32, 984, "", 1, 0
|
m_knockThreshold = scalar, F32, 980, "", 1, 0
|
||||||
m_knockSpectrum1 = scalar, U32, 988, "compressed data", 1, 0
|
m_knockCount = scalar, U32, 984, "", 1, 0
|
||||||
m_knockSpectrum2 = scalar, U32, 992, "compressed data", 1, 0
|
m_maximumRetard = scalar, F32, 988, "", 1, 0
|
||||||
m_knockSpectrum3 = scalar, U32, 996, "compressed data", 1, 0
|
m_knockSpectrum1 = scalar, U32, 992, "compressed data", 1, 0
|
||||||
m_knockSpectrum4 = scalar, U32, 1000, "compressed data", 1, 0
|
m_knockSpectrum2 = scalar, U32, 996, "compressed data", 1, 0
|
||||||
m_knockSpectrum5 = scalar, U32, 1004, "compressed data", 1, 0
|
m_knockSpectrum3 = scalar, U32, 1000, "compressed data", 1, 0
|
||||||
m_knockSpectrum6 = scalar, U32, 1008, "compressed data", 1, 0
|
m_knockSpectrum4 = scalar, U32, 1004, "compressed data", 1, 0
|
||||||
m_knockSpectrum7 = scalar, U32, 1012, "compressed data", 1, 0
|
m_knockSpectrum5 = scalar, U32, 1008, "compressed data", 1, 0
|
||||||
m_knockSpectrum8 = scalar, U32, 1016, "compressed data", 1, 0
|
m_knockSpectrum6 = scalar, U32, 1012, "compressed data", 1, 0
|
||||||
m_knockSpectrum9 = scalar, U32, 1020, "compressed data", 1, 0
|
m_knockSpectrum7 = scalar, U32, 1016, "compressed data", 1, 0
|
||||||
m_knockSpectrum10 = scalar, U32, 1024, "compressed data", 1, 0
|
m_knockSpectrum8 = scalar, U32, 1020, "compressed data", 1, 0
|
||||||
m_knockSpectrum11 = scalar, U32, 1028, "compressed data", 1, 0
|
m_knockSpectrum9 = scalar, U32, 1024, "compressed data", 1, 0
|
||||||
m_knockSpectrum12 = scalar, U32, 1032, "compressed data", 1, 0
|
m_knockSpectrum10 = scalar, U32, 1028, "compressed data", 1, 0
|
||||||
m_knockSpectrum13 = scalar, U32, 1036, "compressed data", 1, 0
|
m_knockSpectrum11 = scalar, U32, 1032, "compressed data", 1, 0
|
||||||
m_knockSpectrum14 = scalar, U32, 1040, "compressed data", 1, 0
|
m_knockSpectrum12 = scalar, U32, 1036, "compressed data", 1, 0
|
||||||
m_knockSpectrum15 = scalar, U32, 1044, "compressed data", 1, 0
|
m_knockSpectrum13 = scalar, U32, 1040, "compressed data", 1, 0
|
||||||
m_knockSpectrum16 = scalar, U32, 1048, "compressed data", 1, 0
|
m_knockSpectrum14 = scalar, U32, 1044, "compressed data", 1, 0
|
||||||
m_knockSpectrumChannelCyl = scalar, U16, 1052, "compressed N + N", 1, 0
|
m_knockSpectrum15 = scalar, U32, 1048, "compressed data", 1, 0
|
||||||
m_knockFrequencyStart = scalar, U16, 1054, "Hz", 1, 0
|
m_knockSpectrum16 = scalar, U32, 1052, "compressed data", 1, 0
|
||||||
m_knockFrequencyStep = scalar, F32, 1056, "Hz", 1, 0
|
m_knockSpectrumChannelCyl = scalar, U16, 1056, "compressed N + N", 1, 0
|
||||||
m_knockFuelTrimMultiplier = scalar, F32, 1060, "multiplier", 1, 0
|
m_knockFrequencyStart = scalar, U16, 1058, "Hz", 1, 0
|
||||||
; total TS size = 1064
|
m_knockFrequencyStep = scalar, F32, 1060, "Hz", 1, 0
|
||||||
tcuCurrentGear = scalar, S08, 1064, "gear", 1, 0
|
m_knockFuelTrimMultiplier = scalar, F32, 1064, "multiplier", 1, 0
|
||||||
tcRatio = scalar, U16, 1066, "value", 0.01, 0
|
; total TS size = 1068
|
||||||
lastShiftTime = scalar, F32, 1068, "", 1, 0
|
tcuCurrentGear = scalar, S08, 1068, "gear", 1, 0
|
||||||
tcu_currentRange = scalar, U08, 1072, "", 1, 0
|
tcRatio = scalar, U16, 1070, "value", 0.01, 0
|
||||||
pressureControlDuty = scalar, S08, 1073, "%", 1,0
|
lastShiftTime = scalar, F32, 1072, "", 1, 0
|
||||||
torqueConverterDuty = scalar, S08, 1074, "%", 1,0
|
tcu_currentRange = scalar, U08, 1076, "", 1, 0
|
||||||
isShifting = bits, U32, 1076, [0:0]
|
pressureControlDuty = scalar, S08, 1077, "%", 1,0
|
||||||
; total TS size = 1080
|
torqueConverterDuty = scalar, S08, 1078, "%", 1,0
|
||||||
throttleUseWotModel = bits, U32, 1080, [0:0]
|
isShifting = bits, U32, 1080, [0:0]
|
||||||
throttleModelCrossoverAngle = scalar, S16, 1084, "%", 0.01, 0
|
; total TS size = 1084
|
||||||
throttleEstimatedFlow = scalar, F32, 1088, "g/s", 1, 0
|
throttleUseWotModel = bits, U32, 1084, [0:0]
|
||||||
; total TS size = 1092
|
throttleModelCrossoverAngle = scalar, S16, 1088, "%", 0.01, 0
|
||||||
m_requested_pump = scalar, F32, 1092, "", 1, 0
|
throttleEstimatedFlow = scalar, F32, 1092, "g/s", 1, 0
|
||||||
fuel_requested_percent = scalar, F32, 1096, "", 1, 0
|
; total TS size = 1096
|
||||||
fuel_requested_percent_pi = scalar, F32, 1100, "", 1, 0
|
m_requested_pump = scalar, F32, 1096, "", 1, 0
|
||||||
noValve = bits, U32, 1104, [0:0]
|
fuel_requested_percent = scalar, F32, 1100, "", 1, 0
|
||||||
angleAboveMin = bits, U32, 1104, [1:1]
|
fuel_requested_percent_pi = scalar, F32, 1104, "", 1, 0
|
||||||
isHpfpInactive = bits, U32, 1104, [2:2]
|
noValve = bits, U32, 1108, [0:0]
|
||||||
m_pressureTarget_kPa = scalar, F32, 1108, "", 1, 0
|
angleAboveMin = bits, U32, 1108, [1:1]
|
||||||
nextLobe = scalar, F32, 1112, "", 1, 0
|
isHpfpInactive = bits, U32, 1108, [2:2]
|
||||||
di_nextStart = scalar, F32, 1116, "v", 1, 0
|
m_pressureTarget_kPa = scalar, F32, 1112, "", 1, 0
|
||||||
; total TS size = 1120
|
nextLobe = scalar, F32, 1116, "", 1, 0
|
||||||
m_deadtime = scalar, F32, 1120, "ms", 1, 0
|
di_nextStart = scalar, F32, 1120, "v", 1, 0
|
||||||
pressureDelta = scalar, F32, 1124, "kPa", 1, 0
|
; total TS size = 1124
|
||||||
pressureRatio = scalar, F32, 1128, "", 1, 0
|
m_deadtime = scalar, F32, 1124, "ms", 1, 0
|
||||||
; total TS size = 1132
|
pressureDelta = scalar, F32, 1128, "kPa", 1, 0
|
||||||
retardThresholdRpm = scalar, S32, 1132, "", 1, 0
|
pressureRatio = scalar, F32, 1132, "", 1, 0
|
||||||
launchActivatePinState = bits, U32, 1136, [0:0]
|
; total TS size = 1136
|
||||||
isPreLaunchCondition = bits, U32, 1136, [1:1]
|
retardThresholdRpm = scalar, S32, 1136, "", 1, 0
|
||||||
isLaunchCondition = bits, U32, 1136, [2:2]
|
launchActivatePinState = bits, U32, 1140, [0:0]
|
||||||
isSwitchActivated = bits, U32, 1136, [3:3]
|
isPreLaunchCondition = bits, U32, 1140, [1:1]
|
||||||
isClutchActivated = bits, U32, 1136, [4:4]
|
isLaunchCondition = bits, U32, 1140, [2:2]
|
||||||
isBrakePedalActivated = bits, U32, 1136, [5:5]
|
isSwitchActivated = bits, U32, 1140, [3:3]
|
||||||
isValidInputPin = bits, U32, 1136, [6:6]
|
isClutchActivated = bits, U32, 1140, [4:4]
|
||||||
activateSwitchCondition = bits, U32, 1136, [7:7]
|
isBrakePedalActivated = bits, U32, 1140, [5:5]
|
||||||
rpmLaunchCondition = bits, U32, 1136, [8:8]
|
isValidInputPin = bits, U32, 1140, [6:6]
|
||||||
rpmPreLaunchCondition = bits, U32, 1136, [9:9]
|
activateSwitchCondition = bits, U32, 1140, [7:7]
|
||||||
speedCondition = bits, U32, 1136, [10:10]
|
rpmLaunchCondition = bits, U32, 1140, [8:8]
|
||||||
tpsCondition = bits, U32, 1136, [11:11]
|
rpmPreLaunchCondition = bits, U32, 1140, [9:9]
|
||||||
; total TS size = 1140
|
speedCondition = bits, U32, 1140, [10:10]
|
||||||
isTorqueReductionTriggerPinValid = bits, U32, 1140, [0:0]
|
tpsCondition = bits, U32, 1140, [11:11]
|
||||||
torqueReductionTriggerPinState = bits, U32, 1140, [1:1]
|
|
||||||
isTimeConditionSatisfied = bits, U32, 1140, [2:2]
|
|
||||||
isRpmConditionSatisfied = bits, U32, 1140, [3:3]
|
|
||||||
isAppConditionSatisfied = bits, U32, 1140, [4:4]
|
|
||||||
isFlatShiftConditionSatisfied = bits, U32, 1140, [5:5]
|
|
||||||
; total TS size = 1144
|
; total TS size = 1144
|
||||||
isAntilagCondition = bits, U32, 1144, [0:0]
|
isTorqueReductionTriggerPinValid = bits, U32, 1144, [0:0]
|
||||||
ALSMinRPMCondition = bits, U32, 1144, [1:1]
|
torqueReductionTriggerPinState = bits, U32, 1144, [1:1]
|
||||||
ALSMaxRPMCondition = bits, U32, 1144, [2:2]
|
isTimeConditionSatisfied = bits, U32, 1144, [2:2]
|
||||||
ALSMinCLTCondition = bits, U32, 1144, [3:3]
|
isRpmConditionSatisfied = bits, U32, 1144, [3:3]
|
||||||
ALSMaxCLTCondition = bits, U32, 1144, [4:4]
|
isAppConditionSatisfied = bits, U32, 1144, [4:4]
|
||||||
ALSMaxThrottleIntentCondition = bits, U32, 1144, [5:5]
|
isFlatShiftConditionSatisfied = bits, U32, 1144, [5:5]
|
||||||
isALSSwitchActivated = bits, U32, 1144, [6:6]
|
; total TS size = 1148
|
||||||
ALSActivatePinState = bits, U32, 1144, [7:7]
|
isAntilagCondition = bits, U32, 1148, [0:0]
|
||||||
ALSSwitchCondition = bits, U32, 1144, [8:8]
|
ALSMinRPMCondition = bits, U32, 1148, [1:1]
|
||||||
ALSTimerCondition = bits, U32, 1144, [9:9]
|
ALSMaxRPMCondition = bits, U32, 1148, [2:2]
|
||||||
fuelALSCorrection = scalar, F32, 1148, "", 1, 0
|
ALSMinCLTCondition = bits, U32, 1148, [3:3]
|
||||||
timingALSCorrection = scalar, S16, 1152, "deg", 0.01, 0
|
ALSMaxCLTCondition = bits, U32, 1148, [4:4]
|
||||||
timingALSSkip = scalar, S16, 1154, "deg", 0.01, 0
|
ALSMaxThrottleIntentCondition = bits, U32, 1148, [5:5]
|
||||||
; total TS size = 1156
|
isALSSwitchActivated = bits, U32, 1148, [6:6]
|
||||||
isTpsInvalid = bits, U32, 1156, [0:0]
|
ALSActivatePinState = bits, U32, 1148, [7:7]
|
||||||
m_shouldResetPid = bits, U32, 1156, [1:1]
|
ALSSwitchCondition = bits, U32, 1148, [8:8]
|
||||||
isBelowClosedLoopThreshold = bits, U32, 1156, [2:2]
|
ALSTimerCondition = bits, U32, 1148, [9:9]
|
||||||
isNotClosedLoop = bits, U32, 1156, [3:3]
|
fuelALSCorrection = scalar, F32, 1152, "", 1, 0
|
||||||
isZeroRpm = bits, U32, 1156, [4:4]
|
timingALSCorrection = scalar, S16, 1156, "deg", 0.01, 0
|
||||||
hasInitBoost = bits, U32, 1156, [5:5]
|
timingALSSkip = scalar, S16, 1158, "deg", 0.01, 0
|
||||||
rpmTooLow = bits, U32, 1156, [6:6]
|
; total TS size = 1160
|
||||||
tpsTooLow = bits, U32, 1156, [7:7]
|
isTpsInvalid = bits, U32, 1160, [0:0]
|
||||||
mapTooLow = bits, U32, 1156, [8:8]
|
m_shouldResetPid = bits, U32, 1160, [1:1]
|
||||||
isPlantValid = bits, U32, 1156, [9:9]
|
isBelowClosedLoopThreshold = bits, U32, 1160, [2:2]
|
||||||
isBoostControlled = bits, U32, 1156, [10:10]
|
isNotClosedLoop = bits, U32, 1160, [3:3]
|
||||||
luaTargetAdd = scalar, S16, 1160, "v", 0.5,0
|
isZeroRpm = bits, U32, 1160, [4:4]
|
||||||
boostOutput = scalar, S16, 1162, "percent", 0.01,0
|
hasInitBoost = bits, U32, 1160, [5:5]
|
||||||
luaTargetMult = scalar, F32, 1164, "v", 1,0
|
rpmTooLow = bits, U32, 1160, [6:6]
|
||||||
openLoopPart = scalar, F32, 1168, "v", 1,0
|
tpsTooLow = bits, U32, 1160, [7:7]
|
||||||
luaOpenLoopAdd = scalar, F32, 1172, "v", 1,0
|
mapTooLow = bits, U32, 1160, [8:8]
|
||||||
boostControllerClosedLoopPart = scalar, S08, 1176, "%", 0.5,0
|
isPlantValid = bits, U32, 1160, [9:9]
|
||||||
boostControlTarget = scalar, S16, 1178, "kPa", 0.03333333333333333,0
|
isBoostControlled = bits, U32, 1160, [10:10]
|
||||||
; total TS size = 1180
|
luaTargetAdd = scalar, S16, 1164, "v", 0.5,0
|
||||||
acButtonState = scalar, S08, 1180, "", 1, 0
|
boostOutput = scalar, S16, 1166, "percent", 0.01,0
|
||||||
m_acEnabled = bits, U32, 1184, [0:0]
|
luaTargetMult = scalar, F32, 1168, "v", 1,0
|
||||||
engineTooSlow = bits, U32, 1184, [1:1]
|
openLoopPart = scalar, F32, 1172, "v", 1,0
|
||||||
engineTooFast = bits, U32, 1184, [2:2]
|
luaOpenLoopAdd = scalar, F32, 1176, "v", 1,0
|
||||||
noClt = bits, U32, 1184, [3:3]
|
boostControllerClosedLoopPart = scalar, S08, 1180, "%", 0.5,0
|
||||||
engineTooHot = bits, U32, 1184, [4:4]
|
boostControlTarget = scalar, S16, 1182, "kPa", 0.03333333333333333,0
|
||||||
tpsTooHigh = bits, U32, 1184, [5:5]
|
; total TS size = 1184
|
||||||
isDisabledByLua = bits, U32, 1184, [6:6]
|
acButtonState = scalar, S08, 1184, "", 1, 0
|
||||||
acCompressorState = bits, U32, 1184, [7:7]
|
m_acEnabled = bits, U32, 1188, [0:0]
|
||||||
acPressureTooLow = bits, U32, 1184, [8:8]
|
engineTooSlow = bits, U32, 1188, [1:1]
|
||||||
acPressureTooHigh = bits, U32, 1184, [9:9]
|
engineTooFast = bits, U32, 1188, [2:2]
|
||||||
; total TS size = 1188
|
noClt = bits, U32, 1188, [3:3]
|
||||||
isNitrousArmed = bits, U32, 1188, [0:0]
|
engineTooHot = bits, U32, 1188, [4:4]
|
||||||
isNitrousSpeedCondition = bits, U32, 1188, [1:1]
|
tpsTooHigh = bits, U32, 1188, [5:5]
|
||||||
isNitrousTpsCondition = bits, U32, 1188, [2:2]
|
isDisabledByLua = bits, U32, 1188, [6:6]
|
||||||
isNitrousCltCondition = bits, U32, 1188, [3:3]
|
acCompressorState = bits, U32, 1188, [7:7]
|
||||||
isNitrousMapCondition = bits, U32, 1188, [4:4]
|
acPressureTooLow = bits, U32, 1188, [8:8]
|
||||||
isNitrousAfrCondition = bits, U32, 1188, [5:5]
|
acPressureTooHigh = bits, U32, 1188, [9:9]
|
||||||
isNitrousRpmCondition = bits, U32, 1188, [6:6]
|
|
||||||
isNitrousCondition = bits, U32, 1188, [7:7]
|
|
||||||
; total TS size = 1192
|
; total TS size = 1192
|
||||||
cranking0 = bits, U32, 1192, [0:0]
|
isNitrousArmed = bits, U32, 1192, [0:0]
|
||||||
notRunning0 = bits, U32, 1192, [1:1]
|
isNitrousSpeedCondition = bits, U32, 1192, [1:1]
|
||||||
disabledWhileEngineStopped0 = bits, U32, 1192, [2:2]
|
isNitrousTpsCondition = bits, U32, 1192, [2:2]
|
||||||
brokenClt0 = bits, U32, 1192, [3:3]
|
isNitrousCltCondition = bits, U32, 1192, [3:3]
|
||||||
enabledForAc0 = bits, U32, 1192, [4:4]
|
isNitrousMapCondition = bits, U32, 1192, [4:4]
|
||||||
hot0 = bits, U32, 1192, [5:5]
|
isNitrousAfrCondition = bits, U32, 1192, [5:5]
|
||||||
cold0 = bits, U32, 1192, [6:6]
|
isNitrousRpmCondition = bits, U32, 1192, [6:6]
|
||||||
disabledBySpeed0 = bits, U32, 1192, [7:7]
|
isNitrousCondition = bits, U32, 1192, [7:7]
|
||||||
radiatorFanStatus0 = scalar, U08, 1196, "", 1, 0
|
; total TS size = 1196
|
||||||
; total TS size = 1200
|
cranking0 = bits, U32, 1196, [0:0]
|
||||||
cranking1 = bits, U32, 1200, [0:0]
|
notRunning0 = bits, U32, 1196, [1:1]
|
||||||
notRunning1 = bits, U32, 1200, [1:1]
|
disabledWhileEngineStopped0 = bits, U32, 1196, [2:2]
|
||||||
disabledWhileEngineStopped1 = bits, U32, 1200, [2:2]
|
brokenClt0 = bits, U32, 1196, [3:3]
|
||||||
brokenClt1 = bits, U32, 1200, [3:3]
|
enabledForAc0 = bits, U32, 1196, [4:4]
|
||||||
enabledForAc1 = bits, U32, 1200, [4:4]
|
hot0 = bits, U32, 1196, [5:5]
|
||||||
hot1 = bits, U32, 1200, [5:5]
|
cold0 = bits, U32, 1196, [6:6]
|
||||||
cold1 = bits, U32, 1200, [6:6]
|
disabledBySpeed0 = bits, U32, 1196, [7:7]
|
||||||
disabledBySpeed1 = bits, U32, 1200, [7:7]
|
radiatorFanStatus0 = scalar, U08, 1200, "", 1, 0
|
||||||
radiatorFanStatus1 = scalar, U08, 1204, "", 1, 0
|
; total TS size = 1204
|
||||||
; total TS size = 1208
|
cranking1 = bits, U32, 1204, [0:0]
|
||||||
isPrime = bits, U32, 1208, [0:0]
|
notRunning1 = bits, U32, 1204, [1:1]
|
||||||
engineTurnedRecently = bits, U32, 1208, [1:1]
|
disabledWhileEngineStopped1 = bits, U32, 1204, [2:2]
|
||||||
isFuelPumpOn = bits, U32, 1208, [2:2]
|
brokenClt1 = bits, U32, 1204, [3:3]
|
||||||
ignitionOn = bits, U32, 1208, [3:3]
|
enabledForAc1 = bits, U32, 1204, [4:4]
|
||||||
|
hot1 = bits, U32, 1204, [5:5]
|
||||||
|
cold1 = bits, U32, 1204, [6:6]
|
||||||
|
disabledBySpeed1 = bits, U32, 1204, [7:7]
|
||||||
|
radiatorFanStatus1 = scalar, U08, 1208, "", 1, 0
|
||||||
; total TS size = 1212
|
; total TS size = 1212
|
||||||
isBenchTest = bits, U32, 1212, [0:0]
|
isPrime = bits, U32, 1212, [0:0]
|
||||||
hasIgnitionVoltage = bits, U32, 1212, [1:1]
|
engineTurnedRecently = bits, U32, 1212, [1:1]
|
||||||
mainRelayState = bits, U32, 1212, [2:2]
|
isFuelPumpOn = bits, U32, 1212, [2:2]
|
||||||
delayedShutoffRequested = bits, U32, 1212, [3:3]
|
ignitionOn = bits, U32, 1212, [3:3]
|
||||||
; total TS size = 1216
|
; total TS size = 1216
|
||||||
lua_fuelAdd = scalar, F32, 1216, "g", 1, 0
|
isBenchTest = bits, U32, 1216, [0:0]
|
||||||
lua_fuelMult = scalar, F32, 1220, "", 1, 0
|
hasIgnitionVoltage = bits, U32, 1216, [1:1]
|
||||||
lua_clutchUpState = bits, U32, 1224, [0:0]
|
mainRelayState = bits, U32, 1216, [2:2]
|
||||||
lua_brakePedalState = bits, U32, 1224, [1:1]
|
delayedShutoffRequested = bits, U32, 1216, [3:3]
|
||||||
lua_acRequestState = bits, U32, 1224, [2:2]
|
; total TS size = 1220
|
||||||
lua_luaDisableEtb = bits, U32, 1224, [3:3]
|
lua_fuelAdd = scalar, F32, 1220, "g", 1, 0
|
||||||
lua_luaIgnCut = bits, U32, 1224, [4:4]
|
lua_fuelMult = scalar, F32, 1224, "", 1, 0
|
||||||
lua_luaFuelCut = bits, U32, 1224, [5:5]
|
lua_clutchUpState = bits, U32, 1228, [0:0]
|
||||||
lua_clutchDownState = bits, U32, 1224, [6:6]
|
lua_brakePedalState = bits, U32, 1228, [1:1]
|
||||||
lua_disableDecelerationFuelCutOff = bits, U32, 1224, [7:7]
|
lua_acRequestState = bits, U32, 1228, [2:2]
|
||||||
lua_torqueReductionState = bits, U32, 1224, [8:8]
|
lua_luaDisableEtb = bits, U32, 1228, [3:3]
|
||||||
sd_tCharge = scalar, S16, 1228, "deg C", 0.01, 0
|
lua_luaIgnCut = bits, U32, 1228, [4:4]
|
||||||
sd_tChargeK = scalar, F32, 1232, "", 1, 0
|
lua_luaFuelCut = bits, U32, 1228, [5:5]
|
||||||
crankingFuel_coolantTemperatureCoefficient = scalar, F32, 1236, "", 1, 0
|
lua_clutchDownState = bits, U32, 1228, [6:6]
|
||||||
crankingFuel_tpsCoefficient = scalar, F32, 1240, "", 1, 0
|
lua_disableDecelerationFuelCutOff = bits, U32, 1228, [7:7]
|
||||||
crankingFuel_durationCoefficient = scalar, F32, 1244, "", 1, 0
|
lua_torqueReductionState = bits, U32, 1228, [8:8]
|
||||||
crankingFuel_fuel = scalar, U16, 1248, "mg", 0.01, 0
|
sd_tCharge = scalar, S16, 1232, "deg C", 0.01, 0
|
||||||
baroCorrection = scalar, F32, 1252, "", 1, 0
|
sd_tChargeK = scalar, F32, 1236, "", 1, 0
|
||||||
hellenBoardId = scalar, S16, 1256, "id", 1, 0
|
crankingFuel_coolantTemperatureCoefficient = scalar, F32, 1240, "", 1, 0
|
||||||
clutchUpState = scalar, S08, 1258, "", 1, 0
|
crankingFuel_tpsCoefficient = scalar, F32, 1244, "", 1, 0
|
||||||
clutchDownState = scalar, S08, 1259, "", 1, 0
|
crankingFuel_durationCoefficient = scalar, F32, 1248, "", 1, 0
|
||||||
brakePedalState = scalar, S08, 1260, "", 1, 0
|
crankingFuel_fuel = scalar, U16, 1252, "mg", 0.01, 0
|
||||||
startStopState = scalar, S08, 1261, "", 1, 0
|
baroCorrection = scalar, F32, 1256, "", 1, 0
|
||||||
smartChipState = scalar, S08, 1262, "", 1, 0
|
hellenBoardId = scalar, S16, 1260, "id", 1, 0
|
||||||
smartChipRestartCounter = scalar, S08, 1263, "", 1, 0
|
clutchUpState = scalar, S08, 1262, "", 1, 0
|
||||||
smartChipAliveCounter = scalar, S08, 1264, "", 1, 0
|
clutchDownState = scalar, S08, 1263, "", 1, 0
|
||||||
startStopPhysicalState = bits, U32, 1268, [0:0]
|
brakePedalState = scalar, S08, 1264, "", 1, 0
|
||||||
acrActive = bits, U32, 1268, [1:1]
|
startStopState = scalar, S08, 1265, "", 1, 0
|
||||||
acrEngineMovedRecently = bits, U32, 1268, [2:2]
|
smartChipState = scalar, S08, 1266, "", 1, 0
|
||||||
heaterControlEnabled = bits, U32, 1268, [3:3]
|
smartChipRestartCounter = scalar, S08, 1267, "", 1, 0
|
||||||
luaDigitalState0 = bits, U32, 1268, [4:4]
|
smartChipAliveCounter = scalar, S08, 1268, "", 1, 0
|
||||||
luaDigitalState1 = bits, U32, 1268, [5:5]
|
startStopPhysicalState = bits, U32, 1272, [0:0]
|
||||||
luaDigitalState2 = bits, U32, 1268, [6:6]
|
acrActive = bits, U32, 1272, [1:1]
|
||||||
luaDigitalState3 = bits, U32, 1268, [7:7]
|
acrEngineMovedRecently = bits, U32, 1272, [2:2]
|
||||||
startStopStateToggleCounter = scalar, U32, 1272, "", 1, 0
|
heaterControlEnabled = bits, U32, 1272, [3:3]
|
||||||
luaSoftSparkSkip = scalar, F32, 1276, "", 1, 0
|
luaDigitalState0 = bits, U32, 1272, [4:4]
|
||||||
luaHardSparkSkip = scalar, F32, 1280, "", 1, 0
|
luaDigitalState1 = bits, U32, 1272, [5:5]
|
||||||
tractionControlSparkSkip = scalar, F32, 1284, "", 1, 0
|
luaDigitalState2 = bits, U32, 1272, [6:6]
|
||||||
desiredRpmLimit = scalar, S16, 1288, "rpm", 1, 0
|
luaDigitalState3 = bits, U32, 1272, [7:7]
|
||||||
fuelInjectionCounter = scalar, U32, 1292, "", 1, 0
|
startStopStateToggleCounter = scalar, U32, 1276, "", 1, 0
|
||||||
globalSparkCounter = scalar, U32, 1296, "", 1, 0
|
luaSoftSparkSkip = scalar, F32, 1280, "", 1, 0
|
||||||
fuelingLoad = scalar, F32, 1300, "", 1, 0
|
luaHardSparkSkip = scalar, F32, 1284, "", 1, 0
|
||||||
ignitionLoad = scalar, F32, 1304, "", 1, 0
|
tractionControlSparkSkip = scalar, F32, 1288, "", 1, 0
|
||||||
veTableYAxis = scalar, U16, 1308, "%", 0.01, 0
|
desiredRpmLimit = scalar, S16, 1292, "rpm", 1, 0
|
||||||
overDwellCounter = scalar, U08, 1310, "", 1, 0
|
fuelInjectionCounter = scalar, U32, 1296, "", 1, 0
|
||||||
overDwellNotScheduledCounter = scalar, U08, 1311, "", 1, 0
|
globalSparkCounter = scalar, U32, 1300, "", 1, 0
|
||||||
sparkOutOfOrderCounter = scalar, U08, 1312, "", 1, 0
|
fuelingLoad = scalar, F32, 1304, "", 1, 0
|
||||||
; total TS size = 1316
|
ignitionLoad = scalar, F32, 1308, "", 1, 0
|
||||||
tpsFrom = scalar, F32, 1316
|
veTableYAxis = scalar, U16, 1312, "%", 0.01, 0
|
||||||
tpsTo = scalar, F32, 1320
|
overDwellCounter = scalar, U08, 1314, "", 1, 0
|
||||||
deltaTps = scalar, F32, 1324
|
overDwellNotScheduledCounter = scalar, U08, 1315, "", 1, 0
|
||||||
extraFuel = scalar, F32, 1328, "", 1, 0
|
sparkOutOfOrderCounter = scalar, U08, 1316, "", 1, 0
|
||||||
valueFromTable = scalar, F32, 1332, "", 1, 0
|
; total TS size = 1320
|
||||||
isAboveAccelThreshold = bits, U32, 1336, [0:0]
|
tpsFrom = scalar, F32, 1320
|
||||||
isBelowDecelThreshold = bits, U32, 1336, [1:1]
|
tpsTo = scalar, F32, 1324
|
||||||
isTimeToResetAccumulator = bits, U32, 1336, [2:2]
|
deltaTps = scalar, F32, 1328
|
||||||
isFractionalEnrichment = bits, U32, 1336, [3:3]
|
extraFuel = scalar, F32, 1332, "", 1, 0
|
||||||
belowEpsilon = bits, U32, 1336, [4:4]
|
valueFromTable = scalar, F32, 1336, "", 1, 0
|
||||||
tooShort = bits, U32, 1336, [5:5]
|
isAboveAccelThreshold = bits, U32, 1340, [0:0]
|
||||||
fractionalInjFuel = scalar, F32, 1340, "", 1, 0
|
isBelowDecelThreshold = bits, U32, 1340, [1:1]
|
||||||
accumulatedValue = scalar, F32, 1344, "", 1, 0
|
isTimeToResetAccumulator = bits, U32, 1340, [2:2]
|
||||||
maxExtraPerCycle = scalar, F32, 1348, "", 1, 0
|
isFractionalEnrichment = bits, U32, 1340, [3:3]
|
||||||
maxExtraPerPeriod = scalar, F32, 1352, "", 1, 0
|
belowEpsilon = bits, U32, 1340, [4:4]
|
||||||
maxInjectedPerPeriod = scalar, F32, 1356, "", 1, 0
|
tooShort = bits, U32, 1340, [5:5]
|
||||||
cycleCnt = scalar, S32, 1360, "", 1, 0
|
fractionalInjFuel = scalar, F32, 1344, "", 1, 0
|
||||||
; total TS size = 1364
|
accumulatedValue = scalar, F32, 1348, "", 1, 0
|
||||||
hwEventCounters1 = scalar, U16, 1364, "", 1, 0
|
maxExtraPerCycle = scalar, F32, 1352, "", 1, 0
|
||||||
hwEventCounters2 = scalar, U16, 1366, "", 1, 0
|
maxExtraPerPeriod = scalar, F32, 1356, "", 1, 0
|
||||||
hwEventCounters3 = scalar, U16, 1368, "", 1, 0
|
maxInjectedPerPeriod = scalar, F32, 1360, "", 1, 0
|
||||||
hwEventCounters4 = scalar, U16, 1370, "", 1, 0
|
cycleCnt = scalar, S32, 1364, "", 1, 0
|
||||||
vvtCamCounter = scalar, U16, 1372, "", 1, 0
|
; total TS size = 1368
|
||||||
mapVvt_MAP_AT_SPECIAL_POINT = scalar, F32, 1376, "kPa", 1, 0
|
hwEventCounters1 = scalar, U16, 1368, "", 1, 0
|
||||||
mapVvt_MAP_AT_DIFF = scalar, F32, 1380, "kPa", 1, 0
|
hwEventCounters2 = scalar, U16, 1370, "", 1, 0
|
||||||
mapVvt_MAP_AT_CYCLE_COUNT = scalar, S08, 1384, "distance", 1, 0
|
hwEventCounters3 = scalar, U16, 1372, "", 1, 0
|
||||||
mapVvt_sync_counter = scalar, U08, 1385, "counter", 1, 0
|
hwEventCounters4 = scalar, U16, 1374, "", 1, 0
|
||||||
currentEngineDecodedPhase = scalar, F32, 1388, "deg", 1, 0
|
vvtCamCounter = scalar, U16, 1376, "", 1, 0
|
||||||
triggerToothAngleError = scalar, F32, 1392, "deg", 1, 0
|
mapVvt_MAP_AT_SPECIAL_POINT = scalar, F32, 1380, "kPa", 1, 0
|
||||||
triggerIgnoredToothCount = scalar, U08, 1396, "", 1, 0
|
mapVvt_MAP_AT_DIFF = scalar, F32, 1384, "kPa", 1, 0
|
||||||
mapCamPrevToothAngle = scalar, F32, 1400, "deg", 1, 0
|
mapVvt_MAP_AT_CYCLE_COUNT = scalar, S08, 1388, "distance", 1, 0
|
||||||
isDecodingMapCam = bits, U32, 1404, [0:0]
|
mapVvt_sync_counter = scalar, U08, 1389, "counter", 1, 0
|
||||||
triggerElapsedUs = scalar, U32, 1408, "", 1, 0
|
currentEngineDecodedPhase = scalar, F32, 1392, "deg", 1, 0
|
||||||
; total TS size = 1412
|
triggerToothAngleError = scalar, F32, 1396, "deg", 1, 0
|
||||||
synchronizationCounter0 = scalar, U32, 1412, "", 1, 0
|
triggerIgnoredToothCount = scalar, U08, 1400, "", 1, 0
|
||||||
vvtToothDurations00 = scalar, U32, 1416, "us", 1, 0
|
mapCamPrevToothAngle = scalar, F32, 1404, "deg", 1, 0
|
||||||
vvtCurrentPosition0 = scalar, F32, 1420, "", 1, 0
|
isDecodingMapCam = bits, U32, 1408, [0:0]
|
||||||
vvtToothPosition10 = scalar, F32, 1424, "", 1, 0
|
triggerElapsedUs = scalar, U32, 1412, "", 1, 0
|
||||||
vvtToothPosition20 = scalar, F32, 1428, "", 1, 0
|
; total TS size = 1416
|
||||||
vvtToothPosition30 = scalar, F32, 1432, "", 1, 0
|
synchronizationCounter0 = scalar, U32, 1416, "", 1, 0
|
||||||
vvtToothPosition40 = scalar, F32, 1436, "", 1, 0
|
vvtToothDurations00 = scalar, U32, 1420, "us", 1, 0
|
||||||
triggerSyncGapRatio0 = scalar, F32, 1440, "", 1, 0
|
vvtCurrentPosition0 = scalar, F32, 1424, "", 1, 0
|
||||||
triggerStateIndex0 = scalar, U08, 1444, "", 1, 0
|
vvtToothPosition10 = scalar, F32, 1428, "", 1, 0
|
||||||
; total TS size = 1448
|
vvtToothPosition20 = scalar, F32, 1432, "", 1, 0
|
||||||
synchronizationCounter1 = scalar, U32, 1448, "", 1, 0
|
vvtToothPosition30 = scalar, F32, 1436, "", 1, 0
|
||||||
vvtToothDurations01 = scalar, U32, 1452, "us", 1, 0
|
vvtToothPosition40 = scalar, F32, 1440, "", 1, 0
|
||||||
vvtCurrentPosition1 = scalar, F32, 1456, "", 1, 0
|
triggerSyncGapRatio0 = scalar, F32, 1444, "", 1, 0
|
||||||
vvtToothPosition11 = scalar, F32, 1460, "", 1, 0
|
triggerStateIndex0 = scalar, U08, 1448, "", 1, 0
|
||||||
vvtToothPosition21 = scalar, F32, 1464, "", 1, 0
|
; total TS size = 1452
|
||||||
vvtToothPosition31 = scalar, F32, 1468, "", 1, 0
|
synchronizationCounter1 = scalar, U32, 1452, "", 1, 0
|
||||||
vvtToothPosition41 = scalar, F32, 1472, "", 1, 0
|
vvtToothDurations01 = scalar, U32, 1456, "us", 1, 0
|
||||||
triggerSyncGapRatio1 = scalar, F32, 1476, "", 1, 0
|
vvtCurrentPosition1 = scalar, F32, 1460, "", 1, 0
|
||||||
triggerStateIndex1 = scalar, U08, 1480, "", 1, 0
|
vvtToothPosition11 = scalar, F32, 1464, "", 1, 0
|
||||||
; total TS size = 1484
|
vvtToothPosition21 = scalar, F32, 1468, "", 1, 0
|
||||||
synchronizationCounter2 = scalar, U32, 1484, "", 1, 0
|
vvtToothPosition31 = scalar, F32, 1472, "", 1, 0
|
||||||
vvtToothDurations02 = scalar, U32, 1488, "us", 1, 0
|
vvtToothPosition41 = scalar, F32, 1476, "", 1, 0
|
||||||
vvtCurrentPosition2 = scalar, F32, 1492, "", 1, 0
|
triggerSyncGapRatio1 = scalar, F32, 1480, "", 1, 0
|
||||||
vvtToothPosition12 = scalar, F32, 1496, "", 1, 0
|
triggerStateIndex1 = scalar, U08, 1484, "", 1, 0
|
||||||
vvtToothPosition22 = scalar, F32, 1500, "", 1, 0
|
; total TS size = 1488
|
||||||
vvtToothPosition32 = scalar, F32, 1504, "", 1, 0
|
synchronizationCounter2 = scalar, U32, 1488, "", 1, 0
|
||||||
vvtToothPosition42 = scalar, F32, 1508, "", 1, 0
|
vvtToothDurations02 = scalar, U32, 1492, "us", 1, 0
|
||||||
triggerSyncGapRatio2 = scalar, F32, 1512, "", 1, 0
|
vvtCurrentPosition2 = scalar, F32, 1496, "", 1, 0
|
||||||
triggerStateIndex2 = scalar, U08, 1516, "", 1, 0
|
vvtToothPosition12 = scalar, F32, 1500, "", 1, 0
|
||||||
; total TS size = 1520
|
vvtToothPosition22 = scalar, F32, 1504, "", 1, 0
|
||||||
synchronizationCounter3 = scalar, U32, 1520, "", 1, 0
|
vvtToothPosition32 = scalar, F32, 1508, "", 1, 0
|
||||||
vvtToothDurations03 = scalar, U32, 1524, "us", 1, 0
|
vvtToothPosition42 = scalar, F32, 1512, "", 1, 0
|
||||||
vvtCurrentPosition3 = scalar, F32, 1528, "", 1, 0
|
triggerSyncGapRatio2 = scalar, F32, 1516, "", 1, 0
|
||||||
vvtToothPosition13 = scalar, F32, 1532, "", 1, 0
|
triggerStateIndex2 = scalar, U08, 1520, "", 1, 0
|
||||||
vvtToothPosition23 = scalar, F32, 1536, "", 1, 0
|
; total TS size = 1524
|
||||||
vvtToothPosition33 = scalar, F32, 1540, "", 1, 0
|
synchronizationCounter3 = scalar, U32, 1524, "", 1, 0
|
||||||
vvtToothPosition43 = scalar, F32, 1544, "", 1, 0
|
vvtToothDurations03 = scalar, U32, 1528, "us", 1, 0
|
||||||
triggerSyncGapRatio3 = scalar, F32, 1548, "", 1, 0
|
vvtCurrentPosition3 = scalar, F32, 1532, "", 1, 0
|
||||||
triggerStateIndex3 = scalar, U08, 1552, "", 1, 0
|
vvtToothPosition13 = scalar, F32, 1536, "", 1, 0
|
||||||
; total TS size = 1556
|
vvtToothPosition23 = scalar, F32, 1540, "", 1, 0
|
||||||
synchronizationCounter4 = scalar, U32, 1556, "", 1, 0
|
vvtToothPosition33 = scalar, F32, 1544, "", 1, 0
|
||||||
vvtToothDurations04 = scalar, U32, 1560, "us", 1, 0
|
vvtToothPosition43 = scalar, F32, 1548, "", 1, 0
|
||||||
vvtCurrentPosition4 = scalar, F32, 1564, "", 1, 0
|
triggerSyncGapRatio3 = scalar, F32, 1552, "", 1, 0
|
||||||
vvtToothPosition14 = scalar, F32, 1568, "", 1, 0
|
triggerStateIndex3 = scalar, U08, 1556, "", 1, 0
|
||||||
vvtToothPosition24 = scalar, F32, 1572, "", 1, 0
|
; total TS size = 1560
|
||||||
vvtToothPosition34 = scalar, F32, 1576, "", 1, 0
|
synchronizationCounter4 = scalar, U32, 1560, "", 1, 0
|
||||||
vvtToothPosition44 = scalar, F32, 1580, "", 1, 0
|
vvtToothDurations04 = scalar, U32, 1564, "us", 1, 0
|
||||||
triggerSyncGapRatio4 = scalar, F32, 1584, "", 1, 0
|
vvtCurrentPosition4 = scalar, F32, 1568, "", 1, 0
|
||||||
triggerStateIndex4 = scalar, U08, 1588, "", 1, 0
|
vvtToothPosition14 = scalar, F32, 1572, "", 1, 0
|
||||||
; total TS size = 1592
|
vvtToothPosition24 = scalar, F32, 1576, "", 1, 0
|
||||||
camResyncCounter = scalar, U08, 1592, "", 1, 0
|
vvtToothPosition34 = scalar, F32, 1580, "", 1, 0
|
||||||
m_hasSynchronizedPhase = bits, U32, 1596, [0:0]
|
vvtToothPosition44 = scalar, F32, 1584, "", 1, 0
|
||||||
; total TS size = 1600
|
triggerSyncGapRatio4 = scalar, F32, 1588, "", 1, 0
|
||||||
wallFuelCorrection = scalar, F32, 1600, "", 1, 0
|
triggerStateIndex4 = scalar, U08, 1592, "", 1, 0
|
||||||
wallFuel = scalar, F32, 1604, "", 1, 0
|
; total TS size = 1596
|
||||||
; total TS size = 1608
|
camResyncCounter = scalar, U08, 1596, "", 1, 0
|
||||||
idleState = bits, S32, 1608, [0:2], "not important"
|
m_hasSynchronizedPhase = bits, U32, 1600, [0:0]
|
||||||
currentIdlePosition = scalar, F32, 1612
|
; total TS size = 1604
|
||||||
baseIdlePosition = scalar, F32, 1616
|
wallFuelCorrection = scalar, F32, 1604, "", 1, 0
|
||||||
idleClosedLoop = scalar, F32, 1620
|
wallFuel = scalar, F32, 1608, "", 1, 0
|
||||||
iacByTpsTaper = scalar, F32, 1624
|
; total TS size = 1612
|
||||||
mightResetPid = bits, U32, 1628, [0:0]
|
idleState = bits, S32, 1612, [0:2], "not important"
|
||||||
shouldResetPid = bits, U32, 1628, [1:1]
|
currentIdlePosition = scalar, F32, 1616
|
||||||
wasResetPid = bits, U32, 1628, [2:2]
|
baseIdlePosition = scalar, F32, 1620
|
||||||
mustResetPid = bits, U32, 1628, [3:3]
|
idleClosedLoop = scalar, F32, 1624
|
||||||
isCranking = bits, U32, 1628, [4:4]
|
iacByTpsTaper = scalar, F32, 1628
|
||||||
isIacTableForCoasting = bits, U32, 1628, [5:5]
|
mightResetPid = bits, U32, 1632, [0:0]
|
||||||
notIdling = bits, U32, 1628, [6:6]
|
shouldResetPid = bits, U32, 1632, [1:1]
|
||||||
needReset = bits, U32, 1628, [7:7]
|
wasResetPid = bits, U32, 1632, [2:2]
|
||||||
isInDeadZone = bits, U32, 1628, [8:8]
|
mustResetPid = bits, U32, 1632, [3:3]
|
||||||
isBlipping = bits, U32, 1628, [9:9]
|
isCranking = bits, U32, 1632, [4:4]
|
||||||
useClosedLoop = bits, U32, 1628, [10:10]
|
isIacTableForCoasting = bits, U32, 1632, [5:5]
|
||||||
badTps = bits, U32, 1628, [11:11]
|
notIdling = bits, U32, 1632, [6:6]
|
||||||
looksLikeRunning = bits, U32, 1628, [12:12]
|
needReset = bits, U32, 1632, [7:7]
|
||||||
looksLikeCoasting = bits, U32, 1628, [13:13]
|
isInDeadZone = bits, U32, 1632, [8:8]
|
||||||
looksLikeCrankToIdle = bits, U32, 1628, [14:14]
|
isBlipping = bits, U32, 1632, [9:9]
|
||||||
isIdleCoasting = bits, U32, 1628, [15:15]
|
useClosedLoop = bits, U32, 1632, [10:10]
|
||||||
isIdleClosedLoop = bits, U32, 1628, [16:16]
|
badTps = bits, U32, 1632, [11:11]
|
||||||
idleTarget = scalar, S32, 1632, "", 1, 0
|
looksLikeRunning = bits, U32, 1632, [12:12]
|
||||||
targetRpmByClt = scalar, S32, 1636, "", 1, 0
|
looksLikeCoasting = bits, U32, 1632, [13:13]
|
||||||
targetRpmAc = scalar, S32, 1640, "", 1, 0
|
looksLikeCrankToIdle = bits, U32, 1632, [14:14]
|
||||||
iacByRpmTaper = scalar, F32, 1644
|
isIdleCoasting = bits, U32, 1632, [15:15]
|
||||||
luaAdd = scalar, F32, 1648
|
isIdleClosedLoop = bits, U32, 1632, [16:16]
|
||||||
; total TS size = 1652
|
idleTarget = scalar, S32, 1636, "", 1, 0
|
||||||
targetWithIdlePosition0 = scalar, F32, 1652, "%", 1,0
|
targetRpmByClt = scalar, S32, 1640, "", 1, 0
|
||||||
trim0 = scalar, F32, 1656, "", 1, 0
|
targetRpmAc = scalar, S32, 1644, "", 1, 0
|
||||||
luaAdjustment0 = scalar, F32, 1660, "%", 1,0
|
iacByRpmTaper = scalar, F32, 1648
|
||||||
m_wastegatePosition0 = scalar, F32, 1664, "%", 1,0
|
luaAdd = scalar, F32, 1652
|
||||||
etbFeedForward0 = scalar, F32, 1668
|
; total TS size = 1656
|
||||||
etbIntegralError0 = scalar, F32, 1672, "", 1, 0
|
targetWithIdlePosition0 = scalar, F32, 1656, "%", 1,0
|
||||||
etbCurrentTarget0 = scalar, F32, 1676, "%", 1, 0
|
trim0 = scalar, F32, 1660, "", 1, 0
|
||||||
m_adjustedTarget0 = scalar, S16, 1680, "%", 0.01, 0
|
luaAdjustment0 = scalar, F32, 1664, "%", 1,0
|
||||||
etbRevLimitActive0 = bits, U32, 1684, [0:0]
|
m_wastegatePosition0 = scalar, F32, 1668, "%", 1,0
|
||||||
jamDetected0 = bits, U32, 1684, [1:1]
|
etbFeedForward0 = scalar, F32, 1672
|
||||||
validPlantPosition0 = bits, U32, 1684, [2:2]
|
etbIntegralError0 = scalar, F32, 1676, "", 1, 0
|
||||||
etbTpsErrorCounter0 = scalar, U16, 1688, "count", 1,0
|
etbCurrentTarget0 = scalar, F32, 1680, "%", 1, 0
|
||||||
etbPpsErrorCounter0 = scalar, U16, 1690, "count", 1,0
|
m_adjustedTarget0 = scalar, S16, 1684, "%", 0.01, 0
|
||||||
etbErrorCode0 = scalar, S08, 1692, "", 1, 0
|
etbRevLimitActive0 = bits, U32, 1688, [0:0]
|
||||||
etbErrorCodeBlinker0 = scalar, S08, 1693, "", 1, 0
|
jamDetected0 = bits, U32, 1688, [1:1]
|
||||||
tcEtbDrop0 = scalar, S08, 1694, "%", 1, 0
|
validPlantPosition0 = bits, U32, 1688, [2:2]
|
||||||
jamTimer0 = scalar, U16, 1696, "sec", 0.01, 0
|
etbTpsErrorCounter0 = scalar, U16, 1692, "count", 1,0
|
||||||
adjustedEtbTarget0 = scalar, S08, 1698, "%", 1, 0
|
etbPpsErrorCounter0 = scalar, U16, 1694, "count", 1,0
|
||||||
state0 = scalar, U08, 1699, "", 1, 0
|
etbErrorCode0 = scalar, S08, 1696, "", 1, 0
|
||||||
; total TS size = 1700
|
etbErrorCodeBlinker0 = scalar, S08, 1697, "", 1, 0
|
||||||
targetWithIdlePosition1 = scalar, F32, 1700, "%", 1,0
|
tcEtbDrop0 = scalar, S08, 1698, "%", 1, 0
|
||||||
trim1 = scalar, F32, 1704, "", 1, 0
|
jamTimer0 = scalar, U16, 1700, "sec", 0.01, 0
|
||||||
luaAdjustment1 = scalar, F32, 1708, "%", 1,0
|
adjustedEtbTarget0 = scalar, S08, 1702, "%", 1, 0
|
||||||
m_wastegatePosition1 = scalar, F32, 1712, "%", 1,0
|
state0 = scalar, U08, 1703, "", 1, 0
|
||||||
etbFeedForward1 = scalar, F32, 1716
|
; total TS size = 1704
|
||||||
etbIntegralError1 = scalar, F32, 1720, "", 1, 0
|
targetWithIdlePosition1 = scalar, F32, 1704, "%", 1,0
|
||||||
etbCurrentTarget1 = scalar, F32, 1724, "%", 1, 0
|
trim1 = scalar, F32, 1708, "", 1, 0
|
||||||
m_adjustedTarget1 = scalar, S16, 1728, "%", 0.01, 0
|
luaAdjustment1 = scalar, F32, 1712, "%", 1,0
|
||||||
etbRevLimitActive1 = bits, U32, 1732, [0:0]
|
m_wastegatePosition1 = scalar, F32, 1716, "%", 1,0
|
||||||
jamDetected1 = bits, U32, 1732, [1:1]
|
etbFeedForward1 = scalar, F32, 1720
|
||||||
validPlantPosition1 = bits, U32, 1732, [2:2]
|
etbIntegralError1 = scalar, F32, 1724, "", 1, 0
|
||||||
etbTpsErrorCounter1 = scalar, U16, 1736, "count", 1,0
|
etbCurrentTarget1 = scalar, F32, 1728, "%", 1, 0
|
||||||
etbPpsErrorCounter1 = scalar, U16, 1738, "count", 1,0
|
m_adjustedTarget1 = scalar, S16, 1732, "%", 0.01, 0
|
||||||
etbErrorCode1 = scalar, S08, 1740, "", 1, 0
|
etbRevLimitActive1 = bits, U32, 1736, [0:0]
|
||||||
etbErrorCodeBlinker1 = scalar, S08, 1741, "", 1, 0
|
jamDetected1 = bits, U32, 1736, [1:1]
|
||||||
tcEtbDrop1 = scalar, S08, 1742, "%", 1, 0
|
validPlantPosition1 = bits, U32, 1736, [2:2]
|
||||||
jamTimer1 = scalar, U16, 1744, "sec", 0.01, 0
|
etbTpsErrorCounter1 = scalar, U16, 1740, "count", 1,0
|
||||||
adjustedEtbTarget1 = scalar, S08, 1746, "%", 1, 0
|
etbPpsErrorCounter1 = scalar, U16, 1742, "count", 1,0
|
||||||
state1 = scalar, U08, 1747, "", 1, 0
|
etbErrorCode1 = scalar, S08, 1744, "", 1, 0
|
||||||
; total TS size = 1748
|
etbErrorCodeBlinker1 = scalar, S08, 1745, "", 1, 0
|
||||||
faultCode0 = scalar, U08, 1748, "", 1, 0
|
tcEtbDrop1 = scalar, S08, 1746, "%", 1, 0
|
||||||
heaterDuty0 = scalar, U08, 1749, "%", 1, 0
|
jamTimer1 = scalar, U16, 1748, "sec", 0.01, 0
|
||||||
pumpDuty0 = scalar, U08, 1750, "%", 1, 0
|
adjustedEtbTarget1 = scalar, S08, 1750, "%", 1, 0
|
||||||
tempC0 = scalar, U16, 1752, "C", 1, 0
|
state1 = scalar, U08, 1751, "", 1, 0
|
||||||
nernstVoltage0 = scalar, U16, 1754, "V", 0.001, 0
|
; total TS size = 1752
|
||||||
esr0 = scalar, U16, 1756, "ohm", 1, 0
|
faultCode0 = scalar, U08, 1752, "", 1, 0
|
||||||
; total TS size = 1760
|
heaterDuty0 = scalar, U08, 1753, "%", 1, 0
|
||||||
faultCode1 = scalar, U08, 1760, "", 1, 0
|
pumpDuty0 = scalar, U08, 1754, "%", 1, 0
|
||||||
heaterDuty1 = scalar, U08, 1761, "%", 1, 0
|
tempC0 = scalar, U16, 1756, "C", 1, 0
|
||||||
pumpDuty1 = scalar, U08, 1762, "%", 1, 0
|
nernstVoltage0 = scalar, U16, 1758, "V", 0.001, 0
|
||||||
tempC1 = scalar, U16, 1764, "C", 1, 0
|
esr0 = scalar, U16, 1760, "ohm", 1, 0
|
||||||
nernstVoltage1 = scalar, U16, 1766, "V", 0.001, 0
|
; total TS size = 1764
|
||||||
esr1 = scalar, U16, 1768, "ohm", 1, 0
|
faultCode1 = scalar, U08, 1764, "", 1, 0
|
||||||
; total TS size = 1772
|
heaterDuty1 = scalar, U08, 1765, "%", 1, 0
|
||||||
dcOutput0 = scalar, F32, 1772, "%", 1,0
|
pumpDuty1 = scalar, U08, 1766, "%", 1, 0
|
||||||
isEnabled0_int = scalar, U08, 1776, "%", 1,0
|
tempC1 = scalar, U16, 1768, "C", 1, 0
|
||||||
isEnabled0 = bits, U32, 1780, [0:0]
|
nernstVoltage1 = scalar, U16, 1770, "V", 0.001, 0
|
||||||
; total TS size = 1784
|
esr1 = scalar, U16, 1772, "ohm", 1, 0
|
||||||
value0 = scalar, U16, 1784, "RAW", 1,0
|
; total TS size = 1776
|
||||||
value1 = scalar, U16, 1786, "RAW", 1,0
|
dcOutput0 = scalar, F32, 1776, "%", 1,0
|
||||||
errorRate = scalar, F32, 1788, "% (don't belive me)", 1,0
|
isEnabled0_int = scalar, U08, 1780, "%", 1,0
|
||||||
; total TS size = 1792
|
isEnabled0 = bits, U32, 1784, [0:0]
|
||||||
vvtTarget = scalar, U16, 1792, "deg", 0.1, 0
|
; total TS size = 1788
|
||||||
vvtOutput = scalar, U08, 1794, "%", 0.5, 0
|
value0 = scalar, U16, 1788, "RAW", 1,0
|
||||||
|
value1 = scalar, U16, 1790, "RAW", 1,0
|
||||||
|
errorRate = scalar, F32, 1792, "% (don't belive me)", 1,0
|
||||||
; total TS size = 1796
|
; total TS size = 1796
|
||||||
lambdaCurrentlyGood = bits, U32, 1796, [0:0]
|
vvtTarget = scalar, U16, 1796, "deg", 0.1, 0
|
||||||
lambdaMonitorCut = bits, U32, 1796, [1:1]
|
vvtOutput = scalar, U08, 1798, "%", 0.5, 0
|
||||||
lambdaTimeSinceGood = scalar, U16, 1800, "sec", 0.01, 0
|
; total TS size = 1800
|
||||||
; total TS size = 1804
|
lambdaCurrentlyGood = bits, U32, 1800, [0:0]
|
||||||
|
lambdaMonitorCut = bits, U32, 1800, [1:1]
|
||||||
|
lambdaTimeSinceGood = scalar, U16, 1804, "sec", 0.01, 0
|
||||||
|
; total TS size = 1808
|
||||||
|
|
||||||
|
|
||||||
time = { timeNow }
|
time = { timeNow }
|
||||||
|
@ -3846,7 +3848,7 @@ lambdaTimeSinceGood = scalar, U16, 1800, "sec", 0.01, 0
|
||||||
curve = primingPulse, "Priming pulse fuel mass"
|
curve = primingPulse, "Priming pulse fuel mass"
|
||||||
columnLabel = "Coolant", "Prime Pulse"
|
columnLabel = "Coolant", "Prime Pulse"
|
||||||
xAxis = -40, 120, 9
|
xAxis = -40, 120, 9
|
||||||
yAxis = 0, 1000, 9
|
yAxis = 0, 150, 9
|
||||||
xBins = primeBins, coolant
|
xBins = primeBins, coolant
|
||||||
yBins = primeValues
|
yBins = primeValues
|
||||||
gauge = CLTGauge
|
gauge = CLTGauge
|
||||||
|
@ -5803,6 +5805,7 @@ entry = dwellVoltageCorrection, "Ign: Dwell voltage correction", float, "%.3f"
|
||||||
entry = luaTimingAdd, "Ign: Lua timing add", float, "%.3f"
|
entry = luaTimingAdd, "Ign: Lua timing add", float, "%.3f"
|
||||||
entry = luaTimingMult, "Ign: Lua timing mult", float, "%.3f"
|
entry = luaTimingMult, "Ign: Lua timing mult", float, "%.3f"
|
||||||
entry = luaIgnitionSkip, "Ign: Lua Spark Skip", int, "%d"
|
entry = luaIgnitionSkip, "Ign: Lua Spark Skip", int, "%d"
|
||||||
|
entry = m_isPriming, "IsFuelPriming", int, "%d"
|
||||||
entry = m_knockLevel, "Knock: Current level", float, "%.3f"
|
entry = m_knockLevel, "Knock: Current level", float, "%.3f"
|
||||||
entry = m_knockCyl1, "Knock: Cyl 1", int, "%d"
|
entry = m_knockCyl1, "Knock: Cyl 1", int, "%d"
|
||||||
entry = m_knockCyl2, "Knock: Cyl 2", int, "%d"
|
entry = m_knockCyl2, "Knock: Cyl 2", int, "%d"
|
||||||
|
@ -6557,6 +6560,7 @@ menuDialog = main
|
||||||
menu = "&View", { 1 }, { uiMode == 0 || uiMode == 1 }
|
menu = "&View", { 1 }, { uiMode == 0 || uiMode == 1 }
|
||||||
subMenu = fuel_computerDialog, "fuel_computer"
|
subMenu = fuel_computerDialog, "fuel_computer"
|
||||||
subMenu = ignition_stateDialog, "ignition_state"
|
subMenu = ignition_stateDialog, "ignition_state"
|
||||||
|
subMenu = prime_injectionDialog, "prime_injection"
|
||||||
subMenu = knock_controllerDialog, "knock_controller"
|
subMenu = knock_controllerDialog, "knock_controller"
|
||||||
subMenu = tcu_controllerDialog, "tcu_controller"
|
subMenu = tcu_controllerDialog, "tcu_controller"
|
||||||
subMenu = throttle_modelDialog, "throttle_model"
|
subMenu = throttle_modelDialog, "throttle_model"
|
||||||
|
@ -6764,6 +6768,12 @@ dialog = ignition_stateDialog, "ignition_state"
|
||||||
liveGraph = ignition_state_4_Graph, "Graph", South
|
liveGraph = ignition_state_4_Graph, "Graph", South
|
||||||
graphLine = luaTimingMult
|
graphLine = luaTimingMult
|
||||||
|
|
||||||
|
indicatorPanel = prime_injectionIndicatorPanel, 2
|
||||||
|
indicator = {m_isPriming}, "m_isPriming No", "m_isPriming Yes"
|
||||||
|
|
||||||
|
dialog = prime_injectionDialog, "prime_injection"
|
||||||
|
panel = prime_injectionIndicatorPanel
|
||||||
|
|
||||||
|
|
||||||
dialog = knock_controllerDialog, "knock_controller"
|
dialog = knock_controllerDialog, "knock_controller"
|
||||||
liveGraph = knock_controller_1_Graph, "Graph", South
|
liveGraph = knock_controller_1_Graph, "Graph", South
|
||||||
|
@ -8759,8 +8769,6 @@ dialog = lambda_monitorDialog, "lambda_monitor"
|
||||||
field = "iTerm Min", idlerpmpid_iTermMin
|
field = "iTerm Min", idlerpmpid_iTermMin
|
||||||
field = "iTerm Max", idlerpmpid_iTermMax
|
field = "iTerm Max", idlerpmpid_iTermMax
|
||||||
field = "PID Extra for low RPM", pidExtraForLowRpm
|
field = "PID Extra for low RPM", pidExtraForLowRpm
|
||||||
field = idleIncrementalPidCic, idleIncrementalPidCic
|
|
||||||
field = "use Cic Pid", useCicPidForIdle
|
|
||||||
field = "Use IAC PID Multiplier Table", useIacPidMultTable
|
field = "Use IAC PID Multiplier Table", useIacPidMultTable
|
||||||
|
|
||||||
dialog = idleOpenLoop, "Open Loop Idle"
|
dialog = idleOpenLoop, "Open Loop Idle"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
! Generated by gen_signature.sh
|
! Generated by gen_signature.sh
|
||||||
! SIGNATURE_HASH is a built-in variable generated by config_definition-all.jar
|
! SIGNATURE_HASH is a built-in variable generated by config_definition-all.jar
|
||||||
! gen_signature.sh Using env variable branch [main]
|
! gen_signature.sh Using env variable branch [main]
|
||||||
#define TS_SIGNATURE "rusEFI main.2024.12.22.mega100.@@SIGNATURE_HASH@@"
|
#define TS_SIGNATURE "rusEFI main.2024.12.23.mega100.@@SIGNATURE_HASH@@"
|
||||||
|
|
Loading…
Reference in New Issue