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