Auto-generated configs and docs
This commit is contained in:
parent
443d7dbef4
commit
92a650a1c8
|
@ -497,6 +497,8 @@ entry = rpmLaunchCondition, "rpmLaunchCondition", int, "%d"
|
|||
entry = rpmPreLaunchCondition, "rpmPreLaunchCondition", int, "%d"
|
||||
entry = speedCondition, "speedCondition", int, "%d"
|
||||
entry = tpsCondition, "tpsCondition", int, "%d"
|
||||
entry = isTorqueReductionTriggerPinValid, "isTorqueReductionTriggerPinValid", int, "%d"
|
||||
entry = torqueReductionTriggerPinState, "torqueReductionTriggerPinState", int, "%d"
|
||||
entry = isAntilagCondition, "isAntilagCondition", int, "%d"
|
||||
entry = ALSMinRPMCondition, "ALSMinRPMCondition", int, "%d"
|
||||
entry = ALSMaxRPMCondition, "ALSMaxRPMCondition", int, "%d"
|
||||
|
|
|
@ -138,6 +138,13 @@ dialog = launch_control_stateDialog, "launch_control_state"
|
|||
liveGraph = launch_control_state_1_Graph, "Graph", South
|
||||
graphLine = retardThresholdRpm
|
||||
|
||||
indicatorPanel = shift_torque_reduction_stateIndicatorPanel, 2
|
||||
indicator = {isTorqueReductionTriggerPinValid}, "isTorqueReductionTriggerPinValid No", "isTorqueReductionTriggerPinValid Yes"
|
||||
indicator = {torqueReductionTriggerPinState}, "torqueReductionTriggerPinState No", "torqueReductionTriggerPinState Yes"
|
||||
|
||||
dialog = shift_torque_reduction_stateDialog, "shift_torque_reduction_state"
|
||||
panel = shift_torque_reduction_stateIndicatorPanel
|
||||
|
||||
indicatorPanel = antilag_system_stateIndicatorPanel, 2
|
||||
indicator = {isAntilagCondition}, "isAntilagCondition No", "isAntilagCondition Yes"
|
||||
indicator = {ALSMinRPMCondition}, "ALSMinRPMCondition No", "ALSMinRPMCondition Yes"
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
subMenu = high_pressure_fuel_pumpDialog, "high_pressure_fuel_pump"
|
||||
subMenu = injector_modelDialog, "injector_model"
|
||||
subMenu = launch_control_stateDialog, "launch_control_state"
|
||||
subMenu = shift_torque_reduction_stateDialog, "shift_torque_reduction_state"
|
||||
subMenu = antilag_system_stateDialog, "antilag_system_state"
|
||||
subMenu = boost_controlDialog, "boost_control"
|
||||
subMenu = ac_controlDialog, "ac_control"
|
||||
|
|
|
@ -8,6 +8,7 @@ decl_frag<throttle_model_s>{},
|
|||
decl_frag<high_pressure_fuel_pump_s>{},
|
||||
decl_frag<injector_model_s>{},
|
||||
decl_frag<launch_control_state_s>{},
|
||||
decl_frag<shift_torque_reduction_state_s>{},
|
||||
decl_frag<antilag_system_state_s>{},
|
||||
decl_frag<boost_control_s>{},
|
||||
decl_frag<ac_control_s>{},
|
||||
|
|
|
@ -12,6 +12,7 @@ LDS_throttle_model,
|
|||
LDS_high_pressure_fuel_pump,
|
||||
LDS_injector_model,
|
||||
LDS_launch_control_state,
|
||||
LDS_shift_torque_reduction_state,
|
||||
LDS_antilag_system_state,
|
||||
LDS_boost_control,
|
||||
LDS_ac_control,
|
||||
|
@ -48,22 +49,23 @@ LDS_lambda_monitor,
|
|||
#define HIGH_PRESSURE_FUEL_PUMP_BASE_ADDRESS 1004
|
||||
#define INJECTOR_MODEL_BASE_ADDRESS 1032
|
||||
#define LAUNCH_CONTROL_STATE_BASE_ADDRESS 1044
|
||||
#define ANTILAG_SYSTEM_STATE_BASE_ADDRESS 1052
|
||||
#define BOOST_CONTROL_BASE_ADDRESS 1064
|
||||
#define AC_CONTROL_BASE_ADDRESS 1088
|
||||
#define FAN_CONTROL_BASE_ADDRESS 1096
|
||||
#define FUEL_PUMP_CONTROL_BASE_ADDRESS 1112
|
||||
#define MAIN_RELAY_BASE_ADDRESS 1116
|
||||
#define ENGINE_STATE_BASE_ADDRESS 1120
|
||||
#define TPS_ACCEL_STATE_BASE_ADDRESS 1220
|
||||
#define TRIGGER_CENTRAL_BASE_ADDRESS 1268
|
||||
#define TRIGGER_STATE_BASE_ADDRESS 1332
|
||||
#define TRIGGER_STATE_PRIMARY_BASE_ADDRESS 1532
|
||||
#define WALL_FUEL_STATE_BASE_ADDRESS 1540
|
||||
#define IDLE_STATE_BASE_ADDRESS 1548
|
||||
#define ELECTRONIC_THROTTLE_BASE_ADDRESS 1596
|
||||
#define WIDEBAND_STATE_BASE_ADDRESS 1692
|
||||
#define DC_MOTORS_BASE_ADDRESS 1716
|
||||
#define SENT_STATE_BASE_ADDRESS 1728
|
||||
#define VVT_BASE_ADDRESS 1736
|
||||
#define LAMBDA_MONITOR_BASE_ADDRESS 1740
|
||||
#define SHIFT_TORQUE_REDUCTION_STATE_BASE_ADDRESS 1052
|
||||
#define ANTILAG_SYSTEM_STATE_BASE_ADDRESS 1056
|
||||
#define BOOST_CONTROL_BASE_ADDRESS 1068
|
||||
#define AC_CONTROL_BASE_ADDRESS 1092
|
||||
#define FAN_CONTROL_BASE_ADDRESS 1100
|
||||
#define FUEL_PUMP_CONTROL_BASE_ADDRESS 1116
|
||||
#define MAIN_RELAY_BASE_ADDRESS 1120
|
||||
#define ENGINE_STATE_BASE_ADDRESS 1124
|
||||
#define TPS_ACCEL_STATE_BASE_ADDRESS 1224
|
||||
#define TRIGGER_CENTRAL_BASE_ADDRESS 1272
|
||||
#define TRIGGER_STATE_BASE_ADDRESS 1336
|
||||
#define TRIGGER_STATE_PRIMARY_BASE_ADDRESS 1536
|
||||
#define WALL_FUEL_STATE_BASE_ADDRESS 1544
|
||||
#define IDLE_STATE_BASE_ADDRESS 1552
|
||||
#define ELECTRONIC_THROTTLE_BASE_ADDRESS 1600
|
||||
#define WIDEBAND_STATE_BASE_ADDRESS 1696
|
||||
#define DC_MOTORS_BASE_ADDRESS 1720
|
||||
#define SENT_STATE_BASE_ADDRESS 1732
|
||||
#define VVT_BASE_ADDRESS 1740
|
||||
#define LAMBDA_MONITOR_BASE_ADDRESS 1744
|
||||
|
|
|
@ -565,319 +565,322 @@ rpmPreLaunchCondition = bits, U32, 1048, [9:9]
|
|||
speedCondition = bits, U32, 1048, [10:10]
|
||||
tpsCondition = bits, U32, 1048, [11:11]
|
||||
; total TS size = 1052
|
||||
isAntilagCondition = bits, U32, 1052, [0:0]
|
||||
ALSMinRPMCondition = bits, U32, 1052, [1:1]
|
||||
ALSMaxRPMCondition = bits, U32, 1052, [2:2]
|
||||
ALSMinCLTCondition = bits, U32, 1052, [3:3]
|
||||
ALSMaxCLTCondition = bits, U32, 1052, [4:4]
|
||||
ALSMaxThrottleIntentCondition = bits, U32, 1052, [5:5]
|
||||
isALSSwitchActivated = bits, U32, 1052, [6:6]
|
||||
ALSActivatePinState = bits, U32, 1052, [7:7]
|
||||
ALSSwitchCondition = bits, U32, 1052, [8:8]
|
||||
ALSTimerCondition = bits, U32, 1052, [9:9]
|
||||
fuelALSCorrection = scalar, F32, 1056, "", 1, 0
|
||||
timingALSCorrection = scalar, S16, 1060, "deg", 0.01, 0
|
||||
timingALSSkip = scalar, S16, 1062, "deg", 0.01, 0
|
||||
; total TS size = 1064
|
||||
isTpsInvalid = bits, U32, 1064, [0:0]
|
||||
m_shouldResetPid = bits, U32, 1064, [1:1]
|
||||
isBelowClosedLoopThreshold = bits, U32, 1064, [2:2]
|
||||
isNotClosedLoop = bits, U32, 1064, [3:3]
|
||||
isZeroRpm = bits, U32, 1064, [4:4]
|
||||
hasInitBoost = bits, U32, 1064, [5:5]
|
||||
rpmTooLow = bits, U32, 1064, [6:6]
|
||||
tpsTooLow = bits, U32, 1064, [7:7]
|
||||
mapTooLow = bits, U32, 1064, [8:8]
|
||||
isPlantValid = bits, U32, 1064, [9:9]
|
||||
isBoostControlled = bits, U32, 1064, [10:10]
|
||||
luaTargetAdd = scalar, S16, 1068, "v", 0.5,0
|
||||
boostOutput = scalar, S16, 1070, "percent", 0.01,0
|
||||
luaTargetMult = scalar, F32, 1072, "v", 1,0
|
||||
openLoopPart = scalar, F32, 1076, "v", 1,0
|
||||
luaOpenLoopAdd = scalar, F32, 1080, "v", 1,0
|
||||
boostControllerClosedLoopPart = scalar, S08, 1084, "%", 0.5,0
|
||||
boostControlTarget = scalar, S16, 1086, "kPa", 0.03333333333333333,0
|
||||
; total TS size = 1088
|
||||
acButtonState = scalar, S08, 1088, "", 1, 0
|
||||
m_acEnabled = bits, U32, 1092, [0:0]
|
||||
engineTooSlow = bits, U32, 1092, [1:1]
|
||||
engineTooFast = bits, U32, 1092, [2:2]
|
||||
noClt = bits, U32, 1092, [3:3]
|
||||
engineTooHot = bits, U32, 1092, [4:4]
|
||||
tpsTooHigh = bits, U32, 1092, [5:5]
|
||||
isDisabledByLua = bits, U32, 1092, [6:6]
|
||||
acCompressorState = bits, U32, 1092, [7:7]
|
||||
acPressureTooLow = bits, U32, 1092, [8:8]
|
||||
acPressureTooHigh = bits, U32, 1092, [9:9]
|
||||
; total TS size = 1096
|
||||
cranking0 = bits, U32, 1096, [0:0]
|
||||
notRunning0 = bits, U32, 1096, [1:1]
|
||||
disabledWhileEngineStopped0 = bits, U32, 1096, [2:2]
|
||||
brokenClt0 = bits, U32, 1096, [3:3]
|
||||
enabledForAc0 = bits, U32, 1096, [4:4]
|
||||
hot0 = bits, U32, 1096, [5:5]
|
||||
cold0 = bits, U32, 1096, [6:6]
|
||||
disabledBySpeed0 = bits, U32, 1096, [7:7]
|
||||
radiatorFanStatus0 = scalar, U08, 1100, "", 1, 0
|
||||
; total TS size = 1104
|
||||
cranking1 = bits, U32, 1104, [0:0]
|
||||
notRunning1 = bits, U32, 1104, [1:1]
|
||||
disabledWhileEngineStopped1 = bits, U32, 1104, [2:2]
|
||||
brokenClt1 = bits, U32, 1104, [3:3]
|
||||
enabledForAc1 = bits, U32, 1104, [4:4]
|
||||
hot1 = bits, U32, 1104, [5:5]
|
||||
cold1 = bits, U32, 1104, [6:6]
|
||||
disabledBySpeed1 = bits, U32, 1104, [7:7]
|
||||
radiatorFanStatus1 = scalar, U08, 1108, "", 1, 0
|
||||
; total TS size = 1112
|
||||
isPrime = bits, U32, 1112, [0:0]
|
||||
engineTurnedRecently = bits, U32, 1112, [1:1]
|
||||
isFuelPumpOn = bits, U32, 1112, [2:2]
|
||||
ignitionOn = bits, U32, 1112, [3:3]
|
||||
isTorqueReductionTriggerPinValid = bits, U32, 1052, [0:0]
|
||||
torqueReductionTriggerPinState = bits, U32, 1052, [1:1]
|
||||
; total TS size = 1056
|
||||
isAntilagCondition = bits, U32, 1056, [0:0]
|
||||
ALSMinRPMCondition = bits, U32, 1056, [1:1]
|
||||
ALSMaxRPMCondition = bits, U32, 1056, [2:2]
|
||||
ALSMinCLTCondition = bits, U32, 1056, [3:3]
|
||||
ALSMaxCLTCondition = bits, U32, 1056, [4:4]
|
||||
ALSMaxThrottleIntentCondition = bits, U32, 1056, [5:5]
|
||||
isALSSwitchActivated = bits, U32, 1056, [6:6]
|
||||
ALSActivatePinState = bits, U32, 1056, [7:7]
|
||||
ALSSwitchCondition = bits, U32, 1056, [8:8]
|
||||
ALSTimerCondition = bits, U32, 1056, [9:9]
|
||||
fuelALSCorrection = scalar, F32, 1060, "", 1, 0
|
||||
timingALSCorrection = scalar, S16, 1064, "deg", 0.01, 0
|
||||
timingALSSkip = scalar, S16, 1066, "deg", 0.01, 0
|
||||
; total TS size = 1068
|
||||
isTpsInvalid = bits, U32, 1068, [0:0]
|
||||
m_shouldResetPid = bits, U32, 1068, [1:1]
|
||||
isBelowClosedLoopThreshold = bits, U32, 1068, [2:2]
|
||||
isNotClosedLoop = bits, U32, 1068, [3:3]
|
||||
isZeroRpm = bits, U32, 1068, [4:4]
|
||||
hasInitBoost = bits, U32, 1068, [5:5]
|
||||
rpmTooLow = bits, U32, 1068, [6:6]
|
||||
tpsTooLow = bits, U32, 1068, [7:7]
|
||||
mapTooLow = bits, U32, 1068, [8:8]
|
||||
isPlantValid = bits, U32, 1068, [9:9]
|
||||
isBoostControlled = bits, U32, 1068, [10:10]
|
||||
luaTargetAdd = scalar, S16, 1072, "v", 0.5,0
|
||||
boostOutput = scalar, S16, 1074, "percent", 0.01,0
|
||||
luaTargetMult = scalar, F32, 1076, "v", 1,0
|
||||
openLoopPart = scalar, F32, 1080, "v", 1,0
|
||||
luaOpenLoopAdd = scalar, F32, 1084, "v", 1,0
|
||||
boostControllerClosedLoopPart = scalar, S08, 1088, "%", 0.5,0
|
||||
boostControlTarget = scalar, S16, 1090, "kPa", 0.03333333333333333,0
|
||||
; total TS size = 1092
|
||||
acButtonState = scalar, S08, 1092, "", 1, 0
|
||||
m_acEnabled = bits, U32, 1096, [0:0]
|
||||
engineTooSlow = bits, U32, 1096, [1:1]
|
||||
engineTooFast = bits, U32, 1096, [2:2]
|
||||
noClt = bits, U32, 1096, [3:3]
|
||||
engineTooHot = bits, U32, 1096, [4:4]
|
||||
tpsTooHigh = bits, U32, 1096, [5:5]
|
||||
isDisabledByLua = bits, U32, 1096, [6:6]
|
||||
acCompressorState = bits, U32, 1096, [7:7]
|
||||
acPressureTooLow = bits, U32, 1096, [8:8]
|
||||
acPressureTooHigh = bits, U32, 1096, [9:9]
|
||||
; total TS size = 1100
|
||||
cranking0 = bits, U32, 1100, [0:0]
|
||||
notRunning0 = bits, U32, 1100, [1:1]
|
||||
disabledWhileEngineStopped0 = bits, U32, 1100, [2:2]
|
||||
brokenClt0 = bits, U32, 1100, [3:3]
|
||||
enabledForAc0 = bits, U32, 1100, [4:4]
|
||||
hot0 = bits, U32, 1100, [5:5]
|
||||
cold0 = bits, U32, 1100, [6:6]
|
||||
disabledBySpeed0 = bits, U32, 1100, [7:7]
|
||||
radiatorFanStatus0 = scalar, U08, 1104, "", 1, 0
|
||||
; total TS size = 1108
|
||||
cranking1 = bits, U32, 1108, [0:0]
|
||||
notRunning1 = bits, U32, 1108, [1:1]
|
||||
disabledWhileEngineStopped1 = bits, U32, 1108, [2:2]
|
||||
brokenClt1 = bits, U32, 1108, [3:3]
|
||||
enabledForAc1 = bits, U32, 1108, [4:4]
|
||||
hot1 = bits, U32, 1108, [5:5]
|
||||
cold1 = bits, U32, 1108, [6:6]
|
||||
disabledBySpeed1 = bits, U32, 1108, [7:7]
|
||||
radiatorFanStatus1 = scalar, U08, 1112, "", 1, 0
|
||||
; total TS size = 1116
|
||||
isBenchTest = bits, U32, 1116, [0:0]
|
||||
hasIgnitionVoltage = bits, U32, 1116, [1:1]
|
||||
mainRelayState = bits, U32, 1116, [2:2]
|
||||
delayedShutoffRequested = bits, U32, 1116, [3:3]
|
||||
isPrime = bits, U32, 1116, [0:0]
|
||||
engineTurnedRecently = bits, U32, 1116, [1:1]
|
||||
isFuelPumpOn = bits, U32, 1116, [2:2]
|
||||
ignitionOn = bits, U32, 1116, [3:3]
|
||||
; total TS size = 1120
|
||||
lua_fuelAdd = scalar, F32, 1120, "g", 1, 0
|
||||
lua_fuelMult = scalar, F32, 1124, "", 1, 0
|
||||
lua_clutchUpState = bits, U32, 1128, [0:0]
|
||||
lua_brakePedalState = bits, U32, 1128, [1:1]
|
||||
lua_acRequestState = bits, U32, 1128, [2:2]
|
||||
lua_luaDisableEtb = bits, U32, 1128, [3:3]
|
||||
lua_luaIgnCut = bits, U32, 1128, [4:4]
|
||||
lua_luaFuelCut = bits, U32, 1128, [5:5]
|
||||
lua_clutchDownState = bits, U32, 1128, [6:6]
|
||||
lua_disableDecelerationFuelCutOff = bits, U32, 1128, [7:7]
|
||||
sd_tCharge = scalar, S16, 1132, "deg C", 0.01, 0
|
||||
sd_tChargeK = scalar, F32, 1136, "", 1, 0
|
||||
crankingFuel_coolantTemperatureCoefficient = scalar, F32, 1140, "", 1, 0
|
||||
crankingFuel_tpsCoefficient = scalar, F32, 1144, "", 1, 0
|
||||
crankingFuel_durationCoefficient = scalar, F32, 1148, "", 1, 0
|
||||
crankingFuel_fuel = scalar, U16, 1152, "mg", 0.01, 0
|
||||
baroCorrection = scalar, F32, 1156, "", 1, 0
|
||||
hellenBoardId = scalar, S16, 1160, "id", 1, 0
|
||||
clutchUpState = scalar, S08, 1162, "", 1, 0
|
||||
clutchDownState = scalar, S08, 1163, "", 1, 0
|
||||
brakePedalState = scalar, S08, 1164, "", 1, 0
|
||||
startStopState = scalar, S08, 1165, "", 1, 0
|
||||
smartChipState = scalar, S08, 1166, "", 1, 0
|
||||
smartChipRestartCounter = scalar, S08, 1167, "", 1, 0
|
||||
smartChipAliveCounter = scalar, S08, 1168, "", 1, 0
|
||||
startStopPhysicalState = bits, U32, 1172, [0:0]
|
||||
acrActive = bits, U32, 1172, [1:1]
|
||||
acrEngineMovedRecently = bits, U32, 1172, [2:2]
|
||||
heaterControlEnabled = bits, U32, 1172, [3:3]
|
||||
luaDigitalState0 = bits, U32, 1172, [4:4]
|
||||
luaDigitalState1 = bits, U32, 1172, [5:5]
|
||||
luaDigitalState2 = bits, U32, 1172, [6:6]
|
||||
luaDigitalState3 = bits, U32, 1172, [7:7]
|
||||
startStopStateToggleCounter = scalar, U32, 1176, "", 1, 0
|
||||
luaSoftSparkSkip = scalar, F32, 1180, "", 1, 0
|
||||
luaHardSparkSkip = scalar, F32, 1184, "", 1, 0
|
||||
tractionControlSparkSkip = scalar, F32, 1188, "", 1, 0
|
||||
desiredRpmLimit = scalar, S16, 1192, "rpm", 1, 0
|
||||
fuelInjectionCounter = scalar, U32, 1196, "", 1, 0
|
||||
globalSparkCounter = scalar, U32, 1200, "", 1, 0
|
||||
fuelingLoad = scalar, F32, 1204, "", 1, 0
|
||||
ignitionLoad = scalar, F32, 1208, "", 1, 0
|
||||
veTableYAxis = scalar, U16, 1212, "%", 0.01, 0
|
||||
overDwellCounter = scalar, U08, 1214, "", 1, 0
|
||||
overDwellNotScheduledCounter = scalar, U08, 1215, "", 1, 0
|
||||
sparkOutOfOrderCounter = scalar, U08, 1216, "", 1, 0
|
||||
; total TS size = 1220
|
||||
tpsFrom = scalar, F32, 1220
|
||||
tpsTo = scalar, F32, 1224
|
||||
deltaTps = scalar, F32, 1228
|
||||
extraFuel = scalar, F32, 1232, "", 1, 0
|
||||
valueFromTable = scalar, F32, 1236, "", 1, 0
|
||||
isAboveAccelThreshold = bits, U32, 1240, [0:0]
|
||||
isBelowDecelThreshold = bits, U32, 1240, [1:1]
|
||||
isTimeToResetAccumulator = bits, U32, 1240, [2:2]
|
||||
isFractionalEnrichment = bits, U32, 1240, [3:3]
|
||||
belowEpsilon = bits, U32, 1240, [4:4]
|
||||
tooShort = bits, U32, 1240, [5:5]
|
||||
fractionalInjFuel = scalar, F32, 1244, "", 1, 0
|
||||
accumulatedValue = scalar, F32, 1248, "", 1, 0
|
||||
maxExtraPerCycle = scalar, F32, 1252, "", 1, 0
|
||||
maxExtraPerPeriod = scalar, F32, 1256, "", 1, 0
|
||||
maxInjectedPerPeriod = scalar, F32, 1260, "", 1, 0
|
||||
cycleCnt = scalar, S32, 1264, "", 1, 0
|
||||
; total TS size = 1268
|
||||
hwEventCounters1 = scalar, U32, 1268, "", 1, 0
|
||||
hwEventCounters2 = scalar, U32, 1272, "", 1, 0
|
||||
hwEventCounters3 = scalar, U32, 1276, "", 1, 0
|
||||
hwEventCounters4 = scalar, U32, 1280, "", 1, 0
|
||||
hwEventCounters5 = scalar, U32, 1284, "", 1, 0
|
||||
hwEventCounters6 = scalar, U32, 1288, "", 1, 0
|
||||
vvtCamCounter = scalar, U32, 1292, "", 1, 0
|
||||
mapVvt_MAP_AT_SPECIAL_POINT = scalar, F32, 1296, "kPa", 1, 0
|
||||
mapVvt_MAP_AT_DIFF = scalar, F32, 1300, "kPa", 1, 0
|
||||
mapVvt_MAP_AT_CYCLE_COUNT = scalar, S08, 1304, "distance", 1, 0
|
||||
mapVvt_sync_counter = scalar, U08, 1305, "counter", 1, 0
|
||||
currentEngineDecodedPhase = scalar, F32, 1308, "deg", 1, 0
|
||||
triggerToothAngleError = scalar, F32, 1312, "deg", 1, 0
|
||||
triggerIgnoredToothCount = scalar, U08, 1316, "", 1, 0
|
||||
mapCamPrevToothAngle = scalar, F32, 1320, "deg", 1, 0
|
||||
isDecodingMapCam = bits, U32, 1324, [0:0]
|
||||
triggerElapsedUs = scalar, U32, 1328, "", 1, 0
|
||||
; total TS size = 1332
|
||||
crankSynchronizationCounter0 = scalar, U32, 1332, "", 1, 0
|
||||
vvtSyncGapRatio0 = scalar, F32, 1336, "", 1, 0
|
||||
vvtToothDurations00 = scalar, U32, 1340, "us", 1, 0
|
||||
vvtCurrentPosition0 = scalar, F32, 1344, "sync: Primary Cam Position", 1, 0
|
||||
vvtToothPosition10 = scalar, F32, 1348, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition20 = scalar, F32, 1352, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition30 = scalar, F32, 1356, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition40 = scalar, F32, 1360, "sync: Cam Tooth Position", 1, 0
|
||||
triggerSyncGapRatio0 = scalar, F32, 1364, "", 1, 0
|
||||
triggerStateIndex0 = scalar, U08, 1368, "", 1, 0
|
||||
vvtStateIndex0 = scalar, U08, 1369, "", 1, 0
|
||||
; total TS size = 1372
|
||||
crankSynchronizationCounter1 = scalar, U32, 1372, "", 1, 0
|
||||
vvtSyncGapRatio1 = scalar, F32, 1376, "", 1, 0
|
||||
vvtToothDurations01 = scalar, U32, 1380, "us", 1, 0
|
||||
vvtCurrentPosition1 = scalar, F32, 1384, "sync: Primary Cam Position", 1, 0
|
||||
vvtToothPosition11 = scalar, F32, 1388, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition21 = scalar, F32, 1392, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition31 = scalar, F32, 1396, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition41 = scalar, F32, 1400, "sync: Cam Tooth Position", 1, 0
|
||||
triggerSyncGapRatio1 = scalar, F32, 1404, "", 1, 0
|
||||
triggerStateIndex1 = scalar, U08, 1408, "", 1, 0
|
||||
vvtStateIndex1 = scalar, U08, 1409, "", 1, 0
|
||||
; total TS size = 1412
|
||||
crankSynchronizationCounter2 = scalar, U32, 1412, "", 1, 0
|
||||
vvtSyncGapRatio2 = scalar, F32, 1416, "", 1, 0
|
||||
vvtToothDurations02 = scalar, U32, 1420, "us", 1, 0
|
||||
vvtCurrentPosition2 = scalar, F32, 1424, "sync: Primary Cam Position", 1, 0
|
||||
vvtToothPosition12 = scalar, F32, 1428, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition22 = scalar, F32, 1432, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition32 = scalar, F32, 1436, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition42 = scalar, F32, 1440, "sync: Cam Tooth Position", 1, 0
|
||||
triggerSyncGapRatio2 = scalar, F32, 1444, "", 1, 0
|
||||
triggerStateIndex2 = scalar, U08, 1448, "", 1, 0
|
||||
vvtStateIndex2 = scalar, U08, 1449, "", 1, 0
|
||||
; total TS size = 1452
|
||||
crankSynchronizationCounter3 = scalar, U32, 1452, "", 1, 0
|
||||
vvtSyncGapRatio3 = scalar, F32, 1456, "", 1, 0
|
||||
vvtToothDurations03 = scalar, U32, 1460, "us", 1, 0
|
||||
vvtCurrentPosition3 = scalar, F32, 1464, "sync: Primary Cam Position", 1, 0
|
||||
vvtToothPosition13 = scalar, F32, 1468, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition23 = scalar, F32, 1472, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition33 = scalar, F32, 1476, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition43 = scalar, F32, 1480, "sync: Cam Tooth Position", 1, 0
|
||||
triggerSyncGapRatio3 = scalar, F32, 1484, "", 1, 0
|
||||
triggerStateIndex3 = scalar, U08, 1488, "", 1, 0
|
||||
vvtStateIndex3 = scalar, U08, 1489, "", 1, 0
|
||||
; total TS size = 1492
|
||||
crankSynchronizationCounter4 = scalar, U32, 1492, "", 1, 0
|
||||
vvtSyncGapRatio4 = scalar, F32, 1496, "", 1, 0
|
||||
vvtToothDurations04 = scalar, U32, 1500, "us", 1, 0
|
||||
vvtCurrentPosition4 = scalar, F32, 1504, "sync: Primary Cam Position", 1, 0
|
||||
vvtToothPosition14 = scalar, F32, 1508, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition24 = scalar, F32, 1512, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition34 = scalar, F32, 1516, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition44 = scalar, F32, 1520, "sync: Cam Tooth Position", 1, 0
|
||||
triggerSyncGapRatio4 = scalar, F32, 1524, "", 1, 0
|
||||
triggerStateIndex4 = scalar, U08, 1528, "", 1, 0
|
||||
vvtStateIndex4 = scalar, U08, 1529, "", 1, 0
|
||||
; total TS size = 1532
|
||||
camResyncCounter = scalar, U08, 1532, "", 1, 0
|
||||
m_hasSynchronizedPhase = bits, U32, 1536, [0:0]
|
||||
; total TS size = 1540
|
||||
wallFuelCorrection = scalar, F32, 1540, "", 1, 0
|
||||
wallFuel = scalar, F32, 1544, "", 1, 0
|
||||
; total TS size = 1548
|
||||
idleState = bits, S32, 1548, [0:2], "not important"
|
||||
currentIdlePosition = scalar, F32, 1552
|
||||
baseIdlePosition = scalar, F32, 1556
|
||||
idleClosedLoop = scalar, F32, 1560
|
||||
iacByTpsTaper = scalar, F32, 1564
|
||||
throttlePedalUpState = scalar, S32, 1568, "", 1, 0
|
||||
mightResetPid = bits, U32, 1572, [0:0]
|
||||
shouldResetPid = bits, U32, 1572, [1:1]
|
||||
wasResetPid = bits, U32, 1572, [2:2]
|
||||
mustResetPid = bits, U32, 1572, [3:3]
|
||||
isCranking = bits, U32, 1572, [4:4]
|
||||
isIacTableForCoasting = bits, U32, 1572, [5:5]
|
||||
notIdling = bits, U32, 1572, [6:6]
|
||||
needReset = bits, U32, 1572, [7:7]
|
||||
isInDeadZone = bits, U32, 1572, [8:8]
|
||||
isBlipping = bits, U32, 1572, [9:9]
|
||||
useClosedLoop = bits, U32, 1572, [10:10]
|
||||
badTps = bits, U32, 1572, [11:11]
|
||||
looksLikeRunning = bits, U32, 1572, [12:12]
|
||||
looksLikeCoasting = bits, U32, 1572, [13:13]
|
||||
looksLikeCrankToIdle = bits, U32, 1572, [14:14]
|
||||
isIdleCoasting = bits, U32, 1572, [15:15]
|
||||
isIdleClosedLoop = bits, U32, 1572, [16:16]
|
||||
idleTarget = scalar, S32, 1576, "", 1, 0
|
||||
targetRpmByClt = scalar, S32, 1580, "", 1, 0
|
||||
targetRpmAc = scalar, S32, 1584, "", 1, 0
|
||||
iacByRpmTaper = scalar, F32, 1588
|
||||
luaAdd = scalar, F32, 1592
|
||||
; total TS size = 1596
|
||||
targetWithIdlePosition0 = scalar, F32, 1596, "per", 1,0
|
||||
trim0 = scalar, F32, 1600, "", 1, 0
|
||||
luaAdjustment0 = scalar, F32, 1604, "per", 1,0
|
||||
m_wastegatePosition0 = scalar, F32, 1608, "per", 1,0
|
||||
etbFeedForward0 = scalar, F32, 1612
|
||||
etbIntegralError0 = scalar, F32, 1616, "", 1, 0
|
||||
etbCurrentTarget0 = scalar, F32, 1620, "%", 1, 0
|
||||
etbCurrentAdjustedTarget0 = scalar, F32, 1624, "%", 1, 0
|
||||
etbRevLimitActive0 = bits, U32, 1628, [0:0]
|
||||
jamDetected0 = bits, U32, 1628, [1:1]
|
||||
etbTpsErrorCounter0 = scalar, U16, 1632, "count", 1,0
|
||||
etbPpsErrorCounter0 = scalar, U16, 1634, "count", 1,0
|
||||
etbErrorCode0 = scalar, S08, 1636, "", 1, 0
|
||||
tcEtbDrop0 = scalar, S08, 1637, "%", 1, 0
|
||||
jamTimer0 = scalar, U16, 1638, "sec", 0.01, 0
|
||||
adjustedEtbTarget0 = scalar, S08, 1640, "%", 1, 0
|
||||
; total TS size = 1644
|
||||
targetWithIdlePosition1 = scalar, F32, 1644, "per", 1,0
|
||||
trim1 = scalar, F32, 1648, "", 1, 0
|
||||
luaAdjustment1 = scalar, F32, 1652, "per", 1,0
|
||||
m_wastegatePosition1 = scalar, F32, 1656, "per", 1,0
|
||||
etbFeedForward1 = scalar, F32, 1660
|
||||
etbIntegralError1 = scalar, F32, 1664, "", 1, 0
|
||||
etbCurrentTarget1 = scalar, F32, 1668, "%", 1, 0
|
||||
etbCurrentAdjustedTarget1 = scalar, F32, 1672, "%", 1, 0
|
||||
etbRevLimitActive1 = bits, U32, 1676, [0:0]
|
||||
jamDetected1 = bits, U32, 1676, [1:1]
|
||||
etbTpsErrorCounter1 = scalar, U16, 1680, "count", 1,0
|
||||
etbPpsErrorCounter1 = scalar, U16, 1682, "count", 1,0
|
||||
etbErrorCode1 = scalar, S08, 1684, "", 1, 0
|
||||
tcEtbDrop1 = scalar, S08, 1685, "%", 1, 0
|
||||
jamTimer1 = scalar, U16, 1686, "sec", 0.01, 0
|
||||
adjustedEtbTarget1 = scalar, S08, 1688, "%", 1, 0
|
||||
; total TS size = 1692
|
||||
faultCode0 = scalar, U08, 1692, "", 1, 0
|
||||
heaterDuty0 = scalar, U08, 1693, "%", 1, 0
|
||||
pumpDuty0 = scalar, U08, 1694, "%", 1, 0
|
||||
tempC0 = scalar, U16, 1696, "C", 1, 0
|
||||
nernstVoltage0 = scalar, U16, 1698, "V", 0.001, 0
|
||||
esr0 = scalar, U16, 1700, "ohm", 1, 0
|
||||
; total TS size = 1704
|
||||
faultCode1 = scalar, U08, 1704, "", 1, 0
|
||||
heaterDuty1 = scalar, U08, 1705, "%", 1, 0
|
||||
pumpDuty1 = scalar, U08, 1706, "%", 1, 0
|
||||
tempC1 = scalar, U16, 1708, "C", 1, 0
|
||||
nernstVoltage1 = scalar, U16, 1710, "V", 0.001, 0
|
||||
esr1 = scalar, U16, 1712, "ohm", 1, 0
|
||||
; total TS size = 1716
|
||||
dcOutput0 = scalar, F32, 1716, "per", 1,0
|
||||
isEnabled0_int = scalar, U08, 1720, "per", 1,0
|
||||
isEnabled0 = bits, U32, 1724, [0:0]
|
||||
; total TS size = 1728
|
||||
value0 = scalar, U16, 1728, "value", 1,0
|
||||
value1 = scalar, U16, 1730, "value", 1,0
|
||||
errorRate = scalar, F32, 1732, "ratio", 1,0
|
||||
; total TS size = 1736
|
||||
vvtTarget = scalar, U16, 1736, "deg", 0.1, 0
|
||||
vvtOutput = scalar, U08, 1738, "%", 0.5, 0
|
||||
isBenchTest = bits, U32, 1120, [0:0]
|
||||
hasIgnitionVoltage = bits, U32, 1120, [1:1]
|
||||
mainRelayState = bits, U32, 1120, [2:2]
|
||||
delayedShutoffRequested = bits, U32, 1120, [3:3]
|
||||
; total TS size = 1124
|
||||
lua_fuelAdd = scalar, F32, 1124, "g", 1, 0
|
||||
lua_fuelMult = scalar, F32, 1128, "", 1, 0
|
||||
lua_clutchUpState = bits, U32, 1132, [0:0]
|
||||
lua_brakePedalState = bits, U32, 1132, [1:1]
|
||||
lua_acRequestState = bits, U32, 1132, [2:2]
|
||||
lua_luaDisableEtb = bits, U32, 1132, [3:3]
|
||||
lua_luaIgnCut = bits, U32, 1132, [4:4]
|
||||
lua_luaFuelCut = bits, U32, 1132, [5:5]
|
||||
lua_clutchDownState = bits, U32, 1132, [6:6]
|
||||
lua_disableDecelerationFuelCutOff = bits, U32, 1132, [7:7]
|
||||
sd_tCharge = scalar, S16, 1136, "deg C", 0.01, 0
|
||||
sd_tChargeK = scalar, F32, 1140, "", 1, 0
|
||||
crankingFuel_coolantTemperatureCoefficient = scalar, F32, 1144, "", 1, 0
|
||||
crankingFuel_tpsCoefficient = scalar, F32, 1148, "", 1, 0
|
||||
crankingFuel_durationCoefficient = scalar, F32, 1152, "", 1, 0
|
||||
crankingFuel_fuel = scalar, U16, 1156, "mg", 0.01, 0
|
||||
baroCorrection = scalar, F32, 1160, "", 1, 0
|
||||
hellenBoardId = scalar, S16, 1164, "id", 1, 0
|
||||
clutchUpState = scalar, S08, 1166, "", 1, 0
|
||||
clutchDownState = scalar, S08, 1167, "", 1, 0
|
||||
brakePedalState = scalar, S08, 1168, "", 1, 0
|
||||
startStopState = scalar, S08, 1169, "", 1, 0
|
||||
smartChipState = scalar, S08, 1170, "", 1, 0
|
||||
smartChipRestartCounter = scalar, S08, 1171, "", 1, 0
|
||||
smartChipAliveCounter = scalar, S08, 1172, "", 1, 0
|
||||
startStopPhysicalState = bits, U32, 1176, [0:0]
|
||||
acrActive = bits, U32, 1176, [1:1]
|
||||
acrEngineMovedRecently = bits, U32, 1176, [2:2]
|
||||
heaterControlEnabled = bits, U32, 1176, [3:3]
|
||||
luaDigitalState0 = bits, U32, 1176, [4:4]
|
||||
luaDigitalState1 = bits, U32, 1176, [5:5]
|
||||
luaDigitalState2 = bits, U32, 1176, [6:6]
|
||||
luaDigitalState3 = bits, U32, 1176, [7:7]
|
||||
startStopStateToggleCounter = scalar, U32, 1180, "", 1, 0
|
||||
luaSoftSparkSkip = scalar, F32, 1184, "", 1, 0
|
||||
luaHardSparkSkip = scalar, F32, 1188, "", 1, 0
|
||||
tractionControlSparkSkip = scalar, F32, 1192, "", 1, 0
|
||||
desiredRpmLimit = scalar, S16, 1196, "rpm", 1, 0
|
||||
fuelInjectionCounter = scalar, U32, 1200, "", 1, 0
|
||||
globalSparkCounter = scalar, U32, 1204, "", 1, 0
|
||||
fuelingLoad = scalar, F32, 1208, "", 1, 0
|
||||
ignitionLoad = scalar, F32, 1212, "", 1, 0
|
||||
veTableYAxis = scalar, U16, 1216, "%", 0.01, 0
|
||||
overDwellCounter = scalar, U08, 1218, "", 1, 0
|
||||
overDwellNotScheduledCounter = scalar, U08, 1219, "", 1, 0
|
||||
sparkOutOfOrderCounter = scalar, U08, 1220, "", 1, 0
|
||||
; total TS size = 1224
|
||||
tpsFrom = scalar, F32, 1224
|
||||
tpsTo = scalar, F32, 1228
|
||||
deltaTps = scalar, F32, 1232
|
||||
extraFuel = scalar, F32, 1236, "", 1, 0
|
||||
valueFromTable = scalar, F32, 1240, "", 1, 0
|
||||
isAboveAccelThreshold = bits, U32, 1244, [0:0]
|
||||
isBelowDecelThreshold = bits, U32, 1244, [1:1]
|
||||
isTimeToResetAccumulator = bits, U32, 1244, [2:2]
|
||||
isFractionalEnrichment = bits, U32, 1244, [3:3]
|
||||
belowEpsilon = bits, U32, 1244, [4:4]
|
||||
tooShort = bits, U32, 1244, [5:5]
|
||||
fractionalInjFuel = scalar, F32, 1248, "", 1, 0
|
||||
accumulatedValue = scalar, F32, 1252, "", 1, 0
|
||||
maxExtraPerCycle = scalar, F32, 1256, "", 1, 0
|
||||
maxExtraPerPeriod = scalar, F32, 1260, "", 1, 0
|
||||
maxInjectedPerPeriod = scalar, F32, 1264, "", 1, 0
|
||||
cycleCnt = scalar, S32, 1268, "", 1, 0
|
||||
; total TS size = 1272
|
||||
hwEventCounters1 = scalar, U32, 1272, "", 1, 0
|
||||
hwEventCounters2 = scalar, U32, 1276, "", 1, 0
|
||||
hwEventCounters3 = scalar, U32, 1280, "", 1, 0
|
||||
hwEventCounters4 = scalar, U32, 1284, "", 1, 0
|
||||
hwEventCounters5 = scalar, U32, 1288, "", 1, 0
|
||||
hwEventCounters6 = scalar, U32, 1292, "", 1, 0
|
||||
vvtCamCounter = scalar, U32, 1296, "", 1, 0
|
||||
mapVvt_MAP_AT_SPECIAL_POINT = scalar, F32, 1300, "kPa", 1, 0
|
||||
mapVvt_MAP_AT_DIFF = scalar, F32, 1304, "kPa", 1, 0
|
||||
mapVvt_MAP_AT_CYCLE_COUNT = scalar, S08, 1308, "distance", 1, 0
|
||||
mapVvt_sync_counter = scalar, U08, 1309, "counter", 1, 0
|
||||
currentEngineDecodedPhase = scalar, F32, 1312, "deg", 1, 0
|
||||
triggerToothAngleError = scalar, F32, 1316, "deg", 1, 0
|
||||
triggerIgnoredToothCount = scalar, U08, 1320, "", 1, 0
|
||||
mapCamPrevToothAngle = scalar, F32, 1324, "deg", 1, 0
|
||||
isDecodingMapCam = bits, U32, 1328, [0:0]
|
||||
triggerElapsedUs = scalar, U32, 1332, "", 1, 0
|
||||
; total TS size = 1336
|
||||
crankSynchronizationCounter0 = scalar, U32, 1336, "", 1, 0
|
||||
vvtSyncGapRatio0 = scalar, F32, 1340, "", 1, 0
|
||||
vvtToothDurations00 = scalar, U32, 1344, "us", 1, 0
|
||||
vvtCurrentPosition0 = scalar, F32, 1348, "sync: Primary Cam Position", 1, 0
|
||||
vvtToothPosition10 = scalar, F32, 1352, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition20 = scalar, F32, 1356, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition30 = scalar, F32, 1360, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition40 = scalar, F32, 1364, "sync: Cam Tooth Position", 1, 0
|
||||
triggerSyncGapRatio0 = scalar, F32, 1368, "", 1, 0
|
||||
triggerStateIndex0 = scalar, U08, 1372, "", 1, 0
|
||||
vvtStateIndex0 = scalar, U08, 1373, "", 1, 0
|
||||
; total TS size = 1376
|
||||
crankSynchronizationCounter1 = scalar, U32, 1376, "", 1, 0
|
||||
vvtSyncGapRatio1 = scalar, F32, 1380, "", 1, 0
|
||||
vvtToothDurations01 = scalar, U32, 1384, "us", 1, 0
|
||||
vvtCurrentPosition1 = scalar, F32, 1388, "sync: Primary Cam Position", 1, 0
|
||||
vvtToothPosition11 = scalar, F32, 1392, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition21 = scalar, F32, 1396, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition31 = scalar, F32, 1400, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition41 = scalar, F32, 1404, "sync: Cam Tooth Position", 1, 0
|
||||
triggerSyncGapRatio1 = scalar, F32, 1408, "", 1, 0
|
||||
triggerStateIndex1 = scalar, U08, 1412, "", 1, 0
|
||||
vvtStateIndex1 = scalar, U08, 1413, "", 1, 0
|
||||
; total TS size = 1416
|
||||
crankSynchronizationCounter2 = scalar, U32, 1416, "", 1, 0
|
||||
vvtSyncGapRatio2 = scalar, F32, 1420, "", 1, 0
|
||||
vvtToothDurations02 = scalar, U32, 1424, "us", 1, 0
|
||||
vvtCurrentPosition2 = scalar, F32, 1428, "sync: Primary Cam Position", 1, 0
|
||||
vvtToothPosition12 = scalar, F32, 1432, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition22 = scalar, F32, 1436, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition32 = scalar, F32, 1440, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition42 = scalar, F32, 1444, "sync: Cam Tooth Position", 1, 0
|
||||
triggerSyncGapRatio2 = scalar, F32, 1448, "", 1, 0
|
||||
triggerStateIndex2 = scalar, U08, 1452, "", 1, 0
|
||||
vvtStateIndex2 = scalar, U08, 1453, "", 1, 0
|
||||
; total TS size = 1456
|
||||
crankSynchronizationCounter3 = scalar, U32, 1456, "", 1, 0
|
||||
vvtSyncGapRatio3 = scalar, F32, 1460, "", 1, 0
|
||||
vvtToothDurations03 = scalar, U32, 1464, "us", 1, 0
|
||||
vvtCurrentPosition3 = scalar, F32, 1468, "sync: Primary Cam Position", 1, 0
|
||||
vvtToothPosition13 = scalar, F32, 1472, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition23 = scalar, F32, 1476, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition33 = scalar, F32, 1480, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition43 = scalar, F32, 1484, "sync: Cam Tooth Position", 1, 0
|
||||
triggerSyncGapRatio3 = scalar, F32, 1488, "", 1, 0
|
||||
triggerStateIndex3 = scalar, U08, 1492, "", 1, 0
|
||||
vvtStateIndex3 = scalar, U08, 1493, "", 1, 0
|
||||
; total TS size = 1496
|
||||
crankSynchronizationCounter4 = scalar, U32, 1496, "", 1, 0
|
||||
vvtSyncGapRatio4 = scalar, F32, 1500, "", 1, 0
|
||||
vvtToothDurations04 = scalar, U32, 1504, "us", 1, 0
|
||||
vvtCurrentPosition4 = scalar, F32, 1508, "sync: Primary Cam Position", 1, 0
|
||||
vvtToothPosition14 = scalar, F32, 1512, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition24 = scalar, F32, 1516, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition34 = scalar, F32, 1520, "sync: Cam Tooth Position", 1, 0
|
||||
vvtToothPosition44 = scalar, F32, 1524, "sync: Cam Tooth Position", 1, 0
|
||||
triggerSyncGapRatio4 = scalar, F32, 1528, "", 1, 0
|
||||
triggerStateIndex4 = scalar, U08, 1532, "", 1, 0
|
||||
vvtStateIndex4 = scalar, U08, 1533, "", 1, 0
|
||||
; total TS size = 1536
|
||||
camResyncCounter = scalar, U08, 1536, "", 1, 0
|
||||
m_hasSynchronizedPhase = bits, U32, 1540, [0:0]
|
||||
; total TS size = 1544
|
||||
wallFuelCorrection = scalar, F32, 1544, "", 1, 0
|
||||
wallFuel = scalar, F32, 1548, "", 1, 0
|
||||
; total TS size = 1552
|
||||
idleState = bits, S32, 1552, [0:2], "not important"
|
||||
currentIdlePosition = scalar, F32, 1556
|
||||
baseIdlePosition = scalar, F32, 1560
|
||||
idleClosedLoop = scalar, F32, 1564
|
||||
iacByTpsTaper = scalar, F32, 1568
|
||||
throttlePedalUpState = scalar, S32, 1572, "", 1, 0
|
||||
mightResetPid = bits, U32, 1576, [0:0]
|
||||
shouldResetPid = bits, U32, 1576, [1:1]
|
||||
wasResetPid = bits, U32, 1576, [2:2]
|
||||
mustResetPid = bits, U32, 1576, [3:3]
|
||||
isCranking = bits, U32, 1576, [4:4]
|
||||
isIacTableForCoasting = bits, U32, 1576, [5:5]
|
||||
notIdling = bits, U32, 1576, [6:6]
|
||||
needReset = bits, U32, 1576, [7:7]
|
||||
isInDeadZone = bits, U32, 1576, [8:8]
|
||||
isBlipping = bits, U32, 1576, [9:9]
|
||||
useClosedLoop = bits, U32, 1576, [10:10]
|
||||
badTps = bits, U32, 1576, [11:11]
|
||||
looksLikeRunning = bits, U32, 1576, [12:12]
|
||||
looksLikeCoasting = bits, U32, 1576, [13:13]
|
||||
looksLikeCrankToIdle = bits, U32, 1576, [14:14]
|
||||
isIdleCoasting = bits, U32, 1576, [15:15]
|
||||
isIdleClosedLoop = bits, U32, 1576, [16:16]
|
||||
idleTarget = scalar, S32, 1580, "", 1, 0
|
||||
targetRpmByClt = scalar, S32, 1584, "", 1, 0
|
||||
targetRpmAc = scalar, S32, 1588, "", 1, 0
|
||||
iacByRpmTaper = scalar, F32, 1592
|
||||
luaAdd = scalar, F32, 1596
|
||||
; total TS size = 1600
|
||||
targetWithIdlePosition0 = scalar, F32, 1600, "per", 1,0
|
||||
trim0 = scalar, F32, 1604, "", 1, 0
|
||||
luaAdjustment0 = scalar, F32, 1608, "per", 1,0
|
||||
m_wastegatePosition0 = scalar, F32, 1612, "per", 1,0
|
||||
etbFeedForward0 = scalar, F32, 1616
|
||||
etbIntegralError0 = scalar, F32, 1620, "", 1, 0
|
||||
etbCurrentTarget0 = scalar, F32, 1624, "%", 1, 0
|
||||
etbCurrentAdjustedTarget0 = scalar, F32, 1628, "%", 1, 0
|
||||
etbRevLimitActive0 = bits, U32, 1632, [0:0]
|
||||
jamDetected0 = bits, U32, 1632, [1:1]
|
||||
etbTpsErrorCounter0 = scalar, U16, 1636, "count", 1,0
|
||||
etbPpsErrorCounter0 = scalar, U16, 1638, "count", 1,0
|
||||
etbErrorCode0 = scalar, S08, 1640, "", 1, 0
|
||||
tcEtbDrop0 = scalar, S08, 1641, "%", 1, 0
|
||||
jamTimer0 = scalar, U16, 1642, "sec", 0.01, 0
|
||||
adjustedEtbTarget0 = scalar, S08, 1644, "%", 1, 0
|
||||
; total TS size = 1648
|
||||
targetWithIdlePosition1 = scalar, F32, 1648, "per", 1,0
|
||||
trim1 = scalar, F32, 1652, "", 1, 0
|
||||
luaAdjustment1 = scalar, F32, 1656, "per", 1,0
|
||||
m_wastegatePosition1 = scalar, F32, 1660, "per", 1,0
|
||||
etbFeedForward1 = scalar, F32, 1664
|
||||
etbIntegralError1 = scalar, F32, 1668, "", 1, 0
|
||||
etbCurrentTarget1 = scalar, F32, 1672, "%", 1, 0
|
||||
etbCurrentAdjustedTarget1 = scalar, F32, 1676, "%", 1, 0
|
||||
etbRevLimitActive1 = bits, U32, 1680, [0:0]
|
||||
jamDetected1 = bits, U32, 1680, [1:1]
|
||||
etbTpsErrorCounter1 = scalar, U16, 1684, "count", 1,0
|
||||
etbPpsErrorCounter1 = scalar, U16, 1686, "count", 1,0
|
||||
etbErrorCode1 = scalar, S08, 1688, "", 1, 0
|
||||
tcEtbDrop1 = scalar, S08, 1689, "%", 1, 0
|
||||
jamTimer1 = scalar, U16, 1690, "sec", 0.01, 0
|
||||
adjustedEtbTarget1 = scalar, S08, 1692, "%", 1, 0
|
||||
; total TS size = 1696
|
||||
faultCode0 = scalar, U08, 1696, "", 1, 0
|
||||
heaterDuty0 = scalar, U08, 1697, "%", 1, 0
|
||||
pumpDuty0 = scalar, U08, 1698, "%", 1, 0
|
||||
tempC0 = scalar, U16, 1700, "C", 1, 0
|
||||
nernstVoltage0 = scalar, U16, 1702, "V", 0.001, 0
|
||||
esr0 = scalar, U16, 1704, "ohm", 1, 0
|
||||
; total TS size = 1708
|
||||
faultCode1 = scalar, U08, 1708, "", 1, 0
|
||||
heaterDuty1 = scalar, U08, 1709, "%", 1, 0
|
||||
pumpDuty1 = scalar, U08, 1710, "%", 1, 0
|
||||
tempC1 = scalar, U16, 1712, "C", 1, 0
|
||||
nernstVoltage1 = scalar, U16, 1714, "V", 0.001, 0
|
||||
esr1 = scalar, U16, 1716, "ohm", 1, 0
|
||||
; total TS size = 1720
|
||||
dcOutput0 = scalar, F32, 1720, "per", 1,0
|
||||
isEnabled0_int = scalar, U08, 1724, "per", 1,0
|
||||
isEnabled0 = bits, U32, 1728, [0:0]
|
||||
; total TS size = 1732
|
||||
value0 = scalar, U16, 1732, "value", 1,0
|
||||
value1 = scalar, U16, 1734, "value", 1,0
|
||||
errorRate = scalar, F32, 1736, "ratio", 1,0
|
||||
; total TS size = 1740
|
||||
lambdaCurrentlyGood = bits, U32, 1740, [0:0]
|
||||
lambdaMonitorCut = bits, U32, 1740, [1:1]
|
||||
lambdaTimeSinceGood = scalar, U16, 1744, "sec", 0.01, 0
|
||||
; total TS size = 1748
|
||||
vvtTarget = scalar, U16, 1740, "deg", 0.1, 0
|
||||
vvtOutput = scalar, U08, 1742, "%", 0.5, 0
|
||||
; total TS size = 1744
|
||||
lambdaCurrentlyGood = bits, U32, 1744, [0:0]
|
||||
lambdaMonitorCut = bits, U32, 1744, [1:1]
|
||||
lambdaTimeSinceGood = scalar, U16, 1748, "sec", 0.01, 0
|
||||
; total TS size = 1752
|
||||
|
|
|
@ -438,209 +438,209 @@ m_deadtime("Fuel: injector lag", SensorCategory.SENSOR_INPUTS, FieldType.INT, 10
|
|||
pressureDelta("Fuel: Injector pressure delta", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1036, 1.0, -1000.0, 1000.0, "kPa"),
|
||||
pressureRatio("Fuel: Injector pressure ratio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1040, 1.0, 0.0, 100.0, ""),
|
||||
retardThresholdRpm("retardThresholdRpm", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1044, 1.0, -1.0, -1.0, ""),
|
||||
fuelALSCorrection("fuelALSCorrection", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1056, 1.0, -1.0, -1.0, ""),
|
||||
timingALSCorrection("timingALSCorrection", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1060, 0.01, -20.0, 20.0, "deg"),
|
||||
timingALSSkip("timingALSSkip", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1062, 0.01, 0.0, 50.0, "deg"),
|
||||
luaTargetAdd("Boost: Lua target add", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1068, 0.5, -100.0, 100.0, "v"),
|
||||
boostOutput("Boost: Output", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1070, 0.01, -100.0, 100.0, "percent"),
|
||||
luaTargetMult("Boost: Lua target mult", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1072, 1.0, -100.0, 100.0, "v"),
|
||||
openLoopPart("Boost: Open loop", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1076, 1.0, -100.0, 100.0, "v"),
|
||||
luaOpenLoopAdd("Boost: Lua open loop add", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1080, 1.0, -100.0, 100.0, "v"),
|
||||
boostControllerClosedLoopPart("Boost: Closed loop", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1084, 0.5, -50.0, 50.0, "%"),
|
||||
alignmentFill_at_21("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1085, 1.0, -20.0, 100.0, "units"),
|
||||
boostControlTarget("Boost: Target", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1086, 0.03333333333333333, 0.0, 300.0, "kPa"),
|
||||
acButtonState("AC switch", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1088, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_1("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1089, 1.0, -20.0, 100.0, "units"),
|
||||
radiatorFanStatus("radiatorFanStatus", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1100, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_5("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1101, 1.0, -20.0, 100.0, "units"),
|
||||
radiatorFanStatus("radiatorFanStatus", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1100, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_5("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1101, 1.0, -20.0, 100.0, "units"),
|
||||
lua("lua", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1120, 1.0, -1.0, -1.0, ""),
|
||||
sd("sd", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1132, 1.0, -1.0, -1.0, ""),
|
||||
crankingFuel("crankingFuel", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1140, 1.0, -1.0, -1.0, ""),
|
||||
baroCorrection("Fuel: Barometric pressure mult", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1156, 1.0, -1.0, -1.0, ""),
|
||||
hellenBoardId("Detected Board ID", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1160, 1.0, 0.0, 3000.0, "id"),
|
||||
clutchUpState("Clutch: up", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1162, 1.0, -1.0, -1.0, ""),
|
||||
clutchDownState("Clutch: down", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1163, 1.0, -1.0, -1.0, ""),
|
||||
brakePedalState("Brake switch", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1164, 1.0, -1.0, -1.0, ""),
|
||||
startStopState("startStopState", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1165, 1.0, -1.0, -1.0, ""),
|
||||
smartChipState("smartChipState", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1166, 1.0, -1.0, -1.0, ""),
|
||||
smartChipRestartCounter("smartChipRestartCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1167, 1.0, -1.0, -1.0, ""),
|
||||
smartChipAliveCounter("smartChipAliveCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1168, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_49("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1169, 1.0, -20.0, 100.0, "units"),
|
||||
startStopStateToggleCounter("startStopStateToggleCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1176, 1.0, -1.0, -1.0, ""),
|
||||
luaSoftSparkSkip("luaSoftSparkSkip", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1180, 1.0, -1.0, -1.0, ""),
|
||||
luaHardSparkSkip("luaHardSparkSkip", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1184, 1.0, -1.0, -1.0, ""),
|
||||
tractionControlSparkSkip("tractionControlSparkSkip", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1188, 1.0, -1.0, -1.0, ""),
|
||||
desiredRpmLimit("User-defined RPM hard limit", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1192, 1.0, 0.0, 30000.0, "rpm"),
|
||||
alignmentFill_at_74("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1194, 1.0, -20.0, 100.0, "units"),
|
||||
fuelInjectionCounter("Fuel: Injection counter", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1196, 1.0, -1.0, -1.0, ""),
|
||||
globalSparkCounter("Ign: Spark counter", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1200, 1.0, -1.0, -1.0, ""),
|
||||
fuelingLoad("Fuel: Load", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1204, 1.0, -1.0, -1.0, ""),
|
||||
ignitionLoad("Ignition: load", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1208, 1.0, -1.0, -1.0, ""),
|
||||
veTableYAxis("veTableYAxis", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1212, 0.01, 0.0, 0.0, "%"),
|
||||
overDwellCounter("overDwellCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1214, 1.0, -1.0, -1.0, ""),
|
||||
overDwellNotScheduledCounter("overDwellNotScheduledCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1215, 1.0, -1.0, -1.0, ""),
|
||||
sparkOutOfOrderCounter("sparkOutOfOrderCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1216, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_97("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1217, 1.0, -20.0, 100.0, "units"),
|
||||
tpsFrom("Fuel: TPS AE from", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1220, 1.0, -1.0, -1.0, ""),
|
||||
tpsTo("Fuel: TPS AE to", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1224, 1.0, -1.0, -1.0, ""),
|
||||
deltaTps("Fuel: TPS AE change", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1228, 1.0, -1.0, -1.0, ""),
|
||||
extraFuel("extraFuel", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1232, 1.0, -1.0, -1.0, ""),
|
||||
valueFromTable("valueFromTable", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1236, 1.0, -1.0, -1.0, ""),
|
||||
fractionalInjFuel("fractionalInjFuel", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1244, 1.0, -1.0, -1.0, ""),
|
||||
accumulatedValue("accumulatedValue", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1248, 1.0, -1.0, -1.0, ""),
|
||||
maxExtraPerCycle("maxExtraPerCycle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1252, 1.0, -1.0, -1.0, ""),
|
||||
maxExtraPerPeriod("maxExtraPerPeriod", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1256, 1.0, -1.0, -1.0, ""),
|
||||
maxInjectedPerPeriod("maxInjectedPerPeriod", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1260, 1.0, -1.0, -1.0, ""),
|
||||
cycleCnt("cycleCnt", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1264, 1.0, -1.0, -1.0, ""),
|
||||
hwEventCounters1("Hardware events since boot 1", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1268, 1.0, -1.0, -1.0, ""),
|
||||
hwEventCounters2("Hardware events since boot 2", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1272, 1.0, -1.0, -1.0, ""),
|
||||
hwEventCounters3("Hardware events since boot 3", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1276, 1.0, -1.0, -1.0, ""),
|
||||
hwEventCounters4("Hardware events since boot 4", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1280, 1.0, -1.0, -1.0, ""),
|
||||
hwEventCounters5("Hardware events since boot 5", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1284, 1.0, -1.0, -1.0, ""),
|
||||
hwEventCounters6("Hardware events since boot 6", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1288, 1.0, -1.0, -1.0, ""),
|
||||
vvtCamCounter("Sync: total cams front counter", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1292, 1.0, -1.0, -1.0, ""),
|
||||
mapVvt_MAP_AT_SPECIAL_POINT("InstantMAP at readout angle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1296, 1.0, -300.0, 300.0, "kPa"),
|
||||
mapVvt_MAP_AT_DIFF("InstantMAP delta @ readout angles", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1300, 1.0, -300.0, 300.0, "kPa"),
|
||||
mapVvt_MAP_AT_CYCLE_COUNT("mapVvt_MAP_AT_CYCLE_COUNT", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1304, 1.0, -10.0, 100.0, "distance"),
|
||||
mapVvt_sync_counter("Instant MAP sync counter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1305, 1.0, 0.0, 10000.0, "counter"),
|
||||
alignmentFill_at_38("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1306, 1.0, -20.0, 100.0, "units"),
|
||||
currentEngineDecodedPhase("Sync: Engine Phase", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1308, 1.0, 0.0, 0.0, "deg"),
|
||||
triggerToothAngleError("Sync: trigger angle error", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1312, 1.0, -30.0, 30.0, "deg"),
|
||||
triggerIgnoredToothCount("triggerIgnoredToothCount", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1316, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_49("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1317, 1.0, -20.0, 100.0, "units"),
|
||||
mapCamPrevToothAngle("Sync: MAP: prev angle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1320, 1.0, -3000.0, 3000.0, "deg"),
|
||||
triggerElapsedUs("triggerElapsedUs", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1328, 1.0, -1.0, -1.0, ""),
|
||||
crankSynchronizationCounter("sync: Crank sync counter\nUsually matches crank revolutions", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1332, 1.0, -1.0, -1.0, ""),
|
||||
vvtSyncGapRatio("vvtSyncGapRatio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1336, 1.0, -10000.0, 10000.0, ""),
|
||||
vvtToothDurations0("vvtToothDurations0", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1340, 1.0, 0.0, 100000.0, "us"),
|
||||
vvtCurrentPosition("vvtCurrentPosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1344, 1.0, -10000.0, 10000.0, "sync: Primary Cam Position"),
|
||||
vvtToothPosition1("vvtToothPosition 1", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1348, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition2("vvtToothPosition 2", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1352, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition3("vvtToothPosition 3", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1356, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition4("vvtToothPosition 4", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1360, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
triggerSyncGapRatio("Trigger Sync Latest Ratio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1364, 1.0, -10000.0, 10000.0, ""),
|
||||
triggerStateIndex("triggerStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1368, 1.0, -1.0, -1.0, ""),
|
||||
vvtStateIndex("vvtStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1369, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_38("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1370, 1.0, -20.0, 100.0, "units"),
|
||||
crankSynchronizationCounter("sync: Crank sync counter\nUsually matches crank revolutions", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1332, 1.0, -1.0, -1.0, ""),
|
||||
vvtSyncGapRatio("vvtSyncGapRatio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1336, 1.0, -10000.0, 10000.0, ""),
|
||||
vvtToothDurations0("vvtToothDurations0", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1340, 1.0, 0.0, 100000.0, "us"),
|
||||
vvtCurrentPosition("vvtCurrentPosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1344, 1.0, -10000.0, 10000.0, "sync: Primary Cam Position"),
|
||||
vvtToothPosition1("vvtToothPosition 1", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1348, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition2("vvtToothPosition 2", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1352, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition3("vvtToothPosition 3", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1356, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition4("vvtToothPosition 4", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1360, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
triggerSyncGapRatio("Trigger Sync Latest Ratio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1364, 1.0, -10000.0, 10000.0, ""),
|
||||
triggerStateIndex("triggerStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1368, 1.0, -1.0, -1.0, ""),
|
||||
vvtStateIndex("vvtStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1369, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_38("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1370, 1.0, -20.0, 100.0, "units"),
|
||||
crankSynchronizationCounter("sync: Crank sync counter\nUsually matches crank revolutions", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1332, 1.0, -1.0, -1.0, ""),
|
||||
vvtSyncGapRatio("vvtSyncGapRatio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1336, 1.0, -10000.0, 10000.0, ""),
|
||||
vvtToothDurations0("vvtToothDurations0", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1340, 1.0, 0.0, 100000.0, "us"),
|
||||
vvtCurrentPosition("vvtCurrentPosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1344, 1.0, -10000.0, 10000.0, "sync: Primary Cam Position"),
|
||||
vvtToothPosition1("vvtToothPosition 1", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1348, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition2("vvtToothPosition 2", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1352, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition3("vvtToothPosition 3", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1356, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition4("vvtToothPosition 4", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1360, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
triggerSyncGapRatio("Trigger Sync Latest Ratio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1364, 1.0, -10000.0, 10000.0, ""),
|
||||
triggerStateIndex("triggerStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1368, 1.0, -1.0, -1.0, ""),
|
||||
vvtStateIndex("vvtStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1369, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_38("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1370, 1.0, -20.0, 100.0, "units"),
|
||||
crankSynchronizationCounter("sync: Crank sync counter\nUsually matches crank revolutions", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1332, 1.0, -1.0, -1.0, ""),
|
||||
vvtSyncGapRatio("vvtSyncGapRatio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1336, 1.0, -10000.0, 10000.0, ""),
|
||||
vvtToothDurations0("vvtToothDurations0", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1340, 1.0, 0.0, 100000.0, "us"),
|
||||
vvtCurrentPosition("vvtCurrentPosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1344, 1.0, -10000.0, 10000.0, "sync: Primary Cam Position"),
|
||||
vvtToothPosition1("vvtToothPosition 1", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1348, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition2("vvtToothPosition 2", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1352, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition3("vvtToothPosition 3", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1356, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition4("vvtToothPosition 4", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1360, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
triggerSyncGapRatio("Trigger Sync Latest Ratio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1364, 1.0, -10000.0, 10000.0, ""),
|
||||
triggerStateIndex("triggerStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1368, 1.0, -1.0, -1.0, ""),
|
||||
vvtStateIndex("vvtStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1369, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_38("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1370, 1.0, -20.0, 100.0, "units"),
|
||||
crankSynchronizationCounter("sync: Crank sync counter\nUsually matches crank revolutions", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1332, 1.0, -1.0, -1.0, ""),
|
||||
vvtSyncGapRatio("vvtSyncGapRatio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1336, 1.0, -10000.0, 10000.0, ""),
|
||||
vvtToothDurations0("vvtToothDurations0", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1340, 1.0, 0.0, 100000.0, "us"),
|
||||
vvtCurrentPosition("vvtCurrentPosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1344, 1.0, -10000.0, 10000.0, "sync: Primary Cam Position"),
|
||||
vvtToothPosition1("vvtToothPosition 1", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1348, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition2("vvtToothPosition 2", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1352, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition3("vvtToothPosition 3", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1356, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition4("vvtToothPosition 4", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1360, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
triggerSyncGapRatio("Trigger Sync Latest Ratio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1364, 1.0, -10000.0, 10000.0, ""),
|
||||
triggerStateIndex("triggerStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1368, 1.0, -1.0, -1.0, ""),
|
||||
vvtStateIndex("vvtStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1369, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_38("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1370, 1.0, -20.0, 100.0, "units"),
|
||||
camResyncCounter("sync: Phase Re-Sync Counter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1532, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_1("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1533, 1.0, -20.0, 100.0, "units"),
|
||||
wallFuelCorrection("fuel wallwetting injection time\n correction to account for wall wetting effect for current cycle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1540, 1.0, -1.0, -1.0, ""),
|
||||
wallFuel("Fuel on the wall\nin ms of injector open time for each injector.", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1544, 1.0, -1.0, -1.0, ""),
|
||||
idleState("idleState", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1548, 1.0, -1.0, -1.0, ""),
|
||||
currentIdlePosition("Idle: Position", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1552, 1.0, 0.0, 0.0, "%"),
|
||||
baseIdlePosition("idle: base value\ncurrent position without adjustments (iacByTpsTaper, afterCrankingIACtaperDuration)", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1556, 1.0, -1.0, -1.0, ""),
|
||||
idleClosedLoop("Idle: Closed loop", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1560, 1.0, -1.0, -1.0, ""),
|
||||
iacByTpsTaper("idle: iacByTpsTaper portion", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1564, 1.0, -1.0, -1.0, ""),
|
||||
throttlePedalUpState("idle: throttlePedalUpState\ntrue in IDLE throttle pedal state, false if driver is touching the pedal\ntodo: better name for this field?", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1568, 1.0, -1.0, -1.0, ""),
|
||||
idleTarget("Idle: Target RPM", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1576, 1.0, -1.0, -1.0, ""),
|
||||
targetRpmByClt("Idle: Target RPM base", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1580, 1.0, -1.0, -1.0, ""),
|
||||
targetRpmAc("Idle: Target A/C RPM", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1584, 1.0, -1.0, -1.0, ""),
|
||||
iacByRpmTaper("idle: iacByRpmTaper portion", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1588, 1.0, -1.0, -1.0, ""),
|
||||
luaAdd("idle: Lua Adder", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1592, 1.0, -1.0, -1.0, ""),
|
||||
targetWithIdlePosition("ETB: target with idle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1596, 1.0, 0.0, 10.0, "per"),
|
||||
trim("ETB: trim", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1600, 1.0, -1.0, -1.0, ""),
|
||||
luaAdjustment("ETB: luaAdjustment", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1604, 1.0, 0.0, 3.0, "per"),
|
||||
m_wastegatePosition("DC: wastegatePosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1608, 1.0, 0.0, 3.0, "per"),
|
||||
etbFeedForward("etbFeedForward", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1612, 1.0, -1.0, -1.0, ""),
|
||||
etbIntegralError("etbIntegralError", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1616, 1.0, -10000.0, 10000.0, ""),
|
||||
etbCurrentTarget("ETB: target for current pedal", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1620, 1.0, -10000.0, 10000.0, "%"),
|
||||
etbCurrentAdjustedTarget("etbCurrentAdjustedTarget", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1624, 1.0, -10000.0, 10000.0, "%"),
|
||||
etbTpsErrorCounter("ETB TPS error counter", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1632, 1.0, 0.0, 3.0, "count"),
|
||||
etbPpsErrorCounter("ETB pedal error counter", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1634, 1.0, 0.0, 3.0, "count"),
|
||||
etbErrorCode("etbErrorCode", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1636, 1.0, -1.0, -1.0, ""),
|
||||
tcEtbDrop("ETB traction control", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1637, 1.0, 0.0, 100.0, "%"),
|
||||
jamTimer("ETB jam timer", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1638, 0.01, 0.0, 100.0, "sec"),
|
||||
adjustedEtbTarget("ETB with adjustments", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1640, 1.0, 0.0, 100.0, "%"),
|
||||
alignmentFill_at_45("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1641, 1.0, -20.0, 100.0, "units"),
|
||||
targetWithIdlePosition("ETB: target with idle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1596, 1.0, 0.0, 10.0, "per"),
|
||||
trim("ETB: trim", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1600, 1.0, -1.0, -1.0, ""),
|
||||
luaAdjustment("ETB: luaAdjustment", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1604, 1.0, 0.0, 3.0, "per"),
|
||||
m_wastegatePosition("DC: wastegatePosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1608, 1.0, 0.0, 3.0, "per"),
|
||||
etbFeedForward("etbFeedForward", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1612, 1.0, -1.0, -1.0, ""),
|
||||
etbIntegralError("etbIntegralError", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1616, 1.0, -10000.0, 10000.0, ""),
|
||||
etbCurrentTarget("ETB: target for current pedal", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1620, 1.0, -10000.0, 10000.0, "%"),
|
||||
etbCurrentAdjustedTarget("etbCurrentAdjustedTarget", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1624, 1.0, -10000.0, 10000.0, "%"),
|
||||
etbTpsErrorCounter("ETB TPS error counter", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1632, 1.0, 0.0, 3.0, "count"),
|
||||
etbPpsErrorCounter("ETB pedal error counter", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1634, 1.0, 0.0, 3.0, "count"),
|
||||
etbErrorCode("etbErrorCode", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1636, 1.0, -1.0, -1.0, ""),
|
||||
tcEtbDrop("ETB traction control", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1637, 1.0, 0.0, 100.0, "%"),
|
||||
jamTimer("ETB jam timer", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1638, 0.01, 0.0, 100.0, "sec"),
|
||||
adjustedEtbTarget("ETB with adjustments", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1640, 1.0, 0.0, 100.0, "%"),
|
||||
alignmentFill_at_45("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1641, 1.0, -20.0, 100.0, "units"),
|
||||
faultCode("WBO: Fault code", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1692, 1.0, -1.0, -1.0, ""),
|
||||
heaterDuty("WBO: Heater duty", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1693, 1.0, 0.0, 100.0, "%"),
|
||||
pumpDuty("WBO: Pump duty", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1694, 1.0, 0.0, 100.0, "%"),
|
||||
alignmentFill_at_3("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1695, 1.0, -20.0, 100.0, "units"),
|
||||
tempC("WBO: Temperature", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1696, 1.0, 500.0, 1000.0, "C"),
|
||||
nernstVoltage("WBO: Nernst Voltage", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1698, 0.001, 0.0, 1.0, "V"),
|
||||
esr("WBO: ESR", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1700, 1.0, 0.0, 10000.0, "ohm"),
|
||||
alignmentFill_at_10("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1702, 1.0, -20.0, 100.0, "units"),
|
||||
faultCode("WBO: Fault code", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1692, 1.0, -1.0, -1.0, ""),
|
||||
heaterDuty("WBO: Heater duty", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1693, 1.0, 0.0, 100.0, "%"),
|
||||
pumpDuty("WBO: Pump duty", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1694, 1.0, 0.0, 100.0, "%"),
|
||||
alignmentFill_at_3("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1695, 1.0, -20.0, 100.0, "units"),
|
||||
tempC("WBO: Temperature", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1696, 1.0, 500.0, 1000.0, "C"),
|
||||
nernstVoltage("WBO: Nernst Voltage", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1698, 0.001, 0.0, 1.0, "V"),
|
||||
esr("WBO: ESR", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1700, 1.0, 0.0, 10000.0, "ohm"),
|
||||
alignmentFill_at_10("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1702, 1.0, -20.0, 100.0, "units"),
|
||||
dcOutput0("DC: output0", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1716, 1.0, 0.0, 10.0, "per"),
|
||||
isEnabled0_int("DC: en0", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1720, 1.0, 0.0, 10.0, "per"),
|
||||
alignmentFill_at_5("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1721, 1.0, -20.0, 100.0, "units"),
|
||||
value0("ETB: SENT value0", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1728, 1.0, 0.0, 3.0, "value"),
|
||||
value1("ETB: SENT value1", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1730, 1.0, 0.0, 3.0, "value"),
|
||||
errorRate("ETB: SENT error rate", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1732, 1.0, 0.0, 3.0, "ratio"),
|
||||
vvtTarget("vvtTarget", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1736, 0.1, -90.0, 90.0, "deg"),
|
||||
vvtOutput("vvtOutput", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1738, 0.5, 100.0, 1.0, "%"),
|
||||
alignmentFill_at_3("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1739, 1.0, -20.0, 100.0, "units"),
|
||||
lambdaTimeSinceGood("lambdaTimeSinceGood", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1744, 0.01, 0.0, 1.0, "sec"),
|
||||
alignmentFill_at_6("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1746, 1.0, -20.0, 100.0, "units"),
|
||||
fuelALSCorrection("fuelALSCorrection", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1060, 1.0, -1.0, -1.0, ""),
|
||||
timingALSCorrection("timingALSCorrection", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1064, 0.01, -20.0, 20.0, "deg"),
|
||||
timingALSSkip("timingALSSkip", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1066, 0.01, 0.0, 50.0, "deg"),
|
||||
luaTargetAdd("Boost: Lua target add", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1072, 0.5, -100.0, 100.0, "v"),
|
||||
boostOutput("Boost: Output", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1074, 0.01, -100.0, 100.0, "percent"),
|
||||
luaTargetMult("Boost: Lua target mult", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1076, 1.0, -100.0, 100.0, "v"),
|
||||
openLoopPart("Boost: Open loop", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1080, 1.0, -100.0, 100.0, "v"),
|
||||
luaOpenLoopAdd("Boost: Lua open loop add", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1084, 1.0, -100.0, 100.0, "v"),
|
||||
boostControllerClosedLoopPart("Boost: Closed loop", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1088, 0.5, -50.0, 50.0, "%"),
|
||||
alignmentFill_at_21("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1089, 1.0, -20.0, 100.0, "units"),
|
||||
boostControlTarget("Boost: Target", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1090, 0.03333333333333333, 0.0, 300.0, "kPa"),
|
||||
acButtonState("AC switch", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1092, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_1("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1093, 1.0, -20.0, 100.0, "units"),
|
||||
radiatorFanStatus("radiatorFanStatus", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1104, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_5("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1105, 1.0, -20.0, 100.0, "units"),
|
||||
radiatorFanStatus("radiatorFanStatus", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1104, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_5("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1105, 1.0, -20.0, 100.0, "units"),
|
||||
lua("lua", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1124, 1.0, -1.0, -1.0, ""),
|
||||
sd("sd", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1136, 1.0, -1.0, -1.0, ""),
|
||||
crankingFuel("crankingFuel", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1144, 1.0, -1.0, -1.0, ""),
|
||||
baroCorrection("Fuel: Barometric pressure mult", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1160, 1.0, -1.0, -1.0, ""),
|
||||
hellenBoardId("Detected Board ID", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1164, 1.0, 0.0, 3000.0, "id"),
|
||||
clutchUpState("Clutch: up", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1166, 1.0, -1.0, -1.0, ""),
|
||||
clutchDownState("Clutch: down", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1167, 1.0, -1.0, -1.0, ""),
|
||||
brakePedalState("Brake switch", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1168, 1.0, -1.0, -1.0, ""),
|
||||
startStopState("startStopState", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1169, 1.0, -1.0, -1.0, ""),
|
||||
smartChipState("smartChipState", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1170, 1.0, -1.0, -1.0, ""),
|
||||
smartChipRestartCounter("smartChipRestartCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1171, 1.0, -1.0, -1.0, ""),
|
||||
smartChipAliveCounter("smartChipAliveCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1172, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_49("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1173, 1.0, -20.0, 100.0, "units"),
|
||||
startStopStateToggleCounter("startStopStateToggleCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1180, 1.0, -1.0, -1.0, ""),
|
||||
luaSoftSparkSkip("luaSoftSparkSkip", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1184, 1.0, -1.0, -1.0, ""),
|
||||
luaHardSparkSkip("luaHardSparkSkip", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1188, 1.0, -1.0, -1.0, ""),
|
||||
tractionControlSparkSkip("tractionControlSparkSkip", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1192, 1.0, -1.0, -1.0, ""),
|
||||
desiredRpmLimit("User-defined RPM hard limit", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1196, 1.0, 0.0, 30000.0, "rpm"),
|
||||
alignmentFill_at_74("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1198, 1.0, -20.0, 100.0, "units"),
|
||||
fuelInjectionCounter("Fuel: Injection counter", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1200, 1.0, -1.0, -1.0, ""),
|
||||
globalSparkCounter("Ign: Spark counter", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1204, 1.0, -1.0, -1.0, ""),
|
||||
fuelingLoad("Fuel: Load", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1208, 1.0, -1.0, -1.0, ""),
|
||||
ignitionLoad("Ignition: load", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1212, 1.0, -1.0, -1.0, ""),
|
||||
veTableYAxis("veTableYAxis", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1216, 0.01, 0.0, 0.0, "%"),
|
||||
overDwellCounter("overDwellCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1218, 1.0, -1.0, -1.0, ""),
|
||||
overDwellNotScheduledCounter("overDwellNotScheduledCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1219, 1.0, -1.0, -1.0, ""),
|
||||
sparkOutOfOrderCounter("sparkOutOfOrderCounter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1220, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_97("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1221, 1.0, -20.0, 100.0, "units"),
|
||||
tpsFrom("Fuel: TPS AE from", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1224, 1.0, -1.0, -1.0, ""),
|
||||
tpsTo("Fuel: TPS AE to", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1228, 1.0, -1.0, -1.0, ""),
|
||||
deltaTps("Fuel: TPS AE change", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1232, 1.0, -1.0, -1.0, ""),
|
||||
extraFuel("extraFuel", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1236, 1.0, -1.0, -1.0, ""),
|
||||
valueFromTable("valueFromTable", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1240, 1.0, -1.0, -1.0, ""),
|
||||
fractionalInjFuel("fractionalInjFuel", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1248, 1.0, -1.0, -1.0, ""),
|
||||
accumulatedValue("accumulatedValue", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1252, 1.0, -1.0, -1.0, ""),
|
||||
maxExtraPerCycle("maxExtraPerCycle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1256, 1.0, -1.0, -1.0, ""),
|
||||
maxExtraPerPeriod("maxExtraPerPeriod", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1260, 1.0, -1.0, -1.0, ""),
|
||||
maxInjectedPerPeriod("maxInjectedPerPeriod", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1264, 1.0, -1.0, -1.0, ""),
|
||||
cycleCnt("cycleCnt", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1268, 1.0, -1.0, -1.0, ""),
|
||||
hwEventCounters1("Hardware events since boot 1", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1272, 1.0, -1.0, -1.0, ""),
|
||||
hwEventCounters2("Hardware events since boot 2", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1276, 1.0, -1.0, -1.0, ""),
|
||||
hwEventCounters3("Hardware events since boot 3", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1280, 1.0, -1.0, -1.0, ""),
|
||||
hwEventCounters4("Hardware events since boot 4", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1284, 1.0, -1.0, -1.0, ""),
|
||||
hwEventCounters5("Hardware events since boot 5", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1288, 1.0, -1.0, -1.0, ""),
|
||||
hwEventCounters6("Hardware events since boot 6", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1292, 1.0, -1.0, -1.0, ""),
|
||||
vvtCamCounter("Sync: total cams front counter", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1296, 1.0, -1.0, -1.0, ""),
|
||||
mapVvt_MAP_AT_SPECIAL_POINT("InstantMAP at readout angle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1300, 1.0, -300.0, 300.0, "kPa"),
|
||||
mapVvt_MAP_AT_DIFF("InstantMAP delta @ readout angles", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1304, 1.0, -300.0, 300.0, "kPa"),
|
||||
mapVvt_MAP_AT_CYCLE_COUNT("mapVvt_MAP_AT_CYCLE_COUNT", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1308, 1.0, -10.0, 100.0, "distance"),
|
||||
mapVvt_sync_counter("Instant MAP sync counter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1309, 1.0, 0.0, 10000.0, "counter"),
|
||||
alignmentFill_at_38("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1310, 1.0, -20.0, 100.0, "units"),
|
||||
currentEngineDecodedPhase("Sync: Engine Phase", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1312, 1.0, 0.0, 0.0, "deg"),
|
||||
triggerToothAngleError("Sync: trigger angle error", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1316, 1.0, -30.0, 30.0, "deg"),
|
||||
triggerIgnoredToothCount("triggerIgnoredToothCount", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1320, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_49("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1321, 1.0, -20.0, 100.0, "units"),
|
||||
mapCamPrevToothAngle("Sync: MAP: prev angle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1324, 1.0, -3000.0, 3000.0, "deg"),
|
||||
triggerElapsedUs("triggerElapsedUs", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1332, 1.0, -1.0, -1.0, ""),
|
||||
crankSynchronizationCounter("sync: Crank sync counter\nUsually matches crank revolutions", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1336, 1.0, -1.0, -1.0, ""),
|
||||
vvtSyncGapRatio("vvtSyncGapRatio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1340, 1.0, -10000.0, 10000.0, ""),
|
||||
vvtToothDurations0("vvtToothDurations0", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1344, 1.0, 0.0, 100000.0, "us"),
|
||||
vvtCurrentPosition("vvtCurrentPosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1348, 1.0, -10000.0, 10000.0, "sync: Primary Cam Position"),
|
||||
vvtToothPosition1("vvtToothPosition 1", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1352, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition2("vvtToothPosition 2", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1356, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition3("vvtToothPosition 3", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1360, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition4("vvtToothPosition 4", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1364, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
triggerSyncGapRatio("Trigger Sync Latest Ratio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1368, 1.0, -10000.0, 10000.0, ""),
|
||||
triggerStateIndex("triggerStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1372, 1.0, -1.0, -1.0, ""),
|
||||
vvtStateIndex("vvtStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1373, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_38("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1374, 1.0, -20.0, 100.0, "units"),
|
||||
crankSynchronizationCounter("sync: Crank sync counter\nUsually matches crank revolutions", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1336, 1.0, -1.0, -1.0, ""),
|
||||
vvtSyncGapRatio("vvtSyncGapRatio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1340, 1.0, -10000.0, 10000.0, ""),
|
||||
vvtToothDurations0("vvtToothDurations0", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1344, 1.0, 0.0, 100000.0, "us"),
|
||||
vvtCurrentPosition("vvtCurrentPosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1348, 1.0, -10000.0, 10000.0, "sync: Primary Cam Position"),
|
||||
vvtToothPosition1("vvtToothPosition 1", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1352, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition2("vvtToothPosition 2", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1356, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition3("vvtToothPosition 3", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1360, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition4("vvtToothPosition 4", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1364, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
triggerSyncGapRatio("Trigger Sync Latest Ratio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1368, 1.0, -10000.0, 10000.0, ""),
|
||||
triggerStateIndex("triggerStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1372, 1.0, -1.0, -1.0, ""),
|
||||
vvtStateIndex("vvtStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1373, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_38("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1374, 1.0, -20.0, 100.0, "units"),
|
||||
crankSynchronizationCounter("sync: Crank sync counter\nUsually matches crank revolutions", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1336, 1.0, -1.0, -1.0, ""),
|
||||
vvtSyncGapRatio("vvtSyncGapRatio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1340, 1.0, -10000.0, 10000.0, ""),
|
||||
vvtToothDurations0("vvtToothDurations0", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1344, 1.0, 0.0, 100000.0, "us"),
|
||||
vvtCurrentPosition("vvtCurrentPosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1348, 1.0, -10000.0, 10000.0, "sync: Primary Cam Position"),
|
||||
vvtToothPosition1("vvtToothPosition 1", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1352, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition2("vvtToothPosition 2", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1356, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition3("vvtToothPosition 3", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1360, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition4("vvtToothPosition 4", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1364, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
triggerSyncGapRatio("Trigger Sync Latest Ratio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1368, 1.0, -10000.0, 10000.0, ""),
|
||||
triggerStateIndex("triggerStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1372, 1.0, -1.0, -1.0, ""),
|
||||
vvtStateIndex("vvtStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1373, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_38("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1374, 1.0, -20.0, 100.0, "units"),
|
||||
crankSynchronizationCounter("sync: Crank sync counter\nUsually matches crank revolutions", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1336, 1.0, -1.0, -1.0, ""),
|
||||
vvtSyncGapRatio("vvtSyncGapRatio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1340, 1.0, -10000.0, 10000.0, ""),
|
||||
vvtToothDurations0("vvtToothDurations0", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1344, 1.0, 0.0, 100000.0, "us"),
|
||||
vvtCurrentPosition("vvtCurrentPosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1348, 1.0, -10000.0, 10000.0, "sync: Primary Cam Position"),
|
||||
vvtToothPosition1("vvtToothPosition 1", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1352, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition2("vvtToothPosition 2", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1356, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition3("vvtToothPosition 3", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1360, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition4("vvtToothPosition 4", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1364, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
triggerSyncGapRatio("Trigger Sync Latest Ratio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1368, 1.0, -10000.0, 10000.0, ""),
|
||||
triggerStateIndex("triggerStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1372, 1.0, -1.0, -1.0, ""),
|
||||
vvtStateIndex("vvtStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1373, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_38("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1374, 1.0, -20.0, 100.0, "units"),
|
||||
crankSynchronizationCounter("sync: Crank sync counter\nUsually matches crank revolutions", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1336, 1.0, -1.0, -1.0, ""),
|
||||
vvtSyncGapRatio("vvtSyncGapRatio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1340, 1.0, -10000.0, 10000.0, ""),
|
||||
vvtToothDurations0("vvtToothDurations0", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1344, 1.0, 0.0, 100000.0, "us"),
|
||||
vvtCurrentPosition("vvtCurrentPosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1348, 1.0, -10000.0, 10000.0, "sync: Primary Cam Position"),
|
||||
vvtToothPosition1("vvtToothPosition 1", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1352, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition2("vvtToothPosition 2", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1356, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition3("vvtToothPosition 3", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1360, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
vvtToothPosition4("vvtToothPosition 4", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1364, 1.0, -10000.0, 10000.0, "sync: Cam Tooth Position"),
|
||||
triggerSyncGapRatio("Trigger Sync Latest Ratio", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1368, 1.0, -10000.0, 10000.0, ""),
|
||||
triggerStateIndex("triggerStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1372, 1.0, -1.0, -1.0, ""),
|
||||
vvtStateIndex("vvtStateIndex", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1373, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_38("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1374, 1.0, -20.0, 100.0, "units"),
|
||||
camResyncCounter("sync: Phase Re-Sync Counter", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1536, 1.0, -1.0, -1.0, ""),
|
||||
alignmentFill_at_1("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1537, 1.0, -20.0, 100.0, "units"),
|
||||
wallFuelCorrection("fuel wallwetting injection time\n correction to account for wall wetting effect for current cycle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1544, 1.0, -1.0, -1.0, ""),
|
||||
wallFuel("Fuel on the wall\nin ms of injector open time for each injector.", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1548, 1.0, -1.0, -1.0, ""),
|
||||
idleState("idleState", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1552, 1.0, -1.0, -1.0, ""),
|
||||
currentIdlePosition("Idle: Position", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1556, 1.0, 0.0, 0.0, "%"),
|
||||
baseIdlePosition("idle: base value\ncurrent position without adjustments (iacByTpsTaper, afterCrankingIACtaperDuration)", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1560, 1.0, -1.0, -1.0, ""),
|
||||
idleClosedLoop("Idle: Closed loop", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1564, 1.0, -1.0, -1.0, ""),
|
||||
iacByTpsTaper("idle: iacByTpsTaper portion", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1568, 1.0, -1.0, -1.0, ""),
|
||||
throttlePedalUpState("idle: throttlePedalUpState\ntrue in IDLE throttle pedal state, false if driver is touching the pedal\ntodo: better name for this field?", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1572, 1.0, -1.0, -1.0, ""),
|
||||
idleTarget("Idle: Target RPM", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1580, 1.0, -1.0, -1.0, ""),
|
||||
targetRpmByClt("Idle: Target RPM base", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1584, 1.0, -1.0, -1.0, ""),
|
||||
targetRpmAc("Idle: Target A/C RPM", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1588, 1.0, -1.0, -1.0, ""),
|
||||
iacByRpmTaper("idle: iacByRpmTaper portion", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1592, 1.0, -1.0, -1.0, ""),
|
||||
luaAdd("idle: Lua Adder", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1596, 1.0, -1.0, -1.0, ""),
|
||||
targetWithIdlePosition("ETB: target with idle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1600, 1.0, 0.0, 10.0, "per"),
|
||||
trim("ETB: trim", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1604, 1.0, -1.0, -1.0, ""),
|
||||
luaAdjustment("ETB: luaAdjustment", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1608, 1.0, 0.0, 3.0, "per"),
|
||||
m_wastegatePosition("DC: wastegatePosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1612, 1.0, 0.0, 3.0, "per"),
|
||||
etbFeedForward("etbFeedForward", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1616, 1.0, -1.0, -1.0, ""),
|
||||
etbIntegralError("etbIntegralError", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1620, 1.0, -10000.0, 10000.0, ""),
|
||||
etbCurrentTarget("ETB: target for current pedal", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1624, 1.0, -10000.0, 10000.0, "%"),
|
||||
etbCurrentAdjustedTarget("etbCurrentAdjustedTarget", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1628, 1.0, -10000.0, 10000.0, "%"),
|
||||
etbTpsErrorCounter("ETB TPS error counter", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1636, 1.0, 0.0, 3.0, "count"),
|
||||
etbPpsErrorCounter("ETB pedal error counter", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1638, 1.0, 0.0, 3.0, "count"),
|
||||
etbErrorCode("etbErrorCode", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1640, 1.0, -1.0, -1.0, ""),
|
||||
tcEtbDrop("ETB traction control", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1641, 1.0, 0.0, 100.0, "%"),
|
||||
jamTimer("ETB jam timer", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1642, 0.01, 0.0, 100.0, "sec"),
|
||||
adjustedEtbTarget("ETB with adjustments", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1644, 1.0, 0.0, 100.0, "%"),
|
||||
alignmentFill_at_45("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1645, 1.0, -20.0, 100.0, "units"),
|
||||
targetWithIdlePosition("ETB: target with idle", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1600, 1.0, 0.0, 10.0, "per"),
|
||||
trim("ETB: trim", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1604, 1.0, -1.0, -1.0, ""),
|
||||
luaAdjustment("ETB: luaAdjustment", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1608, 1.0, 0.0, 3.0, "per"),
|
||||
m_wastegatePosition("DC: wastegatePosition", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1612, 1.0, 0.0, 3.0, "per"),
|
||||
etbFeedForward("etbFeedForward", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1616, 1.0, -1.0, -1.0, ""),
|
||||
etbIntegralError("etbIntegralError", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1620, 1.0, -10000.0, 10000.0, ""),
|
||||
etbCurrentTarget("ETB: target for current pedal", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1624, 1.0, -10000.0, 10000.0, "%"),
|
||||
etbCurrentAdjustedTarget("etbCurrentAdjustedTarget", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1628, 1.0, -10000.0, 10000.0, "%"),
|
||||
etbTpsErrorCounter("ETB TPS error counter", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1636, 1.0, 0.0, 3.0, "count"),
|
||||
etbPpsErrorCounter("ETB pedal error counter", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1638, 1.0, 0.0, 3.0, "count"),
|
||||
etbErrorCode("etbErrorCode", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1640, 1.0, -1.0, -1.0, ""),
|
||||
tcEtbDrop("ETB traction control", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1641, 1.0, 0.0, 100.0, "%"),
|
||||
jamTimer("ETB jam timer", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1642, 0.01, 0.0, 100.0, "sec"),
|
||||
adjustedEtbTarget("ETB with adjustments", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1644, 1.0, 0.0, 100.0, "%"),
|
||||
alignmentFill_at_45("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1645, 1.0, -20.0, 100.0, "units"),
|
||||
faultCode("WBO: Fault code", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1696, 1.0, -1.0, -1.0, ""),
|
||||
heaterDuty("WBO: Heater duty", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1697, 1.0, 0.0, 100.0, "%"),
|
||||
pumpDuty("WBO: Pump duty", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1698, 1.0, 0.0, 100.0, "%"),
|
||||
alignmentFill_at_3("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1699, 1.0, -20.0, 100.0, "units"),
|
||||
tempC("WBO: Temperature", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1700, 1.0, 500.0, 1000.0, "C"),
|
||||
nernstVoltage("WBO: Nernst Voltage", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1702, 0.001, 0.0, 1.0, "V"),
|
||||
esr("WBO: ESR", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1704, 1.0, 0.0, 10000.0, "ohm"),
|
||||
alignmentFill_at_10("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1706, 1.0, -20.0, 100.0, "units"),
|
||||
faultCode("WBO: Fault code", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1696, 1.0, -1.0, -1.0, ""),
|
||||
heaterDuty("WBO: Heater duty", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1697, 1.0, 0.0, 100.0, "%"),
|
||||
pumpDuty("WBO: Pump duty", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1698, 1.0, 0.0, 100.0, "%"),
|
||||
alignmentFill_at_3("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1699, 1.0, -20.0, 100.0, "units"),
|
||||
tempC("WBO: Temperature", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1700, 1.0, 500.0, 1000.0, "C"),
|
||||
nernstVoltage("WBO: Nernst Voltage", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1702, 0.001, 0.0, 1.0, "V"),
|
||||
esr("WBO: ESR", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1704, 1.0, 0.0, 10000.0, "ohm"),
|
||||
alignmentFill_at_10("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1706, 1.0, -20.0, 100.0, "units"),
|
||||
dcOutput0("DC: output0", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1720, 1.0, 0.0, 10.0, "per"),
|
||||
isEnabled0_int("DC: en0", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1724, 1.0, 0.0, 10.0, "per"),
|
||||
alignmentFill_at_5("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1725, 1.0, -20.0, 100.0, "units"),
|
||||
value0("ETB: SENT value0", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1732, 1.0, 0.0, 3.0, "value"),
|
||||
value1("ETB: SENT value1", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1734, 1.0, 0.0, 3.0, "value"),
|
||||
errorRate("ETB: SENT error rate", SensorCategory.SENSOR_INPUTS, FieldType.INT, 1736, 1.0, 0.0, 3.0, "ratio"),
|
||||
vvtTarget("vvtTarget", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1740, 0.1, -90.0, 90.0, "deg"),
|
||||
vvtOutput("vvtOutput", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1742, 0.5, 100.0, 1.0, "%"),
|
||||
alignmentFill_at_3("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1743, 1.0, -20.0, 100.0, "units"),
|
||||
lambdaTimeSinceGood("lambdaTimeSinceGood", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 1748, 0.01, 0.0, 1.0, "sec"),
|
||||
alignmentFill_at_6("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 1750, 1.0, -20.0, 100.0, "units"),
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
// generated by gen_live_documentation.sh / LiveDataProcessor.java
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
|
@ -1,6 +1,6 @@
|
|||
#include "global.h"
|
||||
#include "rusefi_enums.h"
|
||||
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum_to_string.jar tool on Sun Sep 08 04:52:43 UTC 2024
|
||||
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum_to_string.jar tool on Fri Sep 27 22:36:30 UTC 2024
|
||||
// see also gen_config_and_enums.bat
|
||||
|
||||
|
||||
|
@ -794,6 +794,15 @@ case TL_SEMI_AUTO:
|
|||
}
|
||||
return NULL;
|
||||
}
|
||||
const char *getTorqueReductionActivationMode_e(torqueReductionActivationMode_e value){
|
||||
switch(value) {
|
||||
case LAUNCH_BUTTON:
|
||||
return "LAUNCH_BUTTON";
|
||||
case TORQUE_REDUCTION_BUTTON:
|
||||
return "TORQUE_REDUCTION_BUTTON";
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
const char *getUart_device_e(uart_device_e value){
|
||||
switch(value) {
|
||||
case UART_DEVICE_1:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum_to_string.jar tool on Sat Apr 20 12:21:12 UTC 2024
|
||||
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum_to_string.jar tool on Fri Sep 27 22:36:30 UTC 2024
|
||||
// see also gen_config_and_enums.bat
|
||||
|
||||
|
||||
|
@ -76,6 +76,7 @@ const char *getStepper_num_micro_steps_e(stepper_num_micro_steps_e value);
|
|||
const char *getTChargeMode_e(tChargeMode_e value);
|
||||
const char *getTiming_mode_e(timing_mode_e value);
|
||||
const char *getTle8888_mode_e(tle8888_mode_e value);
|
||||
const char *getTorqueReductionActivationMode_e(torqueReductionActivationMode_e value);
|
||||
const char *getUart_device_e(uart_device_e value);
|
||||
const char *getVe_override_e(ve_override_e value);
|
||||
const char *getVvt_mode_e(vvt_mode_e value);
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1320 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1320 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1320 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2400
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2401
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1320 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1320 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1320 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2400
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2401
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
@ -4594,97 +4598,97 @@ struct engine_configuration_s {
|
|||
bool boardUseTempPullUp : 1 {};
|
||||
/**
|
||||
offset 3896 bit 1 */
|
||||
bool unusedBit_875_1 : 1 {};
|
||||
bool unusedBit_876_1 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 2 */
|
||||
bool unusedBit_875_2 : 1 {};
|
||||
bool unusedBit_876_2 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 3 */
|
||||
bool unusedBit_875_3 : 1 {};
|
||||
bool unusedBit_876_3 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 4 */
|
||||
bool unusedBit_875_4 : 1 {};
|
||||
bool unusedBit_876_4 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 5 */
|
||||
bool unusedBit_875_5 : 1 {};
|
||||
bool unusedBit_876_5 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 6 */
|
||||
bool unusedBit_875_6 : 1 {};
|
||||
bool unusedBit_876_6 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 7 */
|
||||
bool unusedBit_875_7 : 1 {};
|
||||
bool unusedBit_876_7 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 8 */
|
||||
bool unusedBit_875_8 : 1 {};
|
||||
bool unusedBit_876_8 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 9 */
|
||||
bool unusedBit_875_9 : 1 {};
|
||||
bool unusedBit_876_9 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 10 */
|
||||
bool unusedBit_875_10 : 1 {};
|
||||
bool unusedBit_876_10 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 11 */
|
||||
bool unusedBit_875_11 : 1 {};
|
||||
bool unusedBit_876_11 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 12 */
|
||||
bool unusedBit_875_12 : 1 {};
|
||||
bool unusedBit_876_12 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 13 */
|
||||
bool unusedBit_875_13 : 1 {};
|
||||
bool unusedBit_876_13 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 14 */
|
||||
bool unusedBit_875_14 : 1 {};
|
||||
bool unusedBit_876_14 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 15 */
|
||||
bool unusedBit_875_15 : 1 {};
|
||||
bool unusedBit_876_15 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 16 */
|
||||
bool unusedBit_875_16 : 1 {};
|
||||
bool unusedBit_876_16 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 17 */
|
||||
bool unusedBit_875_17 : 1 {};
|
||||
bool unusedBit_876_17 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 18 */
|
||||
bool unusedBit_875_18 : 1 {};
|
||||
bool unusedBit_876_18 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 19 */
|
||||
bool unusedBit_875_19 : 1 {};
|
||||
bool unusedBit_876_19 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 20 */
|
||||
bool unusedBit_875_20 : 1 {};
|
||||
bool unusedBit_876_20 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 21 */
|
||||
bool unusedBit_875_21 : 1 {};
|
||||
bool unusedBit_876_21 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 22 */
|
||||
bool unusedBit_875_22 : 1 {};
|
||||
bool unusedBit_876_22 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 23 */
|
||||
bool unusedBit_875_23 : 1 {};
|
||||
bool unusedBit_876_23 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 24 */
|
||||
bool unusedBit_875_24 : 1 {};
|
||||
bool unusedBit_876_24 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 25 */
|
||||
bool unusedBit_875_25 : 1 {};
|
||||
bool unusedBit_876_25 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 26 */
|
||||
bool unusedBit_875_26 : 1 {};
|
||||
bool unusedBit_876_26 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 27 */
|
||||
bool unusedBit_875_27 : 1 {};
|
||||
bool unusedBit_876_27 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 28 */
|
||||
bool unusedBit_875_28 : 1 {};
|
||||
bool unusedBit_876_28 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 29 */
|
||||
bool unusedBit_875_29 : 1 {};
|
||||
bool unusedBit_876_29 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 30 */
|
||||
bool unusedBit_875_30 : 1 {};
|
||||
bool unusedBit_876_30 : 1 {};
|
||||
/**
|
||||
offset 3896 bit 31 */
|
||||
bool unusedBit_875_31 : 1 {};
|
||||
bool unusedBit_876_31 : 1 {};
|
||||
/**
|
||||
* units: units
|
||||
* offset 3900
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -2374,10 +2374,10 @@ struct engine_configuration_s {
|
|||
bool launchSparkCutEnable : 1 {};
|
||||
/**
|
||||
offset 1304 bit 20 */
|
||||
bool unusedFancy1 : 1 {};
|
||||
bool torqueReductionEnabled : 1 {};
|
||||
/**
|
||||
offset 1304 bit 21 */
|
||||
bool unusedFancy2 : 1 {};
|
||||
bool torqueReductionTriggerPinInverted : 1 {};
|
||||
/**
|
||||
offset 1304 bit 22 */
|
||||
bool unusedFancy14 : 1 {};
|
||||
|
@ -3653,7 +3653,11 @@ struct engine_configuration_s {
|
|||
/**
|
||||
* offset 2384
|
||||
*/
|
||||
int16_t unusedEtbRocExpAverageLength;
|
||||
pin_input_mode_e torqueReductionTriggerPinMode;
|
||||
/**
|
||||
* offset 2385
|
||||
*/
|
||||
torqueReductionActivationMode_e torqueReductionActivationMode;
|
||||
/**
|
||||
* A delay in cycles between fuel-enrich. portions
|
||||
* units: cycles
|
||||
|
|
|
@ -1292,7 +1292,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3071334932
|
||||
#define SIGNATURE_HASH 426126343
|
||||
#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"
|
||||
|
@ -1350,6 +1350,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22972
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1750,14 +1754,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 master.2024.09.27.alphax-2chan.3071334932"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.alphax-2chan.426126343"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1293,7 +1293,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1741762801
|
||||
#define SIGNATURE_HASH 3383215842
|
||||
#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"
|
||||
|
@ -1351,6 +1351,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22972
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1751,14 +1755,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 master.2024.09.27.alphax-4chan.1741762801"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.alphax-4chan.3383215842"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "C2/C3 Crank VR"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "E5/E6 Cam VR"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1293,7 +1293,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1741762801
|
||||
#define SIGNATURE_HASH 3383215842
|
||||
#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"
|
||||
|
@ -1351,6 +1351,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22972
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1751,14 +1755,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 master.2024.09.27.alphax-4chan_f7.1741762801"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.alphax-4chan_f7.3383215842"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "C2/C3 Crank VR"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "E5/E6 Cam VR"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1400788376
|
||||
#define SIGNATURE_HASH 4245201803
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.alphax-4k-gdi.1400788376"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.alphax-4k-gdi.4245201803"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1292,7 +1292,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 2121389561
|
||||
#define SIGNATURE_HASH 3490128874
|
||||
#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"
|
||||
|
@ -1350,6 +1350,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22972
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1750,14 +1754,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 master.2024.09.27.alphax-8chan-revA.2121389561"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.alphax-8chan-revA.3490128874"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1292,7 +1292,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 2634037466
|
||||
#define SIGNATURE_HASH 863424201
|
||||
#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"
|
||||
|
@ -1350,6 +1350,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22988
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1750,14 +1754,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 master.2024.09.27.alphax-8chan.2634037466"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.alphax-8chan.863424201"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1292,7 +1292,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 2634037466
|
||||
#define SIGNATURE_HASH 863424201
|
||||
#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"
|
||||
|
@ -1350,6 +1350,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22988
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1750,14 +1754,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 master.2024.09.27.alphax-8chan_f7.2634037466"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.alphax-8chan_f7.863424201"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1291,7 +1291,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 4217774741
|
||||
#define SIGNATURE_HASH 1427166342
|
||||
#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"
|
||||
|
@ -1349,6 +1349,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22972
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1749,14 +1753,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 master.2024.09.27.alphax-silver.4217774741"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.alphax-silver.1427166342"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3336055091
|
||||
#define SIGNATURE_HASH 1756290848
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.at_start_f435.3336055091"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.at_start_f435.1756290848"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 2195717501
|
||||
#define SIGNATURE_HASH 749276014
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22468
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.atlas.2195717501"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.atlas.749276014"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1293,7 +1293,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets true
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 643883150
|
||||
#define SIGNATURE_HASH 2283148957
|
||||
#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"
|
||||
|
@ -1351,6 +1351,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22972
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1751,14 +1755,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 master.2024.09.27.f407-discovery.643883150"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.f407-discovery.2283148957"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3336055091
|
||||
#define SIGNATURE_HASH 1756290848
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.f429-discovery.3336055091"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.f429-discovery.1756290848"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 4094635936
|
||||
#define SIGNATURE_HASH 1517935027
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.f469-discovery.4094635936"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.f469-discovery.1517935027"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets true
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 2421906728
|
||||
#define SIGNATURE_HASH 1043180347
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.frankenso_na6.2421906728"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.frankenso_na6.1043180347"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3336055091
|
||||
#define SIGNATURE_HASH 1756290848
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.haba208.3336055091"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.haba208.1756290848"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1339077047
|
||||
#define SIGNATURE_HASH 3785770916
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.hellen-112-17.1339077047"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellen-112-17.3785770916"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 178343563
|
||||
#define SIGNATURE_HASH 2765600920
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.hellen-gm-e67.178343563"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellen-gm-e67.2765600920"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1292,7 +1292,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 2464242501
|
||||
#define SIGNATURE_HASH 1016573270
|
||||
#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"
|
||||
|
@ -1350,6 +1350,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 23456
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.hellen-honda-k.2464242501"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellen-honda-k.1016573270"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1165949996
|
||||
#define SIGNATURE_HASH 3943172671
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.hellen-nb1.1165949996"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellen-nb1.3943172671"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 373537715
|
||||
#define SIGNATURE_HASH 3090501024
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.hellen121nissan.373537715"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellen121nissan.3090501024"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1311418868
|
||||
#define SIGNATURE_HASH 3764150247
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.hellen121vag.1311418868"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellen121vag.3764150247"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 726270916
|
||||
#define SIGNATURE_HASH 2235364823
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.hellen128.726270916"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellen128.2235364823"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 2646423236
|
||||
#define SIGNATURE_HASH 868991191
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.hellen154hyundai.2646423236"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellen154hyundai.868991191"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3935337071
|
||||
#define SIGNATURE_HASH 1155959932
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.hellen154hyundai_f7.3935337071"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellen154hyundai_f7.1155959932"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1005634789
|
||||
#define SIGNATURE_HASH 2508600054
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.hellen72.1005634789"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellen72.2508600054"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 2739452373
|
||||
#define SIGNATURE_HASH 222187462
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.hellen81.2739452373"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellen81.222187462"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3026955414
|
||||
#define SIGNATURE_HASH 438131333
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.hellen88bmw.3026955414"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellen88bmw.438131333"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1383975635
|
||||
#define SIGNATURE_HASH 4228594880
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.hellenNA6.1383975635"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellenNA6.4228594880"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1296,7 +1296,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 2913437725
|
||||
#define SIGNATURE_HASH 64060942
|
||||
#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"
|
||||
|
@ -1354,6 +1354,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1754,14 +1758,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 master.2024.09.27.hellenNA8_96.2913437725"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.hellenNA8_96.64060942"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1919029740
|
||||
#define SIGNATURE_HASH 3692357631
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.m74_9.1919029740"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.m74_9.3692357631"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3690943612
|
||||
#define SIGNATURE_HASH 1971954287
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 24968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.mre-legacy_f4.3690943612"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.mre-legacy_f4.1971954287"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3690943612
|
||||
#define SIGNATURE_HASH 1971954287
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 24968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.mre_f4.3690943612"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.mre_f4.1971954287"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3690943612
|
||||
#define SIGNATURE_HASH 1971954287
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 24968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.mre_f7.3690943612"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.mre_f7.1971954287"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3336055091
|
||||
#define SIGNATURE_HASH 1756290848
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.nucleo_f413.3336055091"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.nucleo_f413.1756290848"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1293,7 +1293,7 @@
|
|||
#define show_Proteus_presets true
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1518109909
|
||||
#define SIGNATURE_HASH 4094325446
|
||||
#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"
|
||||
|
@ -1351,6 +1351,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 28468
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1751,14 +1755,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 master.2024.09.27.proteus_f4.1518109909"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.proteus_f4.4094325446"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1293,7 +1293,7 @@
|
|||
#define show_Proteus_presets true
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1518109909
|
||||
#define SIGNATURE_HASH 4094325446
|
||||
#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"
|
||||
|
@ -1351,6 +1351,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 28468
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1751,14 +1755,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 master.2024.09.27.proteus_f7.1518109909"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.proteus_f7.4094325446"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1293,7 +1293,7 @@
|
|||
#define show_Proteus_presets true
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1518109909
|
||||
#define SIGNATURE_HASH 4094325446
|
||||
#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"
|
||||
|
@ -1351,6 +1351,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 28468
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1751,14 +1755,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 master.2024.09.27.proteus_h7.1518109909"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.proteus_h7.4094325446"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 2035526129
|
||||
#define SIGNATURE_HASH 3609550818
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.s105.2035526129"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.s105.3609550818"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
#define show_small_can_board_presets true
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 1614088977
|
||||
#define SIGNATURE_HASH 3460562178
|
||||
#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"
|
||||
|
@ -1353,6 +1353,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1754,14 +1758,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 master.2024.09.27.small-can-board.1614088977"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.small-can-board.3460562178"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3336055091
|
||||
#define SIGNATURE_HASH 1756290848
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.stm32f429_nucleo.3336055091"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.stm32f429_nucleo.1756290848"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3336055091
|
||||
#define SIGNATURE_HASH 1756290848
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.stm32f767_nucleo.3336055091"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.stm32f767_nucleo.1756290848"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 3336055091
|
||||
#define SIGNATURE_HASH 1756290848
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1752,14 +1756,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 master.2024.09.27.stm32h743_nucleo.3336055091"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.stm32h743_nucleo.1756290848"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
|
@ -1294,7 +1294,7 @@
|
|||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define show_vvt_output_pin true
|
||||
#define SIGNATURE_HASH 2583236973
|
||||
#define SIGNATURE_HASH 932177790
|
||||
#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"
|
||||
|
@ -1352,6 +1352,10 @@
|
|||
#define TOOTH_PACKET_SIZE 2
|
||||
#define TOP_DEAD_CENTER_MESSAGE "r"
|
||||
#define TORQUE_CURVE_SIZE 6
|
||||
#define torqueReductionActivationMode_e_auto_enum 0="TORQUE_REDUCTION_BUTTON",1="LAUNCH_BUTTON"
|
||||
#define torqueReductionActivationMode_e_enum "Torque Reduction Button", "Launch Button"
|
||||
#define torqueReductionActivationMode_e_LAUNCH_BUTTON 1
|
||||
#define torqueReductionActivationMode_e_TORQUE_REDUCTION_BUTTON 0
|
||||
#define TOTAL_CONFIG_SIZE 22968
|
||||
#define TPS_2_BYTE_PACKING_MULT 100
|
||||
#define TPS_PPS_TOO_HIGH_THRESHOLD 110
|
||||
|
@ -1753,14 +1757,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 master.2024.09.27.subaru_eg33_f7.2583236973"
|
||||
#define TS_SIGNATURE "rusEFI master.2024.09.27.subaru_eg33_f7.932177790"
|
||||
#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 1748
|
||||
#define TS_TOTAL_OUTPUT_SIZE 1752
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1"
|
||||
#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2"
|
||||
#define TS_TRIGGER_SCOPE_DISABLE 5
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue