diff --git a/generated/controllers/generated/engine_configuration_generated_structures_z31-f7.h b/generated/controllers/generated/engine_configuration_generated_structures_z31-f7.h new file mode 100644 index 0000000..6747a87 --- /dev/null +++ b/generated/controllers/generated/engine_configuration_generated_structures_z31-f7.h @@ -0,0 +1,5828 @@ +// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt +// by class com.rusefi.output.CHeaderConsumer +// begin +#pragma once +#include "rusefi_types.h" +// start of stft_cell_cfg_s +struct stft_cell_cfg_s { + /** + * Maximum % that the short term fuel trim can add + * units: % + * offset 0 + */ + int8_t maxAdd; + /** + * Maximum % that the short term fuel trim can remove + * units: % + * offset 1 + */ + int8_t maxRemove; + /** + * Time constant for correction while in this cell: this sets responsiveness of the closed loop correction. A value of 5.0 means it will try to make most of the correction within 5 seconds, and a value of 1.0 will try to correct within 1 second. + * units: sec + * offset 2 + */ + scaled_channel timeConstant; +}; +static_assert(sizeof(stft_cell_cfg_s) == 4); + +// start of stft_s +struct stft_s { + /** + * Below this RPM, the idle region is active, idle+300 would be a good value + * units: RPM + * offset 0 + */ + scaled_channel maxIdleRegionRpm; + /** + * need 4 byte alignment + * units: units + * offset 1 + */ + uint8_t alignmentFill_at_1[1]; + /** + * Below this engine load, the overrun region is active + * units: load + * offset 2 + */ + uint16_t maxOverrunLoad; + /** + * Above this engine load, the power region is active + * units: load + * offset 4 + */ + uint16_t minPowerLoad; + /** + * When close to correct AFR, pause correction. This can improve stability by not changing the adjustment if the error is extremely small, but is not required. + * units: % + * offset 6 + */ + scaled_channel deadband; + /** + * Below this temperature, correction is disabled. + * units: C + * offset 7 + */ + int8_t minClt; + /** + * Below this AFR, correction is paused + * units: afr + * offset 8 + */ + scaled_channel minAfr; + /** + * Above this AFR, correction is paused + * units: afr + * offset 9 + */ + scaled_channel maxAfr; + /** + * Delay after starting the engine before beginning closed loop correction. + * units: seconds + * offset 10 + */ + uint8_t startupDelay; + /** + * need 4 byte alignment + * units: units + * offset 11 + */ + uint8_t alignmentFill_at_11[1]; + /** + * offset 12 + */ + stft_cell_cfg_s cellCfgs[STFT_CELL_COUNT]; +}; +static_assert(sizeof(stft_s) == 28); + +// start of pid_s +struct pid_s { + /** + * offset 0 + */ + float pFactor; + /** + * offset 4 + */ + float iFactor; + /** + * offset 8 + */ + float dFactor; + /** + * Linear addition to PID logic + * offset 12 + */ + int16_t offset; + /** + * PID dTime + * units: ms + * offset 14 + */ + int16_t periodMs; + /** + * Output Min Duty Cycle + * offset 16 + */ + int16_t minValue; + /** + * Output Max Duty Cycle + * offset 18 + */ + int16_t maxValue; +}; +static_assert(sizeof(pid_s) == 20); + +// start of MsIoBox_config_s +struct MsIoBox_config_s { + /** + * offset 0 + */ + MsIoBoxId id; + /** + * offset 1 + */ + MsIoBoxVss vss; + /** + * need 4 byte alignment + * units: units + * offset 2 + */ + uint8_t alignmentFill_at_2[2]; +}; +static_assert(sizeof(MsIoBox_config_s) == 4); + +// start of cranking_parameters_s +struct cranking_parameters_s { + /** + * Base mass of the per-cylinder fuel injected during cranking. This is then modified by the multipliers for CLT, IAT, TPS ect, to give the final cranking pulse width. + * A reasonable starting point is 60mg per liter per cylinder. + * ex: 2 liter 4 cyl = 500cc/cyl, so 30mg cranking fuel. + * units: mg + * offset 0 + */ + float baseFuel; + /** + * This sets the RPM limit below which the ECU will use cranking fuel and ignition logic, typically this is around 350-450rpm. + * set cranking_rpm X + * units: RPM + * offset 4 + */ + int16_t rpm; + /** + * need 4 byte alignment + * units: units + * offset 6 + */ + uint8_t alignmentFill_at_6[2]; +}; +static_assert(sizeof(cranking_parameters_s) == 8); + +// start of gppwm_channel +struct gppwm_channel { + /** + * Select a pin to use for PWM or on-off output. + * offset 0 + */ + output_pin_e pin; + /** + * If an error (with a sensor, etc) is detected, this value is used instead of reading from the table. + * This should be a safe value for whatever hardware is connected to prevent damage. + * units: % + * offset 2 + */ + uint8_t dutyIfError; + /** + * need 4 byte alignment + * units: units + * offset 3 + */ + uint8_t alignmentFill_at_3[1]; + /** + * Select a frequency to run PWM at. + * Set this to 0hz to enable on-off mode. + * units: hz + * offset 4 + */ + uint16_t pwmFrequency; + /** + * Hysteresis: in on-off mode, turn the output on when the table value is above this duty. + * units: % + * offset 6 + */ + uint8_t onAboveDuty; + /** + * Hysteresis: in on-off mode, turn the output off when the table value is below this duty. + * units: % + * offset 7 + */ + uint8_t offBelowDuty; + /** + * Selects the Y axis to use for the table. + * offset 8 + */ + gppwm_channel_e loadAxis; + /** + * Selects the X axis to use for the table. + * offset 9 + */ + gppwm_channel_e rpmAxis; + /** + * offset 10 + */ + scaled_channel loadBins[GPPWM_LOAD_COUNT]; + /** + * offset 26 + */ + int16_t rpmBins[GPPWM_RPM_COUNT]; + /** + * units: duty + * offset 42 + */ + scaled_channel table[GPPWM_LOAD_COUNT][GPPWM_RPM_COUNT]; + /** + * need 4 byte alignment + * units: units + * offset 106 + */ + uint8_t alignmentFill_at_106[2]; +}; +static_assert(sizeof(gppwm_channel) == 108); + +// start of air_pressure_sensor_config_s +struct air_pressure_sensor_config_s { + /** + * kPa value at low volts + * units: kpa + * offset 0 + */ + float lowValue; + /** + * kPa value at high volts + * units: kpa + * offset 4 + */ + float highValue; + /** + * offset 8 + */ + air_pressure_sensor_type_e type; + /** + * offset 9 + */ + adc_channel_e hwChannel; + /** + * need 4 byte alignment + * units: units + * offset 10 + */ + uint8_t alignmentFill_at_10[2]; +}; +static_assert(sizeof(air_pressure_sensor_config_s) == 12); + +// start of MAP_sensor_config_s +struct MAP_sensor_config_s { + /** + * offset 0 + */ + float samplingAngleBins[MAP_ANGLE_SIZE]; + /** + * MAP averaging sampling start crank degree angle + * units: deg + * offset 32 + */ + float samplingAngle[MAP_ANGLE_SIZE]; + /** + * offset 64 + */ + float samplingWindowBins[MAP_WINDOW_SIZE]; + /** + * MAP averaging angle crank degree duration + * units: deg + * offset 96 + */ + float samplingWindow[MAP_WINDOW_SIZE]; + /** + * offset 128 + */ + air_pressure_sensor_config_s sensor; +}; +static_assert(sizeof(MAP_sensor_config_s) == 140); + +/** + * @brief Thermistor known values + +*/ +// start of thermistor_conf_s +struct thermistor_conf_s { + /** + * these values are in Celcius + * units: *C + * offset 0 + */ + float tempC_1; + /** + * units: *C + * offset 4 + */ + float tempC_2; + /** + * units: *C + * offset 8 + */ + float tempC_3; + /** + * units: Ohm + * offset 12 + */ + float resistance_1; + /** + * units: Ohm + * offset 16 + */ + float resistance_2; + /** + * units: Ohm + * offset 20 + */ + float resistance_3; + /** + * Pull-up resistor value on your board + * units: Ohm + * offset 24 + */ + float bias_resistor; +}; +static_assert(sizeof(thermistor_conf_s) == 28); + +// start of linear_sensor_s +struct linear_sensor_s { + /** + * offset 0 + */ + adc_channel_e hwChannel; + /** + * need 4 byte alignment + * units: units + * offset 1 + */ + uint8_t alignmentFill_at_1[3]; + /** + * units: volts + * offset 4 + */ + float v1; + /** + * offset 8 + */ + float value1; + /** + * units: volts + * offset 12 + */ + float v2; + /** + * offset 16 + */ + float value2; +}; +static_assert(sizeof(linear_sensor_s) == 20); + +// start of ThermistorConf +struct ThermistorConf { + /** + * offset 0 + */ + thermistor_conf_s config; + /** + * offset 28 + */ + adc_channel_e adcChannel; + /** + * need 4 byte alignment + * units: units + * offset 29 + */ + uint8_t alignmentFill_at_29[3]; +}; +static_assert(sizeof(ThermistorConf) == 32); + +// start of injector_s +struct injector_s { + /** + * This is your injector flow at the fuel pressure used in the vehicle + * See units setting below + * offset 0 + */ + float flow; + /** + * units: volts + * offset 4 + */ + float battLagCorrBins[VBAT_INJECTOR_CURVE_SIZE]; + /** + * ms delay between injector open and close dead times + * units: ms + * offset 36 + */ + float battLagCorr[VBAT_INJECTOR_CURVE_SIZE]; +}; +static_assert(sizeof(injector_s) == 68); + +// start of trigger_config_s +struct trigger_config_s { + /** + * https://github.com/rusefi/rusefi/wiki/All-Supported-Triggers + * offset 0 + */ + trigger_type_e type; + /** + * units: number + * offset 4 + */ + int customTotalToothCount; + /** + * units: number + * offset 8 + */ + int customSkippedToothCount; +}; +static_assert(sizeof(trigger_config_s) == 12); + +// start of afr_sensor_s +struct afr_sensor_s { + /** + * offset 0 + */ + adc_channel_e hwChannel; + /** + * offset 1 + */ + adc_channel_e hwChannel2; + /** + * need 4 byte alignment + * units: units + * offset 2 + */ + uint8_t alignmentFill_at_2[2]; + /** + * units: volts + * offset 4 + */ + float v1; + /** + * units: AFR + * offset 8 + */ + float value1; + /** + * units: volts + * offset 12 + */ + float v2; + /** + * units: AFR + * offset 16 + */ + float value2; +}; +static_assert(sizeof(afr_sensor_s) == 20); + +// start of idle_hardware_s +struct idle_hardware_s { + /** + * units: Hz + * offset 0 + */ + int solenoidFrequency; + /** + * offset 4 + */ + output_pin_e solenoidPin; + /** + * offset 6 + */ + Gpio stepperDirectionPin; + /** + * offset 8 + */ + Gpio stepperStepPin; + /** + * offset 10 + */ + pin_output_mode_e solenoidPinMode; + /** + * need 4 byte alignment + * units: units + * offset 11 + */ + uint8_t alignmentFill_at_11[1]; +}; +static_assert(sizeof(idle_hardware_s) == 12); + +// start of dc_io +struct dc_io { + /** + * offset 0 + */ + Gpio directionPin1; + /** + * offset 2 + */ + Gpio directionPin2; + /** + * Acts as EN pin in two-wire mode + * offset 4 + */ + Gpio controlPin; + /** + * offset 6 + */ + Gpio disablePin; +}; +static_assert(sizeof(dc_io) == 8); + +// start of vr_threshold_s +struct vr_threshold_s { + /** + * units: rpm + * offset 0 + */ + scaled_channel rpmBins[6]; + /** + * units: volts + * offset 6 + */ + scaled_channel values[6]; + /** + * offset 12 + */ + Gpio pin; + /** + * need 4 byte alignment + * units: units + * offset 14 + */ + uint8_t alignmentFill_at_14[2]; +}; +static_assert(sizeof(vr_threshold_s) == 16); + +// start of engine_configuration_s +struct engine_configuration_s { + /** + * http://rusefi.com/wiki/index.php?title=Manual:Engine_Type + * set engine_type X + * offset 0 + */ + engine_type_e engineType; + /** + * offset 2 + */ + uint16_t startButtonSuppressOnStartUpMs; + /** + * Disable sensor sniffer above this rpm + * units: RPM + * offset 4 + */ + uint16_t sensorSnifferRpmThreshold; + /** + * A secondary Rev limit engaged by the driver to help launch the vehicle faster + * units: rpm + * offset 6 + */ + uint16_t launchRpm; + /** + * set rpm_hard_limit X + * units: rpm + * offset 8 + */ + uint16_t rpmHardLimit; + /** + * Engine sniffer would be disabled above this rpm + * set engineSnifferRpmThreshold X + * units: RPM + * offset 10 + */ + uint16_t engineSnifferRpmThreshold; + /** + * Disable multispark above this engine speed. + * units: rpm + * offset 12 + */ + scaled_channel multisparkMaxRpm; + /** + * Above this RPM, disable AC. Set to 0 to disable check. + * units: rpm + * offset 13 + */ + scaled_channel maxAcRpm; + /** + * Above this TPS, disable AC. Set to 0 to disable check. + * units: % + * offset 14 + */ + uint8_t maxAcTps; + /** + * Above this CLT, disable AC to prevent overheating the engine. Set to 0 to disable check. + * units: deg C + * offset 15 + */ + uint8_t maxAcClt; + /** + * Just for reference really, not taken into account by any logic at this point + * units: CR + * offset 16 + */ + float compressionRatio; + /** + * Voltage when the wastegate is closed. + * You probably don't have one of these! + * units: mv + * offset 20 + */ + uint16_t wastegatePositionMin; + /** + * Voltage when the wastegate is fully open. + * You probably don't have one of these! + * 1 volt = 1000 units + * units: mv + * offset 22 + */ + uint16_t wastegatePositionMax; + /** + * Voltage when the idle valve is closed. + * You probably don't have one of these! + * units: mv + * offset 24 + */ + uint16_t idlePositionMin; + /** + * Voltage when the idle valve is open. + * You probably don't have one of these! + * 1 volt = 1000 units + * units: mv + * offset 26 + */ + uint16_t idlePositionMax; + /** + * offset 28 + */ + output_pin_e mainRelayPin; + /** + * offset 30 + */ + Gpio sdCardCsPin; + /** + * offset 32 + */ + Gpio canTxPin; + /** + * offset 34 + */ + Gpio canRxPin; + /** + * Pin that activates the reduction/cut for shifting. Sometimes shared with the Launch Control pin + * offset 36 + */ + switch_input_pin_e torqueReductionTriggerPin; + /** + * units: % + * offset 38 + */ + int8_t launchFuelAdderPercent; + /** + * Time after which the throttle is considered jammed. + * units: sec + * offset 39 + */ + scaled_channel etbJamTimeout; + /** + * offset 40 + */ + output_pin_e tachOutputPin; + /** + * offset 42 + */ + pin_output_mode_e tachOutputPinMode; + /** + * Additional idle % while A/C is active + * units: % + * offset 43 + */ + uint8_t acIdleExtraOffset; + /** + * Value between 0 and 100 used in Manual mode + * units: % + * offset 44 + */ + float manIdlePosition; + /** + * This parameter sets the latest that the last multispark can occur after the main ignition event. For example, if the ignition timing is 30 degrees BTDC, and this parameter is set to 45, no multispark will ever be fired after 15 degrees ATDC. + * units: deg + * offset 48 + */ + uint8_t multisparkMaxSparkingAngle; + /** + * Configures the maximum number of extra sparks to fire (does not include main spark) + * units: count + * offset 49 + */ + uint8_t multisparkMaxExtraSparkCount; + /** + * units: RPM + * offset 50 + */ + int16_t vvtControlMinRpm; + /** + * offset 52 + */ + injector_s injector; + /** + * offset 120 + */ + injector_s injectorSecondary; + /** + * Does the vehicle have a turbo or supercharger? + offset 188 bit 0 */ + bool isForcedInduction : 1 {}; + /** + * On some Ford and Toyota vehicles one of the throttle sensors is not linear on the full range, i.e. in the specific range of the positions we effectively have only one sensor. + offset 188 bit 1 */ + bool useFordRedundantTps : 1 {}; + /** + offset 188 bit 2 */ + bool enableKline : 1 {}; + /** + offset 188 bit 3 */ + bool overrideTriggerGaps : 1 {}; + /** + * Turn on this fan when AC is on. + offset 188 bit 4 */ + bool enableFan1WithAc : 1 {}; + /** + * Turn on this fan when AC is on. + offset 188 bit 5 */ + bool enableFan2WithAc : 1 {}; + /** + * Inhibit operation of this fan while the engine is not running. + offset 188 bit 6 */ + bool disableFan1WhenStopped : 1 {}; + /** + * Inhibit operation of this fan while the engine is not running. + offset 188 bit 7 */ + bool disableFan2WhenStopped : 1 {}; + /** + * Enable secondary spark outputs that fire after the primary (rotaries, twin plug engines). + offset 188 bit 8 */ + bool enableTrailingSparks : 1 {}; + /** + * TLE7209 and L6205 use two-wire mode. TLE9201 and VNH2SP30 do NOT use two wire mode. + offset 188 bit 9 */ + bool etb_use_two_wires : 1 {}; + /** + * Subaru/BMW style where default valve position is somewhere in the middle. First solenoid opens it more while second can close it more than default position. + offset 188 bit 10 */ + bool isDoubleSolenoidIdle : 1 {}; + /** + offset 188 bit 11 */ + bool useEeprom : 1 {}; + /** + * Switch between Industrial and Cic PID implementation + offset 188 bit 12 */ + bool useCicPidForIdle : 1 {}; + /** + offset 188 bit 13 */ + bool useTLE8888_cranking_hack : 1 {}; + /** + offset 188 bit 14 */ + bool kickStartCranking : 1 {}; + /** + * This uses separate ignition timing and VE tables not only for idle conditions, also during the postcranking-to-idle taper transition (See also afterCrankingIACtaperDuration). + offset 188 bit 15 */ + bool useSeparateIdleTablesForCrankingTaper : 1 {}; + /** + offset 188 bit 16 */ + bool launchControlEnabled : 1 {}; + /** + * "Detect double trigger edges" + offset 188 bit 17 */ + bool doNotFilterTriggerEdgeNoise : 1 {}; + /** + offset 188 bit 18 */ + bool antiLagEnabled : 1 {}; + /** + * For cranking either use the specified fixed base fuel mass, or use the normal running math (VE table). + offset 188 bit 19 */ + bool useRunningMathForCranking : 1 {}; + /** + * Shall we display real life signal or just the part consumed by trigger decoder. + * Applies to both trigger and cam/vvt input. + * + * enable logic_level_trigger + offset 188 bit 20 */ + bool displayLogicLevelsInEngineSniffer : 1 {}; + /** + offset 188 bit 21 */ + bool useTLE8888_stepper : 1 {}; + /** + offset 188 bit 22 */ + bool usescriptTableForCanSniffingFiltering : 1 {}; + /** + * Print incoming and outgoing first bus CAN messages in rusEFI console + offset 188 bit 23 */ + bool verboseCan : 1 {}; + /** + * Experimental setting that will cause a misfire + * DO NOT ENABLE. + offset 188 bit 24 */ + bool artificialTestMisfire : 1 {}; + /** + * On some Ford and Toyota vehicles one of the pedal sensors is not linear on the full range, i.e. in the specific range of the positions we effectively have only one sensor. + offset 188 bit 25 */ + bool useFordRedundantPps : 1 {}; + /** + offset 188 bit 26 */ + bool cltSensorPulldown : 1 {}; + /** + offset 188 bit 27 */ + bool iatSensorPulldown : 1 {}; + /** + offset 188 bit 28 */ + bool allowIdenticalPps : 1 {}; + /** + offset 188 bit 29 */ + bool overrideVvtTriggerGaps : 1 {}; + /** + * If enabled - use onboard SPI Accelerometer, otherwise listen for CAN messages + offset 188 bit 30 */ + bool useSpiImu : 1 {}; + /** + offset 188 bit 31 */ + bool enableStagedInjection : 1 {}; + /** + * Closed throttle, 1 volt = 200 units. + * See also tps1_1AdcChannel + * set tps_min X + * units: ADC + * offset 192 + */ + int16_t tpsMin; + /** + * Full throttle. + * See also tps1_1AdcChannel + * set tps_max X + * units: ADC + * offset 194 + */ + int16_t tpsMax; + /** + * TPS error detection: what throttle % is unrealistically low? + * Also used for accelerator pedal error detection if so equipped. + * units: % + * offset 196 + */ + int16_t tpsErrorDetectionTooLow; + /** + * TPS error detection: what throttle % is unrealistically high? + * Also used for accelerator pedal error detection if so equipped. + * units: % + * offset 198 + */ + int16_t tpsErrorDetectionTooHigh; + /** + * offset 200 + */ + cranking_parameters_s cranking; + /** + * Dwell duration while cranking + * units: ms + * offset 208 + */ + float ignitionDwellForCrankingMs; + /** + * Once engine speed passes this value, start reducing ETB angle. + * units: rpm + * offset 212 + */ + uint16_t etbRevLimitStart; + /** + * This far above 'Soft limiter start', fully close the throttle. At the bottom of the range, throttle control is normal. At the top of the range, the throttle is fully closed. + * units: rpm + * offset 214 + */ + uint16_t etbRevLimitRange; + /** + * @see isMapAveragingEnabled + * offset 216 + */ + MAP_sensor_config_s map; + /** + * todo: merge with channel settings, use full-scale Thermistor here! + * offset 356 + */ + ThermistorConf clt; + /** + * offset 388 + */ + ThermistorConf iat; + /** + * units: deg + * offset 420 + */ + float launchTimingRetard; + /** + * value '6' for 8MHz hw osc + * read hip9011 datasheet for details + * todo split into two bit fields + * units: integer + * offset 424 + */ + int hip9011PrescalerAndSDO; + /** + * iTerm min value + * offset 428 + */ + int16_t alternator_iTermMin; + /** + * iTerm max value + * offset 430 + */ + int16_t alternator_iTermMax; + /** + * @@DISPLACEMENT_TOOLTIP@@ + * units: L + * offset 432 + */ + scaled_channel displacement; + /** + * units: RPM + * offset 434 + */ + uint16_t triggerSimulatorRpm; + /** + * Number of cylinder the engine has. + * offset 436 + */ + uint32_t cylindersCount; + /** + * offset 440 + */ + firing_order_e firingOrder; + /** + * offset 441 + */ + uint8_t justATempTest; + /** + * Delta kPa for MAP sync + * units: kPa + * offset 442 + */ + uint8_t mapSyncThreshold; + /** + * How many % of ignition events will be cut + * units: % + * offset 443 + */ + int8_t torqueReductionIgnitionCut; + /** + * @@CYLINDER_BORE_TOOLTIP@@ + * units: mm + * offset 444 + */ + float cylinderBore; + /** + * This setting controls which fuel quantity control algorithm is used. + * Alpha-N means drive by TPS commonly only used for NA engines + * Speed Density requires MAP sensor and is the default choice for may installs + * MAF air charge is a cylinder filling based method that uses a mass air flow sensor. + * offset 448 + */ + engine_load_mode_e fuelAlgorithm; + /** + * units: % + * offset 449 + */ + uint8_t ALSMaxTPS; + /** + * This is the injection strategy during engine start. See Fuel/Injection settings for more detail. It is suggested to use "Simultaneous". + * offset 450 + */ + injection_mode_e crankingInjectionMode; + /** + * This is where the fuel injection type is defined: "Simultaneous" means all injectors will fire together at once. "Sequential" fires the injectors on a per cylinder basis, which requires individually wired injectors. "Batched" will fire the injectors in groups. + * offset 451 + */ + injection_mode_e injectionMode; + /** + * Minimum RPM to enable boost control. Use this to avoid solenoid noise at idle, and help spool in some cases. + * offset 452 + */ + uint16_t boostControlMinRpm; + /** + * Minimum TPS to enable boost control. Use this to avoid solenoid noise at idle, and help spool in some cases. + * offset 454 + */ + uint8_t boostControlMinTps; + /** + * need 4 byte alignment + * units: units + * offset 455 + */ + uint8_t alignmentFill_at_455[1]; + /** + * Minimum MAP to enable boost control. Use this to avoid solenoid noise at idle, and help spool in some cases. + * offset 456 + */ + uint16_t boostControlMinMap; + /** + * need 4 byte alignment + * units: units + * offset 458 + */ + uint8_t alignmentFill_at_458[2]; + /** + * Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines. + * There is tapering towards running timing advance + * set cranking_timing_angle X + * units: deg + * offset 460 + */ + angle_t crankingTimingAngle; + /** + * Single coil = distributor + * Individual coils = one coil per cylinder (COP, coil-near-plug), requires sequential mode + * Wasted spark = Fires pairs of cylinders together, either one coil per pair of cylinders or one coil per cylinder + * Two distributors = A pair of distributors, found on some BMW, Toyota and other engines + * set ignition_mode X + * offset 464 + */ + ignition_mode_e ignitionMode; + /** + * How many consecutive gap rations have to match expected ranges for sync to happen + * units: count + * offset 465 + */ + int8_t gapTrackingLengthOverride; + /** + * Above this speed, disable closed loop idle control. Set to 0 to disable (allow closed loop idle at any speed). + * units: kph + * offset 466 + */ + uint8_t maxIdleVss; + /** + * offset 467 + */ + uint8_t camDecoder2jzPrecision; + /** + * Expected oil pressure after starting the engine. If oil pressure does not reach this level within 5 seconds of engine start, fuel will be cut. Set to 0 to disable and always allow starting. + * units: kPa + * offset 468 + */ + uint16_t minOilPressureAfterStart; + /** + * Dynamic uses the timing map to decide the ignition timing + * Static timing fixes the timing to the value set below (only use for checking static timing with a timing light). + * offset 470 + */ + timing_mode_e timingMode; + /** + * offset 471 + */ + can_nbc_e canNbcType; + /** + * This value is the ignition timing used when in 'fixed timing' mode, i.e. constant timing + * This mode is useful when adjusting distributor location. + * units: RPM + * offset 472 + */ + angle_t fixedModeTiming; + /** + * Angle between Top Dead Center (TDC) and the first trigger event. + * Positive value in case of synchronization point before TDC and negative in case of synchronization point after TDC + * .Knowing this angle allows us to control timing and other angles in reference to TDC. + * HOWTO: + * 1: Switch to fixed timing mode on 'ignition setting' dialog + * 2: use an actual timing light to calibrate + * 3: add/subtract until timing light confirms desired fixed timing value!' + * units: deg btdc + * offset 476 + */ + angle_t globalTriggerAngleOffset; + /** + * Ratio/coefficient of input voltage dividers on your PCB. For example, use '2' if your board divides 5v into 2.5v. Use '1.66' if your board divides 5v into 3v. + * units: coef + * offset 480 + */ + float analogInputDividerCoefficient; + /** + * This is the ratio of the resistors for the battery voltage, measure the voltage at the battery and then adjust this number until the gauge matches the reading. + * units: coef + * offset 484 + */ + float vbattDividerCoeff; + /** + * Cooling fan turn-on temperature threshold, in Celsius + * units: deg C + * offset 488 + */ + float fanOnTemperature; + /** + * Cooling fan turn-off temperature threshold, in Celsius + * units: deg C + * offset 492 + */ + float fanOffTemperature; + /** + * offset 496 + */ + output_pin_e acrPin; + /** + * need 4 byte alignment + * units: units + * offset 498 + */ + uint8_t alignmentFill_at_498[2]; + /** + * Number of revolutions per kilometer for the wheels your vehicle speed sensor is connected to. Use an online calculator to determine this based on your tire size. + * units: revs/km + * offset 500 + */ + float driveWheelRevPerKm; + /** + * CANbus thread period in ms + * units: ms + * offset 504 + */ + int canSleepPeriodMs; + /** + * units: index + * offset 508 + */ + int byFirmwareVersion; + /** + * First throttle body, first sensor. See also pedalPositionAdcChannel + * offset 512 + */ + adc_channel_e tps1_1AdcChannel; + /** + * This is the processor input pin that the battery voltage circuit is connected to, if you are unsure of what pin to use, check the schematic that corresponds to your PCB. + * offset 513 + */ + adc_channel_e vbattAdcChannel; + /** + * This is the processor pin that your fuel level sensor in connected to. This is a non standard input so will need to be user defined. + * offset 514 + */ + adc_channel_e fuelLevelSensor; + /** + * Second throttle body position sensor, single channel so far + * offset 515 + */ + adc_channel_e tps2_1AdcChannel; + /** + * 0.1 is a good default value + * units: x + * offset 516 + */ + float idle_derivativeFilterLoss; + /** + * just a temporary solution + * units: angle + * offset 520 + */ + int trailingSparkAngle; + /** + * offset 524 + */ + trigger_config_s trigger; + /** + * Extra air taper amount + * units: % + * offset 536 + */ + float airByRpmTaper; + /** + * offset 540 + */ + spi_device_e hip9011SpiDevice; + /** + * Duty cycle to use in case of a sensor failure. This duty cycle should produce the minimum possible amount of boost. This duty is also used in case any of the minimum RPM/TPS/MAP conditions are not met. + * units: % + * offset 541 + */ + uint8_t boostControlSafeDutyCycle; + /** + * offset 542 + */ + adc_channel_e mafAdcChannel; + /** + * offset 543 + */ + uint8_t acrRevolutions; + /** + * offset 544 + */ + int calibrationBirthday; + /** + * units: volts + * offset 548 + */ + float adcVcc; + /** + * Magic engine phase: we compare instant MAP at X to instant MAP at x+360 angle in one complete cycle + * units: Deg + * offset 552 + */ + float mapCamDetectionAnglePosition; + /** + * Camshaft input could be used either just for engine phase detection if your trigger shape does not include cam sensor as 'primary' channel, or it could be used for Variable Valve timing on one of the camshafts. + * offset 556 + */ + brain_input_pin_e camInputs[CAM_INPUTS_COUNT]; + /** + * offset 564 + */ + afr_sensor_s afr; + /** + * Electronic throttle pedal position first channel + * See throttlePedalPositionSecondAdcChannel for second channel + * See also tps1_1AdcChannel + * See throttlePedalUpVoltage and throttlePedalWOTVoltage + * offset 584 + */ + adc_channel_e throttlePedalPositionAdcChannel; + /** + * TPS/PPS error threshold + * units: % + * offset 585 + */ + scaled_channel etbSplit; + /** + * offset 586 + */ + Gpio tle6240_cs; + /** + * offset 588 + */ + pin_output_mode_e tle6240_csPinMode; + /** + * offset 589 + */ + pin_output_mode_e mc33810_csPinMode; + /** + * Throttle Pedal not pressed switch - used on some older vehicles like early Mazda Miata + * offset 590 + */ + switch_input_pin_e throttlePedalUpPin; + /** + * @see hasBaroSensor + * offset 592 + */ + air_pressure_sensor_config_s baroSensor; + /** + * offset 604 + */ + idle_hardware_s idle; + /** + * Ignition timing to remove when a knock event occurs. Advice: 5% (mild), 10% (turbo/high comp.), 15% (high knock, e.g. GDI), 20% (spicy lump), + * units: % + * offset 616 + */ + scaled_channel knockRetardAggression; + /** + * After a knock event, reapply timing at this rate. + * units: deg/s + * offset 617 + */ + scaled_channel knockRetardReapplyRate; + /** + * Select which cam is used for engine sync. Other cams will be used only for VVT measurement, but not engine sync. + * offset 618 + */ + engineSyncCam_e engineSyncCam; + /** + * offset 619 + */ + pin_output_mode_e sdCardCsPinMode; + /** + * Number of turns of your vehicle speed sensor per turn of the wheels. For example if your sensor is on the transmission output, enter your axle/differential ratio. If you are using a hub-mounted sensor, enter a value of 1.0. + * units: ratio + * offset 620 + */ + scaled_channel vssGearRatio; + /** + * Set this so your vehicle speed signal is responsive, but not noisy. Larger value give smoother but slower response. + * offset 622 + */ + uint8_t vssFilterReciprocal; + /** + * Number of pulses output per revolution of the shaft where your VSS is mounted. For example, GM applications of the T56 output 17 pulses per revolution of the transmission output shaft. + * units: count + * offset 623 + */ + uint8_t vssToothCount; + /** + * Override the Y axis (load) value used for only the Idle VE table. + * Advanced users only: If you aren't sure you need this, you probably don't need this. + * offset 624 + */ + ve_override_e idleVeOverrideMode; + /** + * need 4 byte alignment + * units: units + * offset 625 + */ + uint8_t alignmentFill_at_625[1]; + /** + * offset 626 + */ + Gpio l9779_cs; + /** + * offset 628 + */ + output_pin_e injectionPins[MAX_CYLINDER_COUNT]; + /** + * offset 652 + */ + output_pin_e ignitionPins[MAX_CYLINDER_COUNT]; + /** + * offset 676 + */ + pin_output_mode_e injectionPinMode; + /** + * offset 677 + */ + pin_output_mode_e ignitionPinMode; + /** + * offset 678 + */ + output_pin_e fuelPumpPin; + /** + * offset 680 + */ + pin_output_mode_e fuelPumpPinMode; + /** + * How many consecutive VVT gap rations have to match expected ranges for sync to happen + * units: count + * offset 681 + */ + int8_t gapVvtTrackingLengthOverride; + /** + * Check engine light, also malfunction indicator light. Always blinks once on boot. + * offset 682 + */ + output_pin_e malfunctionIndicatorPin; + /** + * offset 684 + */ + pin_output_mode_e malfunctionIndicatorPinMode; + /** + * offset 685 + */ + pin_output_mode_e fanPinMode; + /** + * offset 686 + */ + output_pin_e fanPin; + /** + * Some cars have a switch to indicate that clutch pedal is all the way down + * offset 688 + */ + switch_input_pin_e clutchDownPin; + /** + * offset 690 + */ + output_pin_e alternatorControlPin; + /** + * offset 692 + */ + pin_output_mode_e alternatorControlPinMode; + /** + * offset 693 + */ + pin_input_mode_e clutchDownPinMode; + /** + * offset 694 + */ + Gpio digitalPotentiometerChipSelect[DIGIPOT_COUNT]; + /** + * offset 702 + */ + pin_output_mode_e electronicThrottlePin1Mode; + /** + * offset 703 + */ + spi_device_e max31855spiDevice; + /** + * offset 704 + */ + Gpio debugTriggerSync; + /** + * Digital Potentiometer is used by stock ECU stimulation code + * offset 706 + */ + spi_device_e digitalPotentiometerSpiDevice; + /** + * offset 707 + */ + pin_input_mode_e brakePedalPinMode; + /** + * offset 708 + */ + Gpio mc33972_cs; + /** + * offset 710 + */ + pin_output_mode_e mc33972_csPinMode; + /** + * Useful in Research&Development phase + * offset 711 + */ + adc_channel_e auxFastSensor1_adcChannel; + /** + * First throttle body, second sensor. + * offset 712 + */ + adc_channel_e tps1_2AdcChannel; + /** + * Second throttle body, second sensor. + * offset 713 + */ + adc_channel_e tps2_2AdcChannel; + /** + * Electronic throttle pedal position input + * Second channel + * See also tps1_1AdcChannel + * See throttlePedalSecondaryUpVoltage and throttlePedalSecondaryWOTVoltage + * offset 714 + */ + adc_channel_e throttlePedalPositionSecondAdcChannel; + /** + * AFR, WBO, EGO - whatever you like to call it + * offset 715 + */ + ego_sensor_e afr_type; + /** + * offset 716 + */ + Gpio mc33810_cs[C_MC33810_COUNT]; + /** + * need 4 byte alignment + * units: units + * offset 718 + */ + uint8_t alignmentFill_at_718[2]; + /** + * 0.1 is a good default value + * units: x + * offset 720 + */ + float idle_antiwindupFreq; + /** + * offset 724 + */ + brain_input_pin_e triggerInputPins[TRIGGER_INPUT_PIN_COUNT]; + /** + * Minimum allowed time for the boost phase. If the boost target current is reached before this time elapses, it is assumed that the injector has failed short circuit. + * units: us + * offset 728 + */ + uint16_t mc33_t_min_boost; + /** + * offset 730 + */ + pin_output_mode_e hip9011CsPinMode; + /** + * offset 731 + */ + pin_input_mode_e throttlePedalUpPinMode; + /** + * Ratio between the wheels and your transmission output. + * units: ratio + * offset 732 + */ + scaled_channel finalGearRatio; + /** + * offset 734 + */ + brain_input_pin_e tcuInputSpeedSensorPin; + /** + * offset 736 + */ + uint8_t tcuInputSpeedSensorTeeth; + /** + * need 4 byte alignment + * units: units + * offset 737 + */ + uint8_t alignmentFill_at_737[1]; + /** + * Each rusEFI piece can provide synthetic trigger signal for external ECU. Sometimes these wires are routed back into trigger inputs of the same rusEFI board. + * See also directSelfStimulation which is different. + * offset 738 + */ + Gpio triggerSimulatorPins[TRIGGER_SIMULATOR_PIN_COUNT]; + /** + * units: g/s + * offset 742 + */ + scaled_channel fordInjectorSmallPulseSlope; + /** + * offset 744 + */ + pin_output_mode_e triggerSimulatorPinModes[TRIGGER_SIMULATOR_PIN_COUNT]; + /** + * offset 746 + */ + adc_channel_e maf2AdcChannel; + /** + * need 4 byte alignment + * units: units + * offset 747 + */ + uint8_t alignmentFill_at_747[1]; + /** + * On-off O2 sensor heater control. 'ON' if engine is running, 'OFF' if stopped or cranking. + * offset 748 + */ + output_pin_e o2heaterPin; + /** + * offset 750 + */ + pin_output_mode_e o2heaterPinModeTodO; + /** + * units: RPM + * offset 751 + */ + scaled_channel lambdaProtectionMinRpm; + /** + * units: % + * offset 752 + */ + scaled_channel lambdaProtectionMinLoad; + /** + * need 4 byte alignment + * units: units + * offset 753 + */ + uint8_t alignmentFill_at_753[3]; + /** + offset 756 bit 0 */ + bool is_enabled_spi_1 : 1 {}; + /** + offset 756 bit 1 */ + bool is_enabled_spi_2 : 1 {}; + /** + offset 756 bit 2 */ + bool is_enabled_spi_3 : 1 {}; + /** + * enable sd/disable sd + offset 756 bit 3 */ + bool isSdCardEnabled : 1 {}; + /** + * Use 11 bit (standard) or 29 bit (extended) IDs for rusEFI verbose CAN format. + offset 756 bit 4 */ + bool rusefiVerbose29b : 1 {}; + /** + offset 756 bit 5 */ + bool rethrowHardFault : 1 {}; + /** + offset 756 bit 6 */ + bool isHip9011Enabled : 1 {}; + /** + offset 756 bit 7 */ + bool requireFootOnBrakeToCrank : 1 {}; + /** + offset 756 bit 8 */ + bool verboseQuad : 1 {}; + /** + * This setting should only be used if you have a stepper motor idle valve and a stepper motor driver installed. + offset 756 bit 9 */ + bool useStepperIdle : 1 {}; + /** + offset 756 bit 10 */ + bool enabledStep1Limiter : 1 {}; + /** + offset 756 bit 11 */ + bool useTpicAdvancedMode : 1 {}; + /** + offset 756 bit 12 */ + bool lambdaProtectionEnable : 1 {}; + /** + offset 756 bit 13 */ + bool verboseTLE8888 : 1 {}; + /** + * CAN broadcast using custom rusEFI protocol + * enable can_broadcast/disable can_broadcast + offset 756 bit 14 */ + bool enableVerboseCanTx : 1 {}; + /** + offset 756 bit 15 */ + bool externalRusEfiGdiModule : 1 {}; + /** + offset 756 bit 16 */ + bool flipWboChannels : 1 {}; + /** + * Useful for individual intakes + offset 756 bit 17 */ + bool measureMapOnlyInOneCylinder : 1 {}; + /** + offset 756 bit 18 */ + bool stepperForceParkingEveryRestart : 1 {}; + /** + * If enabled, try to fire the engine before a full engine cycle has been completed using RPM estimated from the last 90 degrees of engine rotation. As soon as the trigger syncs plus 90 degrees rotation, fuel and ignition events will occur. If disabled, worst case may require up to 4 full crank rotations before any events are scheduled. + offset 756 bit 19 */ + bool isFasterEngineSpinUpEnabled : 1 {}; + /** + * This setting disables fuel injection while the engine is in overrun, this is useful as a fuel saving measure and to prevent back firing. + offset 756 bit 20 */ + bool coastingFuelCutEnabled : 1 {}; + /** + * Override the IAC position during overrun conditions to help reduce engine breaking, this can be helpful for large engines in light weight cars or engines that have trouble returning to idle. + offset 756 bit 21 */ + bool useIacTableForCoasting : 1 {}; + /** + offset 756 bit 22 */ + bool useNoiselessTriggerDecoder : 1 {}; + /** + offset 756 bit 23 */ + bool useIdleTimingPidControl : 1 {}; + /** + * Allows disabling the ETB when the engine is stopped. You may not like the power draw or PWM noise from the motor, so this lets you turn it off until it's necessary. + offset 756 bit 24 */ + bool disableEtbWhenEngineStopped : 1 {}; + /** + offset 756 bit 25 */ + bool is_enabled_spi_4 : 1 {}; + /** + * Disable the electronic throttle motor and DC idle motor for testing. + * This mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle. + offset 756 bit 26 */ + bool pauseEtbControl : 1 {}; + /** + offset 756 bit 27 */ + bool tpsTpsPercentMode : 1 {}; + /** + offset 756 bit 28 */ + bool verboseKLine : 1 {}; + /** + offset 756 bit 29 */ + bool idleIncrementalPidCic : 1 {}; + /** + * AEM X-Series or rusEFI Wideband + offset 756 bit 30 */ + bool enableAemXSeries : 1 {}; + /** + offset 756 bit 31 */ + bool unused32nd : 1 {}; + /** + * offset 760 + */ + brain_input_pin_e logicAnalyzerPins[LOGIC_ANALYZER_CHANNEL_COUNT]; + /** + * offset 768 + */ + pin_output_mode_e mainRelayPinMode; + /** + * need 4 byte alignment + * units: units + * offset 769 + */ + uint8_t alignmentFill_at_769[1]; + /** + * offset 770 + */ + Gpio hip9011CsPin; + /** + * offset 772 + */ + Gpio hip9011IntHoldPin; + /** + * offset 774 + */ + pin_output_mode_e hip9011IntHoldPinMode; + /** + * need 4 byte alignment + * units: units + * offset 775 + */ + uint8_t alignmentFill_at_775[1]; + /** + * offset 776 + */ + uint32_t verboseCanBaseAddress; + /** + * Boost Voltage + * units: v + * offset 780 + */ + uint8_t mc33_hvolt; + /** + * need 4 byte alignment + * units: units + * offset 781 + */ + uint8_t alignmentFill_at_781[1]; + /** + * Minimum MAP before closed loop boost is enabled. Use to prevent misbehavior upon entering boost. + * units: kPa + * offset 782 + */ + uint16_t minimumBoostClosedLoopMap; + /** + * units: % + * offset 784 + */ + int8_t initialIgnitionCutPercent; + /** + * units: % + * offset 785 + */ + int8_t finalIgnitionCutPercentBeforeLaunch; + /** + * offset 786 + */ + gppwm_channel_e boostOpenLoopYAxis; + /** + * offset 787 + */ + spi_device_e l9779spiDevice; + /** + * offset 788 + */ + imu_type_e imuType; + /** + * need 4 byte alignment + * units: units + * offset 789 + */ + uint8_t alignmentFill_at_789[1]; + /** + * units: kg + * offset 790 + */ + uint16_t vehicleWeight; + /** + * How far above idle speed do we consider idling, i.e. coasting detection threshold. + * For example, if target = 800, this param = 200, then anything below 1000 RPM is considered idle. + * units: RPM + * offset 792 + */ + int16_t idlePidRpmUpperLimit; + /** + * Apply nonlinearity correction below a pulse of this duration. Pulses longer than this duration will receive no adjustment. + * units: ms + * offset 794 + */ + scaled_channel applyNonlinearBelowPulse; + /** + * offset 796 + */ + Gpio lps25BaroSensorScl; + /** + * offset 798 + */ + Gpio lps25BaroSensorSda; + /** + * offset 800 + */ + brain_input_pin_e vehicleSpeedSensorInputPin; + /** + * Some vehicles have a switch to indicate that clutch pedal is all the way up + * offset 802 + */ + switch_input_pin_e clutchUpPin; + /** + * offset 804 + */ + InjectorNonlinearMode injectorNonlinearMode; + /** + * offset 805 + */ + pin_input_mode_e clutchUpPinMode; + /** + * offset 806 + */ + Gpio max31855_cs[EGT_CHANNEL_COUNT]; + /** + * Continental/GM flex fuel sensor, 50-150hz type + * offset 822 + */ + brain_input_pin_e flexSensorPin; + /** + * Since torque reduction pin is usually shared with launch control, most people have an RPM where behavior under that is Launch Control, over that is Flat Shift/Torque Reduction + * units: rpm + * offset 824 + */ + uint16_t torqueReductionArmingRpm; + /** + * offset 826 + */ + pin_output_mode_e stepperDirectionPinMode; + /** + * offset 827 + */ + spi_device_e mc33972spiDevice; + /** + * Stoichiometric ratio for your secondary fuel. This value is used when the Flex Fuel sensor indicates E100, typically 9.0 + * units: :1 + * offset 828 + */ + scaled_channel stoichRatioSecondary; + /** + * Maximum allowed ETB position. Some throttles go past fully open, so this allows you to limit it to fully open. + * units: % + * offset 829 + */ + uint8_t etbMaximumPosition; + /** + * Rate the ECU will log to the SD card, in hz (log lines per second). + * units: hz + * offset 830 + */ + uint16_t sdCardLogFrequency; + /** + * offset 832 + */ + adc_channel_e idlePositionChannel; + /** + * need 4 byte alignment + * units: units + * offset 833 + */ + uint8_t alignmentFill_at_833[1]; + /** + * offset 834 + */ + uint16_t launchCorrectionsEndRpm; + /** + * offset 836 + */ + output_pin_e starterRelayDisablePin; + /** + * On some vehicles we can disable starter once engine is already running + * offset 838 + */ + pin_output_mode_e starterRelayDisablePinMode; + /** + * need 4 byte alignment + * units: units + * offset 839 + */ + uint8_t alignmentFill_at_839[1]; + /** + * Some Subaru and some Mazda use double-solenoid idle air valve + * offset 840 + */ + output_pin_e secondSolenoidPin; + /** + * See also starterControlPin + * offset 842 + */ + switch_input_pin_e startStopButtonPin; + /** + * units: RPM + * offset 844 + */ + scaled_channel lambdaProtectionRestoreRpm; + /** + * offset 845 + */ + pin_output_mode_e acRelayPinMode; + /** + * need 4 byte alignment + * units: units + * offset 846 + */ + uint8_t alignmentFill_at_846[2]; + /** + * This many MAP samples are used to estimate the current MAP. This many samples are considered, and the minimum taken. Recommended value is 1 for single-throttle engines, and your number of cylinders for individual throttle bodies. + * units: count + * offset 848 + */ + int mapMinBufferLength; + /** + * Below this throttle position, the engine is considered idling. If you have an electronic throttle, this checks accelerator pedal position instead of throttle position, and should be set to 1-2%. + * units: % + * offset 852 + */ + int16_t idlePidDeactivationTpsThreshold; + /** + * units: % + * offset 854 + */ + int16_t stepperParkingExtraSteps; + /** + * units: ADC + * offset 856 + */ + uint16_t tps1SecondaryMin; + /** + * units: ADC + * offset 858 + */ + uint16_t tps1SecondaryMax; + /** + * units: rpm + * offset 860 + */ + int16_t antiLagRpmTreshold; + /** + * Maximum time to crank starter when start/stop button is pressed + * units: Seconds + * offset 862 + */ + uint16_t startCrankingDuration; + /** + * This pin is used for debugging - snap a logic analyzer on it and see if it's ever high + * offset 864 + */ + Gpio triggerErrorPin; + /** + * offset 866 + */ + pin_output_mode_e triggerErrorPinMode; + /** + * need 4 byte alignment + * units: units + * offset 867 + */ + uint8_t alignmentFill_at_867[1]; + /** + * offset 868 + */ + output_pin_e acRelayPin; + /** + * units: % + * offset 870 + */ + uint8_t lambdaProtectionMinTps; + /** + * Only respond once lambda is out of range for this period of time. Use to avoid transients triggering lambda protection when not needed + * units: s + * offset 871 + */ + scaled_channel lambdaProtectionTimeout; + /** + * offset 872 + */ + script_setting_t scriptSetting[SCRIPT_SETTING_COUNT]; + /** + * offset 904 + */ + Gpio spi1mosiPin; + /** + * offset 906 + */ + Gpio spi1misoPin; + /** + * offset 908 + */ + Gpio spi1sckPin; + /** + * offset 910 + */ + Gpio spi2mosiPin; + /** + * offset 912 + */ + Gpio spi2misoPin; + /** + * offset 914 + */ + Gpio spi2sckPin; + /** + * offset 916 + */ + Gpio spi3mosiPin; + /** + * offset 918 + */ + Gpio spi3misoPin; + /** + * offset 920 + */ + Gpio spi3sckPin; + /** + * Saab Combustion Detection Module knock signal input pin + * also known as Saab Ion Sensing Module + * offset 922 + */ + Gpio cdmInputPin; + /** + * offset 924 + */ + uart_device_e consoleUartDevice; + /** + * rusEFI console Sensor Sniffer mode + * offset 925 + */ + sensor_chart_e sensorChartMode; + /** + * offset 926 + */ + maf_sensor_type_e mafSensorType; + /** + * need 4 byte alignment + * units: units + * offset 927 + */ + uint8_t alignmentFill_at_927[1]; + /** + offset 928 bit 0 */ + bool clutchUpPinInverted : 1 {}; + /** + offset 928 bit 1 */ + bool clutchDownPinInverted : 1 {}; + /** + * If enabled we use two H-bridges to drive stepper idle air valve + offset 928 bit 2 */ + bool useHbridgesToDriveIdleStepper : 1 {}; + /** + offset 928 bit 3 */ + bool multisparkEnable : 1 {}; + /** + offset 928 bit 4 */ + bool enableLaunchRetard : 1 {}; + /** + offset 928 bit 5 */ + bool canInputBCM : 1 {}; + /** + * This property is useful if using rusEFI as TCM or BCM only + offset 928 bit 6 */ + bool consumeObdSensors : 1 {}; + /** + * Read VSS from OEM CAN bus according to selected CAN vehicle configuration. + offset 928 bit 7 */ + bool enableCanVss : 1 {}; + /** + offset 928 bit 8 */ + bool suppressWboWorkaround7048 : 1 {}; + /** + offset 928 bit 9 */ + bool showHumanReadableWarning : 1 {}; + /** + * If enabled, adjust at a constant rate instead of a rate proportional to the current lambda error. This mode may be easier to tune, and more tolerant of sensor noise. + offset 928 bit 10 */ + bool stftIgnoreErrorMagnitude : 1 {}; + /** + offset 928 bit 11 */ + bool vvtBooleanForVerySpecialCases : 1 {}; + /** + offset 928 bit 12 */ + bool enableSoftwareKnock : 1 {}; + /** + * Verbose info in console below engineSnifferRpmThreshold + * enable vvt_details + offset 928 bit 13 */ + bool verboseVVTDecoding : 1 {}; + /** + offset 928 bit 14 */ + bool invertCamVVTSignal : 1 {}; + /** + * In Alpha-N mode, compensate for air temperature. + offset 928 bit 15 */ + bool alphaNUseIat : 1 {}; + /** + offset 928 bit 16 */ + bool knockBankCyl1 : 1 {}; + /** + offset 928 bit 17 */ + bool knockBankCyl2 : 1 {}; + /** + offset 928 bit 18 */ + bool knockBankCyl3 : 1 {}; + /** + offset 928 bit 19 */ + bool knockBankCyl4 : 1 {}; + /** + offset 928 bit 20 */ + bool knockBankCyl5 : 1 {}; + /** + offset 928 bit 21 */ + bool knockBankCyl6 : 1 {}; + /** + offset 928 bit 22 */ + bool knockBankCyl7 : 1 {}; + /** + offset 928 bit 23 */ + bool knockBankCyl8 : 1 {}; + /** + offset 928 bit 24 */ + bool knockBankCyl9 : 1 {}; + /** + offset 928 bit 25 */ + bool knockBankCyl10 : 1 {}; + /** + offset 928 bit 26 */ + bool knockBankCyl11 : 1 {}; + /** + offset 928 bit 27 */ + bool knockBankCyl12 : 1 {}; + /** + offset 928 bit 28 */ + bool tcuEnabled : 1 {}; + /** + offset 928 bit 29 */ + bool canBroadcastUseChannelTwo : 1 {}; + /** + * If enabled we use four Push-Pull outputs to directly drive stepper idle air valve coils + offset 928 bit 30 */ + bool useRawOutputToDriveIdleStepper : 1 {}; + /** + * Print incoming and outgoing second bus CAN messages in rusEFI console + offset 928 bit 31 */ + bool verboseCan2 : 1 {}; + /** + * offset 932 + */ + dc_io etbIo[ETB_COUNT]; + /** + * Wastegate control Solenoid + * offset 948 + */ + output_pin_e boostControlPin; + /** + * offset 950 + */ + pin_output_mode_e boostControlPinMode; + /** + * need 4 byte alignment + * units: units + * offset 951 + */ + uint8_t alignmentFill_at_951[1]; + /** + * offset 952 + */ + switch_input_pin_e ALSActivatePin; + /** + * offset 954 + */ + switch_input_pin_e launchActivatePin; + /** + * offset 956 + */ + pid_s boostPid; + /** + * offset 976 + */ + boostType_e boostType; + /** + * offset 977 + */ + pin_input_mode_e ignitionKeyDigitalPinMode; + /** + * offset 978 + */ + Gpio ignitionKeyDigitalPin; + /** + * units: Hz + * offset 980 + */ + int boostPwmFrequency; + /** + * offset 984 + */ + launchActivationMode_e launchActivationMode; + /** + * offset 985 + */ + antiLagActivationMode_e antiLagActivationMode; + /** + * How long to look back for TPS-based acceleration enrichment. Increasing this time will trigger enrichment for longer when a throttle position change occurs. + * units: sec + * offset 986 + */ + scaled_channel tpsAccelLookback; + /** + * Pause closed loop fueling after deceleration fuel cut occurs. Set this to a little longer than however long is required for normal fueling behavior to resume after fuel cut. + * units: sec + * offset 987 + */ + scaled_channel noFuelTrimAfterDfcoTime; + /** + * Launch disabled above this speed if setting is above zero + * units: Kph + * offset 988 + */ + int launchSpeedThreshold; + /** + * Starting Launch RPM window to activate (subtracts from Launch RPM) + * units: RPM + * offset 992 + */ + int launchRpmWindow; + /** + * units: ms + * offset 996 + */ + float triggerEventsTimeoutMs; + /** + * offset 1000 + */ + float mapExpAverageAlpha; + /** + * offset 1004 + */ + float magicNumberAvailableForDevTricks; + /** + * offset 1008 + */ + float turbochargerFilter; + /** + * offset 1012 + */ + int launchTpsThreshold; + /** + * offset 1016 + */ + float launchActivateDelay; + /** + * offset 1020 + */ + stft_s stft; + /** + * offset 1048 + */ + dc_io stepperDcIo[DC_PER_STEPPER]; + /** + * For example, BMW, GM or Chevrolet + * REQUIRED for rusEFI Online + * offset 1064 + */ + vehicle_info_t engineMake; + /** + * For example, LS1 or NB2 + * REQUIRED for rusEFI Online + * offset 1096 + */ + vehicle_info_t engineCode; + /** + * For example, Hunchback or Orange Miata + * Vehicle name has to be unique between your vehicles. + * REQUIRED for rusEFI Online + * offset 1128 + */ + vehicle_info_t vehicleName; + /** + * offset 1160 + */ + output_pin_e tcu_solenoid[TCU_SOLENOID_COUNT]; + /** + * offset 1172 + */ + dc_function_e etbFunctions[ETB_COUNT]; + /** + * offset 1174 + */ + spi_device_e drv8860spiDevice; + /** + * need 4 byte alignment + * units: units + * offset 1175 + */ + uint8_t alignmentFill_at_1175[1]; + /** + * offset 1176 + */ + Gpio drv8860_cs; + /** + * offset 1178 + */ + pin_output_mode_e drv8860_csPinMode; + /** + * need 4 byte alignment + * units: units + * offset 1179 + */ + uint8_t alignmentFill_at_1179[1]; + /** + * offset 1180 + */ + Gpio drv8860_miso; + /** + * offset 1182 + */ + output_pin_e luaOutputPins[LUA_PWM_COUNT]; + /** + * need 4 byte alignment + * units: units + * offset 1198 + */ + uint8_t alignmentFill_at_1198[2]; + /** + * Angle between cam sensor and VVT zero position + * units: value + * offset 1200 + */ + float vvtOffsets[CAM_INPUTS_COUNT]; + /** + * offset 1216 + */ + vr_threshold_s vrThreshold[VR_THRESHOLD_COUNT]; + /** + * offset 1248 + */ + gppwm_note_t gpPwmNote[GPPWM_CHANNELS]; + /** + * units: ADC + * offset 1312 + */ + uint16_t tps2SecondaryMin; + /** + * units: ADC + * offset 1314 + */ + uint16_t tps2SecondaryMax; + /** + * Select which bus the wideband controller is attached to. + offset 1316 bit 0 */ + bool widebandOnSecondBus : 1 {}; + /** + * Enables lambda sensor closed loop feedback for fuelling. + offset 1316 bit 1 */ + bool fuelClosedLoopCorrectionEnabled : 1 {}; + /** + * On even fire engines with even number of cylinders we go wasted spark during cranking. Use this setting to disable wasted spark cranking on odd fire engines. + offset 1316 bit 2 */ + bool oddFireEngine : 1 {}; + /** + * Write SD card log even when powered by USB + offset 1316 bit 3 */ + bool alwaysWriteSdCard : 1 {}; + /** + * Second harmonic (aka double) is usually quieter background noise + offset 1316 bit 4 */ + bool knockDetectionUseDoubleFrequency : 1 {}; + /** + offset 1316 bit 5 */ + bool yesUnderstandLocking : 1 {}; + /** + * Sometimes we have a performance issue while printing error + offset 1316 bit 6 */ + bool silentTriggerError : 1 {}; + /** + offset 1316 bit 7 */ + bool useLinearCltSensor : 1 {}; + /** + * enable can_read/disable can_read + offset 1316 bit 8 */ + bool canReadEnabled : 1 {}; + /** + * enable can_write/disable can_write. See also can1ListenMode + offset 1316 bit 9 */ + bool canWriteEnabled : 1 {}; + /** + offset 1316 bit 10 */ + bool useLinearIatSensor : 1 {}; + /** + offset 1316 bit 11 */ + bool enableOilPressureProtect : 1 {}; + /** + * Treat milliseconds value as duty cycle value, i.e. 0.5ms would become 50% + offset 1316 bit 12 */ + bool tachPulseDurationAsDutyCycle : 1 {}; + /** + * This enables smart alternator control and activates the extra alternator settings. + offset 1316 bit 13 */ + bool isAlternatorControlEnabled : 1 {}; + /** + * https://wiki.rusefi.com/Trigger-Configuration-Guide + * This setting flips the signal from the primary engine speed sensor. + offset 1316 bit 14 */ + bool invertPrimaryTriggerSignal : 1 {}; + /** + * https://wiki.rusefi.com/Trigger-Configuration-Guide + * This setting flips the signal from the secondary engine speed sensor. + offset 1316 bit 15 */ + bool invertSecondaryTriggerSignal : 1 {}; + /** + offset 1316 bit 16 */ + bool cutFuelOnHardLimit : 1 {}; + /** + * Be careful enabling this: some engines are known to self-disassemble their valvetrain with a spark cut. Fuel cut is much safer. + offset 1316 bit 17 */ + bool cutSparkOnHardLimit : 1 {}; + /** + offset 1316 bit 18 */ + bool launchFuelCutEnable : 1 {}; + /** + * This is the Cut Mode normally used + offset 1316 bit 19 */ + bool launchSparkCutEnable : 1 {}; + /** + offset 1316 bit 20 */ + bool torqueReductionEnabled : 1 {}; + /** + offset 1316 bit 21 */ + bool torqueReductionTriggerPinInverted : 1 {}; + /** + offset 1316 bit 22 */ + bool limitTorqueReductionTime : 1 {}; + /** + * Are you a developer troubleshooting TS over CAN ISO/TP? + offset 1316 bit 23 */ + bool verboseIsoTp : 1 {}; + /** + offset 1316 bit 24 */ + bool engineSnifferFocusOnInputs : 1 {}; + /** + offset 1316 bit 25 */ + bool launchActivateInverted : 1 {}; + /** + offset 1316 bit 26 */ + bool twoStroke : 1 {}; + /** + * Where is your primary skipped wheel located? + offset 1316 bit 27 */ + bool skippedWheelOnCam : 1 {}; + /** + offset 1316 bit 28 */ + bool unusedBit_406_28 : 1 {}; + /** + offset 1316 bit 29 */ + bool unusedBit_406_29 : 1 {}; + /** + offset 1316 bit 30 */ + bool unusedBit_406_30 : 1 {}; + /** + offset 1316 bit 31 */ + bool unusedBit_406_31 : 1 {}; + /** + * offset 1320 + */ + adc_channel_e hipOutputChannel; + /** + * need 4 byte alignment + * units: units + * offset 1321 + */ + uint8_t alignmentFill_at_1321[1]; + /** + * A/C button input + * offset 1322 + */ + switch_input_pin_e acSwitch; + /** + * offset 1324 + */ + adc_channel_e vRefAdcChannel; + /** + * Expected neutral position + * units: % + * offset 1325 + */ + uint8_t etbNeutralPosition; + /** + * See also idleRpmPid + * offset 1326 + */ + idle_mode_e idleMode; + /** + * need 4 byte alignment + * units: units + * offset 1327 + */ + uint8_t alignmentFill_at_1327[1]; + /** + offset 1328 bit 0 */ + bool isInjectionEnabled : 1 {}; + /** + offset 1328 bit 1 */ + bool isIgnitionEnabled : 1 {}; + /** + * When enabled if TPS is held above 95% no fuel is injected while cranking to clear excess fuel from the cylinders. + offset 1328 bit 2 */ + bool isCylinderCleanupEnabled : 1 {}; + /** + * Should we use tables to vary tau/beta based on CLT/MAP, or just with fixed values? + offset 1328 bit 3 */ + bool complexWallModel : 1 {}; + /** + * RPM is measured based on last 720 degrees while instant RPM is measured based on the last 90 degrees of crank revolution + offset 1328 bit 4 */ + bool alwaysInstantRpm : 1 {}; + /** + offset 1328 bit 5 */ + bool isMapAveragingEnabled : 1 {}; + /** + * If enabled, use separate temperature multiplier table for cranking idle position. + * If disabled, use normal running multiplier table applied to the cranking base position. + offset 1328 bit 6 */ + bool overrideCrankingIacSetting : 1 {}; + /** + * This activates a separate ignition timing table for idle conditions, this can help idle stability by using ignition retard and advance either side of the desired idle speed. Extra advance at low idle speeds will prevent stalling and extra retard at high idle speeds can help reduce engine power and slow the idle speed. + offset 1328 bit 7 */ + bool useSeparateAdvanceForIdle : 1 {}; + /** + offset 1328 bit 8 */ + bool isWaveAnalyzerEnabled : 1 {}; + /** + * This activates a separate fuel table for Idle, this allows fine tuning of the idle fuelling. + offset 1328 bit 9 */ + bool useSeparateVeForIdle : 1 {}; + /** + * Verbose info in console below engineSnifferRpmThreshold + * enable trigger_details + offset 1328 bit 10 */ + bool verboseTriggerSynchDetails : 1 {}; + /** + offset 1328 bit 11 */ + bool cutFuelInAcr : 1 {}; + /** + offset 1328 bit 12 */ + bool hondaK : 1 {}; + /** + * This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark). + offset 1328 bit 13 */ + bool twoWireBatchIgnition : 1 {}; + /** + * Read MAP sensor on ECU start-up to use as baro value. + offset 1328 bit 14 */ + bool useFixedBaroCorrFromMap : 1 {}; + /** + * In Constant mode, timing is automatically tapered to running as RPM increases. + * In Table mode, the "Cranking ignition advance" table is used directly. + offset 1328 bit 15 */ + bool useSeparateAdvanceForCranking : 1 {}; + /** + * This enables the various ignition corrections during cranking (IAT, CLT and PID idle). + * You probably don't need this. + offset 1328 bit 16 */ + bool useAdvanceCorrectionsForCranking : 1 {}; + /** + * Enable a second cranking table to use for E100 flex fuel, interpolating between the two based on flex fuel sensor. + offset 1328 bit 17 */ + bool flexCranking : 1 {}; + /** + * This flag allows to use a special 'PID Multiplier' table (0.0-1.0) to compensate for nonlinear nature of IAC-RPM controller + offset 1328 bit 18 */ + bool useIacPidMultTable : 1 {}; + /** + offset 1328 bit 19 */ + bool isBoostControlEnabled : 1 {}; + /** + * Interpolates the Ignition Retard from 0 to 100% within the RPM Range + offset 1328 bit 20 */ + bool launchSmoothRetard : 1 {}; + /** + * Some engines are OK running semi-random sequential while other engine require phase synchronization + offset 1328 bit 21 */ + bool isPhaseSyncRequiredForIgnition : 1 {}; + /** + * If enabled, use a curve for RPM limit (based on coolant temperature) instead of a constant value. + offset 1328 bit 22 */ + bool useCltBasedRpmLimit : 1 {}; + /** + * If enabled, don't wait for engine start to heat O2 sensors. + * WARNING: this will reduce the life of your sensor, as condensation in the exhaust from a cold start can crack the sensing element. + offset 1328 bit 23 */ + bool forceO2Heating : 1 {}; + /** + * If increased VVT duty cycle increases the indicated VVT angle, set this to 'advance'. If it decreases, set this to 'retard'. Most intake cams use 'advance', and most exhaust cams use 'retard'. + offset 1328 bit 24 */ + bool invertVvtControlIntake : 1 {}; + /** + * If increased VVT duty cycle increases the indicated VVT angle, set this to 'advance'. If it decreases, set this to 'retard'. Most intake cams use 'advance', and most exhaust cams use 'retard'. + offset 1328 bit 25 */ + bool invertVvtControlExhaust : 1 {}; + /** + offset 1328 bit 26 */ + bool useBiQuadOnAuxSpeedSensors : 1 {}; + /** + * 'Trigger' mode will write a high speed log of trigger events (warning: uses lots of space!). 'Normal' mode will write a standard MLG of sensors, engine function, etc. similar to the one captured in TunerStudio. + offset 1328 bit 27 */ + bool sdTriggerLog : 1 {}; + /** + offset 1328 bit 28 */ + bool ALSActivateInverted : 1 {}; + /** + offset 1328 bit 29 */ + bool stepper_dc_use_two_wires : 1 {}; + /** + offset 1328 bit 30 */ + bool watchOutForLinearTime : 1 {}; + /** + offset 1328 bit 31 */ + bool unusedBit_448_31 : 1 {}; + /** + * units: count + * offset 1332 + */ + uint32_t engineChartSize; + /** + * units: mult + * offset 1336 + */ + float turboSpeedSensorMultiplier; + /** + * offset 1340 + */ + Gpio camInputsDebug[CAM_INPUTS_COUNT]; + /** + * Idle target speed when A/C is enabled. Some cars need the extra speed to keep the AC efficient while idling. + * units: RPM + * offset 1348 + */ + int16_t acIdleRpmTarget; + /** + * set warningPeriod X + * units: seconds + * offset 1350 + */ + int16_t warningPeriod; + /** + * units: angle + * offset 1352 + */ + float knockDetectionWindowStart; + /** + * units: angle + * offset 1356 + */ + float knockDetectionWindowEnd; + /** + * units: ms + * offset 1360 + */ + float idleStepperReactionTime; + /** + * units: count + * offset 1364 + */ + int idleStepperTotalSteps; + /** + * Pedal position to realize that we need to reduce torque when the trigger pin is uuuh triggered + * offset 1368 + */ + int torqueReductionArmingApp; + /** + * Duration in ms or duty cycle depending on selected mode + * offset 1372 + */ + float tachPulseDuractionMs; + /** + * Length of time the deposited wall fuel takes to dissipate after the start of acceleration. + * units: Seconds + * offset 1376 + */ + float wwaeTau; + /** + * offset 1380 + */ + pid_s alternatorControl; + /** + * offset 1400 + */ + pid_s etb; + /** + * offset 1420 + */ + Gpio triggerInputDebugPins[TRIGGER_INPUT_PIN_COUNT]; + /** + * RPM range above upper limit for extra air taper + * units: RPM + * offset 1424 + */ + int16_t airTaperRpmRange; + /** + * offset 1426 + */ + brain_input_pin_e turboSpeedSensorInputPin; + /** + * Closed throttle#2. todo: extract these two fields into a structure + * See also tps2_1AdcChannel + * units: ADC + * offset 1428 + */ + int16_t tps2Min; + /** + * Full throttle#2. tpsMax value as 10 bit ADC value. Not Voltage! + * See also tps1_1AdcChannel + * units: ADC + * offset 1430 + */ + int16_t tps2Max; + /** + * See also startStopButtonPin + * offset 1432 + */ + output_pin_e starterControlPin; + /** + * offset 1434 + */ + pin_input_mode_e startStopButtonMode; + /** + * need 4 byte alignment + * units: units + * offset 1435 + */ + uint8_t alignmentFill_at_1435[1]; + /** + * offset 1436 + */ + Gpio mc33816_flag0; + /** + * units: Pulse + * offset 1438 + */ + uint8_t tachPulsePerRev; + /** + * need 4 byte alignment + * units: units + * offset 1439 + */ + uint8_t alignmentFill_at_1439[1]; + /** + * kPa value which is too low to be true + * units: kPa + * offset 1440 + */ + float mapErrorDetectionTooLow; + /** + * kPa value which is too high to be true + * units: kPa + * offset 1444 + */ + float mapErrorDetectionTooHigh; + /** + * How long to wait for the spark to fire before recharging the coil for another spark. + * units: ms + * offset 1448 + */ + scaled_channel multisparkSparkDuration; + /** + * This sets the dwell time for subsequent sparks. The main spark's dwell is set by the dwell table. + * units: ms + * offset 1450 + */ + scaled_channel multisparkDwell; + /** + * See cltIdleRpmBins + * offset 1452 + */ + pid_s idleRpmPid; + /** + * 0 = No fuel settling on port walls 1 = All the fuel settling on port walls setting this to 0 disables the wall wetting enrichment. + * units: Fraction + * offset 1472 + */ + float wwaeBeta; + /** + * See also EFI_CONSOLE_RX_BRAIN_PIN + * offset 1476 + */ + Gpio binarySerialTxPin; + /** + * offset 1478 + */ + Gpio binarySerialRxPin; + /** + * offset 1480 + */ + Gpio auxValves[AUX_DIGITAL_VALVE_COUNT]; + /** + * offset 1484 + */ + switch_input_pin_e tcuUpshiftButtonPin; + /** + * offset 1486 + */ + switch_input_pin_e tcuDownshiftButtonPin; + /** + * units: voltage + * offset 1488 + */ + float throttlePedalUpVoltage; + /** + * Pedal in the floor + * units: voltage + * offset 1492 + */ + float throttlePedalWOTVoltage; + /** + * on IGN voltage detection turn fuel pump on to build fuel pressure + * units: seconds + * offset 1496 + */ + int16_t startUpFuelPumpDuration; + /** + * If the RPM closer to target than this value, disable closed loop idle correction to prevent oscillation + * units: RPM + * offset 1498 + */ + int16_t idlePidRpmDeadZone; + /** + * For how long after the pin has been triggered will the cut/reduction stay active. After that, even if the pin is still triggered, torque is re-introduced + * units: ms + * offset 1500 + */ + float torqueReductionTime; + /** + * See Over/Undervoltage Shutdown/Retry bit in documentation + offset 1504 bit 0 */ + bool mc33810DisableRecoveryMode : 1 {}; + /** + offset 1504 bit 1 */ + bool mc33810Gpgd0Mode : 1 {}; + /** + offset 1504 bit 2 */ + bool mc33810Gpgd1Mode : 1 {}; + /** + offset 1504 bit 3 */ + bool mc33810Gpgd2Mode : 1 {}; + /** + offset 1504 bit 4 */ + bool mc33810Gpgd3Mode : 1 {}; + /** + * Send out board statistics + offset 1504 bit 5 */ + bool enableExtendedCanBroadcast : 1 {}; + /** + * global_can_data performance hack + offset 1504 bit 6 */ + bool luaCanRxWorkaround : 1 {}; + /** + offset 1504 bit 7 */ + bool flexSensorInverted : 1 {}; + /** + offset 1504 bit 8 */ + bool useHardSkipInTraction : 1 {}; + /** + * Use Aux Speed 1 as one of speeds for wheel slip ratio? + offset 1504 bit 9 */ + bool useAuxSpeedForSlipRatio : 1 {}; + /** + * VSS and Aux Speed 1 or Aux Speed 1 with Aux Speed 2? + offset 1504 bit 10 */ + bool useVssAsSecondWheelSpeed : 1 {}; + /** + offset 1504 bit 11 */ + bool is_enabled_spi_5 : 1 {}; + /** + offset 1504 bit 12 */ + bool is_enabled_spi_6 : 1 {}; + /** + * AEM X-Series EGT gauge kit or rusEFI EGT sensor from Wideband controller + offset 1504 bit 13 */ + bool enableAemXSeriesEgt : 1 {}; + /** + offset 1504 bit 14 */ + bool startRequestPinInverted : 1 {}; + /** + offset 1504 bit 15 */ + bool tcu_rangeSensorPulldown : 1 {}; + /** + offset 1504 bit 16 */ + bool brakePedalPinInverted : 1 {}; + /** + offset 1504 bit 17 */ + bool devBit0 : 1 {}; + /** + offset 1504 bit 18 */ + bool devBit1 : 1 {}; + /** + offset 1504 bit 19 */ + bool devBit2 : 1 {}; + /** + offset 1504 bit 20 */ + bool devBit3 : 1 {}; + /** + offset 1504 bit 21 */ + bool devBit4 : 1 {}; + /** + offset 1504 bit 22 */ + bool devBit5 : 1 {}; + /** + offset 1504 bit 23 */ + bool devBit6 : 1 {}; + /** + offset 1504 bit 24 */ + bool devBit7 : 1 {}; + /** + offset 1504 bit 25 */ + bool invertExhaustCamVVTSignal : 1 {}; + /** + offset 1504 bit 26 */ + bool enableKnockSpectrogram : 1 {}; + /** + offset 1504 bit 27 */ + bool enableKnockSpectrogramFilter : 1 {}; + /** + offset 1504 bit 28 */ + bool unusedBit_518_28 : 1 {}; + /** + offset 1504 bit 29 */ + bool unusedBit_518_29 : 1 {}; + /** + offset 1504 bit 30 */ + bool unusedBit_518_30 : 1 {}; + /** + offset 1504 bit 31 */ + bool unusedBit_518_31 : 1 {}; + /** + * This is the duration in cycles that the IAC will take to reach its normal idle position, it can be used to hold the idle higher for a few seconds after cranking to improve startup.\Should be 100 once tune is better + * units: cycles + * offset 1508 + */ + int16_t afterCrankingIACtaperDuration; + /** + * IAC Value added when coasting and transitioning into idle. + * units: percent + * offset 1510 + */ + int16_t iacByTpsTaper; + /** + * offset 1512 + */ + Gpio accelerometerCsPin; + /** + * Below this speed, disable DFCO. Use this to prevent jerkiness from fuel enable/disable in low gears. + * units: kph + * offset 1514 + */ + uint8_t coastingFuelCutVssLow; + /** + * Above this speed, allow DFCO. Use this to prevent jerkiness from fuel enable/disable in low gears. + * units: kph + * offset 1515 + */ + uint8_t coastingFuelCutVssHigh; + /** + * Maximum change delta of TPS percentage over the 'length'. Actual TPS change has to be above this value in order for TPS/TPS acceleration to kick in. + * units: roc + * offset 1516 + */ + float tpsAccelEnrichmentThreshold; + /** + * offset 1520 + */ + brain_input_pin_e auxSpeedSensorInputPin[AUX_SPEED_SENSOR_COUNT]; + /** + * offset 1524 + */ + uint8_t totalGearsCount; + /** + * Sets what part of injection's is controlled by the injection phase table. + * offset 1525 + */ + InjectionTimingMode injectionTimingMode; + /** + * See http://rusefi.com/s/debugmode + * offset 1526 + */ + debug_mode_e debugMode; + /** + * Additional idle % when fan #1 is active + * units: % + * offset 1527 + */ + uint8_t fan1ExtraIdle; + /** + * Band rate for primary TTL + * units: BPs + * offset 1528 + */ + uint32_t uartConsoleSerialSpeed; + /** + * For decel we simply multiply delta of TPS and tFor decel we do not use table?! + * units: roc + * offset 1532 + */ + float tpsDecelEnleanmentThreshold; + /** + * Magic multiplier, we multiply delta of TPS and get fuel squirt duration + * units: coeff + * offset 1536 + */ + float tpsDecelEnleanmentMultiplier; + /** + * How many degrees of timing advance will be reduced during the Torque Reduction Time + * units: deg + * offset 1540 + */ + float torqueReductionIgnitionRetard; + /** + * units: voltage + * offset 1544 + */ + float throttlePedalSecondaryUpVoltage; + /** + * Pedal in the floor + * units: voltage + * offset 1548 + */ + float throttlePedalSecondaryWOTVoltage; + /** + * offset 1552 + */ + can_baudrate_e canBaudRate; + /** + * Override the Y axis (load) value used for the VE table. + * Advanced users only: If you aren't sure you need this, you probably don't need this. + * offset 1553 + */ + ve_override_e veOverrideMode; + /** + * offset 1554 + */ + can_baudrate_e can2BaudRate; + /** + * Override the Y axis (load) value used for the AFR table. + * Advanced users only: If you aren't sure you need this, you probably don't need this. + * offset 1555 + */ + load_override_e afrOverrideMode; + /** + * units: A + * offset 1556 + */ + scaled_channel mc33_hpfp_i_peak; + /** + * units: A + * offset 1557 + */ + scaled_channel mc33_hpfp_i_hold; + /** + * How long to deactivate power when hold current is reached before applying power again + * units: us + * offset 1558 + */ + uint8_t mc33_hpfp_i_hold_off; + /** + * Maximum amount of time the solenoid can be active before assuming a programming error + * units: ms + * offset 1559 + */ + uint8_t mc33_hpfp_max_hold; + /** + * Enable if DC-motor driver (H-bridge) inverts the signals (eg. RZ7899 on Hellen boards) + offset 1560 bit 0 */ + bool stepperDcInvertedPins : 1 {}; + /** + * Allow OpenBLT on Primary CAN + offset 1560 bit 1 */ + bool canOpenBLT : 1 {}; + /** + * Allow OpenBLT on Secondary CAN + offset 1560 bit 2 */ + bool can2OpenBLT : 1 {}; + /** + * Select whether to configure injector flow in volumetric flow (default, cc/min) or mass flow (g/s). + offset 1560 bit 3 */ + bool injectorFlowAsMassFlow : 1 {}; + /** + offset 1560 bit 4 */ + bool boardUseCanTerminator : 1 {}; + /** + offset 1560 bit 5 */ + bool kLineDoHondaSend : 1 {}; + /** + * ListenMode is about acknowledging CAN traffic on the protocol level. Different from canWriteEnabled + offset 1560 bit 6 */ + bool can1ListenMode : 1 {}; + /** + offset 1560 bit 7 */ + bool can2ListenMode : 1 {}; + /** + offset 1560 bit 8 */ + bool unusedBit_555_8 : 1 {}; + /** + offset 1560 bit 9 */ + bool unusedBit_555_9 : 1 {}; + /** + offset 1560 bit 10 */ + bool unusedBit_555_10 : 1 {}; + /** + offset 1560 bit 11 */ + bool unusedBit_555_11 : 1 {}; + /** + offset 1560 bit 12 */ + bool unusedBit_555_12 : 1 {}; + /** + offset 1560 bit 13 */ + bool unusedBit_555_13 : 1 {}; + /** + offset 1560 bit 14 */ + bool unusedBit_555_14 : 1 {}; + /** + offset 1560 bit 15 */ + bool unusedBit_555_15 : 1 {}; + /** + offset 1560 bit 16 */ + bool unusedBit_555_16 : 1 {}; + /** + offset 1560 bit 17 */ + bool unusedBit_555_17 : 1 {}; + /** + offset 1560 bit 18 */ + bool unusedBit_555_18 : 1 {}; + /** + offset 1560 bit 19 */ + bool unusedBit_555_19 : 1 {}; + /** + offset 1560 bit 20 */ + bool unusedBit_555_20 : 1 {}; + /** + offset 1560 bit 21 */ + bool unusedBit_555_21 : 1 {}; + /** + offset 1560 bit 22 */ + bool unusedBit_555_22 : 1 {}; + /** + offset 1560 bit 23 */ + bool unusedBit_555_23 : 1 {}; + /** + offset 1560 bit 24 */ + bool unusedBit_555_24 : 1 {}; + /** + offset 1560 bit 25 */ + bool unusedBit_555_25 : 1 {}; + /** + offset 1560 bit 26 */ + bool unusedBit_555_26 : 1 {}; + /** + offset 1560 bit 27 */ + bool unusedBit_555_27 : 1 {}; + /** + offset 1560 bit 28 */ + bool unusedBit_555_28 : 1 {}; + /** + offset 1560 bit 29 */ + bool unusedBit_555_29 : 1 {}; + /** + offset 1560 bit 30 */ + bool unusedBit_555_30 : 1 {}; + /** + offset 1560 bit 31 */ + bool unusedBit_555_31 : 1 {}; + /** + * offset 1564 + */ + uint8_t camDecoder2jzPosition; + /** + * offset 1565 + */ + mc33810maxDwellTimer_e mc33810maxDwellTimer; + /** + * Duration of each test pulse + * units: ms + * offset 1566 + */ + scaled_channel benchTestOnTime; + /** + * units: % + * offset 1568 + */ + uint8_t lambdaProtectionRestoreTps; + /** + * units: % + * offset 1569 + */ + scaled_channel lambdaProtectionRestoreLoad; + /** + * offset 1570 + */ + pin_input_mode_e launchActivatePinMode; + /** + * need 4 byte alignment + * units: units + * offset 1571 + */ + uint8_t alignmentFill_at_1571[1]; + /** + * offset 1572 + */ + Gpio can2TxPin; + /** + * offset 1574 + */ + Gpio can2RxPin; + /** + * offset 1576 + */ + pin_output_mode_e starterControlPinMode; + /** + * offset 1577 + */ + adc_channel_e wastegatePositionSensor; + /** + * Override the Y axis (load) value used for the ignition table. + * Advanced users only: If you aren't sure you need this, you probably don't need this. + * offset 1578 + */ + load_override_e ignOverrideMode; + /** + * Select which fuel pressure sensor measures the pressure of the fuel at your injectors. + * offset 1579 + */ + injector_pressure_type_e injectorPressureType; + /** + * offset 1580 + */ + output_pin_e hpfpValvePin; + /** + * offset 1582 + */ + pin_output_mode_e hpfpValvePinMode; + /** + * need 4 byte alignment + * units: units + * offset 1583 + */ + uint8_t alignmentFill_at_1583[1]; + /** + * MAP value above which fuel is cut in case of overboost. + * Set to 0 to disable overboost cut. + * units: kPa (absolute) + * offset 1584 + */ + float boostCutPressure; + /** + * units: kg/h + * offset 1588 + */ + scaled_channel tchargeBins[16]; + /** + * units: ratio + * offset 1604 + */ + scaled_channel tchargeValues[16]; + /** + * Fixed timing, useful for TDC testing + * units: deg + * offset 1620 + */ + float fixedTiming; + /** + * MAP voltage for low point + * units: v + * offset 1624 + */ + float mapLowValueVoltage; + /** + * MAP voltage for low point + * units: v + * offset 1628 + */ + float mapHighValueVoltage; + /** + * EGO value correction + * units: value + * offset 1632 + */ + float egoValueShift; + /** + * VVT output solenoid pin for this cam + * offset 1636 + */ + output_pin_e vvtPins[CAM_INPUTS_COUNT]; + /** + * This is the IAC position during cranking, some engines start better if given more air during cranking to improve cylinder filling. + * units: percent + * offset 1644 + */ + int crankingIACposition; + /** + * offset 1648 + */ + float tChargeMinRpmMinTps; + /** + * offset 1652 + */ + float tChargeMinRpmMaxTps; + /** + * offset 1656 + */ + float tChargeMaxRpmMinTps; + /** + * offset 1660 + */ + float tChargeMaxRpmMaxTps; + /** + * offset 1664 + */ + pwm_freq_t vvtOutputFrequency; + /** + * Minimim timing advance allowed. No spark on any cylinder will ever fire after this angle BTDC. For example, setting -10 here means no spark ever fires later than 10 deg ATDC. Note that this only concerns the primary spark: any trailing sparks or multispark may violate this constraint. + * units: deg BTDC + * offset 1666 + */ + int8_t minimumIgnitionTiming; + /** + * Maximum timing advance allowed. No spark on any cylinder will ever fire before this angle BTDC. For example, setting 45 here means no spark ever fires earlier than 45 deg BTDC + * units: deg BTDC + * offset 1667 + */ + int8_t maximumIgnitionTiming; + /** + * units: Hz + * offset 1668 + */ + int alternatorPwmFrequency; + /** + * set vvt_mode X + * offset 1672 + */ + vvt_mode_e vvtMode[CAMS_PER_BANK]; + /** + * Additional idle % when fan #2 is active + * units: % + * offset 1674 + */ + uint8_t fan2ExtraIdle; + /** + * Delay to allow fuel pressure to build before firing the priming pulse. + * units: sec + * offset 1675 + */ + scaled_channel primingDelay; + /** + * offset 1676 + */ + adc_channel_e auxAnalogInputs[LUA_ANALOG_INPUT_COUNT]; + /** + * offset 1684 + */ + output_pin_e trailingCoilPins[MAX_CYLINDER_COUNT]; + /** + * offset 1708 + */ + tle8888_mode_e tle8888mode; + /** + * offset 1709 + */ + pin_output_mode_e accelerometerCsPinMode; + /** + * None = I have a MAP-referenced fuel pressure regulator + * Fixed rail pressure = I have an atmosphere-referenced fuel pressure regulator (returnless, typically) + * Sensed rail pressure = I have a fuel pressure sensor + * offset 1710 + */ + injector_compensation_mode_e injectorCompensationMode; + /** + * offset 1711 + */ + pin_output_mode_e fan2PinMode; + /** + * This is the pressure at which your injector flow is known. + * For example if your injectors flow 400cc/min at 3.5 bar, enter 350kpa here. + * units: kPa + * offset 1712 + */ + float fuelReferencePressure; + /** + * offset 1716 + */ + ThermistorConf auxTempSensor1; + /** + * offset 1748 + */ + ThermistorConf auxTempSensor2; + /** + * units: Deg + * offset 1780 + */ + int16_t knockSamplingDuration; + /** + * units: Hz + * offset 1782 + */ + int16_t etbFreq; + /** + * offset 1784 + */ + pid_s etbWastegatePid; + /** + * For micro-stepping, make sure that PWM frequency (etbFreq) is high enough + * offset 1804 + */ + stepper_num_micro_steps_e stepperNumMicroSteps; + /** + * Use to limit the current when the stepper motor is idle, not moving (100% = no limit) + * units: % + * offset 1805 + */ + uint8_t stepperMinDutyCycle; + /** + * Use to limit the max.current through the stepper motor (100% = no limit) + * units: % + * offset 1806 + */ + uint8_t stepperMaxDutyCycle; + /** + * offset 1807 + */ + spi_device_e sdCardSpiDevice; + /** + * per-cylinder ignition and fueling timing correction for uneven engines + * units: deg + * offset 1808 + */ + angle_t timing_offset_cylinder[MAX_CYLINDER_COUNT]; + /** + * units: seconds + * offset 1856 + */ + float idlePidActivationTime; + /** + * offset 1860 + */ + pin_mode_e spi1SckMode; + /** + * Modes count be used for 3v<>5v integration using pull-ups/pull-downs etc. + * offset 1861 + */ + pin_mode_e spi1MosiMode; + /** + * offset 1862 + */ + pin_mode_e spi1MisoMode; + /** + * offset 1863 + */ + pin_mode_e spi2SckMode; + /** + * offset 1864 + */ + pin_mode_e spi2MosiMode; + /** + * offset 1865 + */ + pin_mode_e spi2MisoMode; + /** + * offset 1866 + */ + pin_mode_e spi3SckMode; + /** + * offset 1867 + */ + pin_mode_e spi3MosiMode; + /** + * offset 1868 + */ + pin_mode_e spi3MisoMode; + /** + * offset 1869 + */ + pin_output_mode_e stepperEnablePinMode; + /** + * ResetB + * offset 1870 + */ + Gpio mc33816_rstb; + /** + * offset 1872 + */ + Gpio mc33816_driven; + /** + * Brake pedal switch + * offset 1874 + */ + switch_input_pin_e brakePedalPin; + /** + * VVT output PID + * TODO: rename to vvtPid + * offset 1876 + */ + pid_s auxPid[CAMS_PER_BANK]; + /** + * offset 1916 + */ + float injectorCorrectionPolynomial[8]; + /** + * units: C + * offset 1948 + */ + int8_t primeBins[PRIME_CURVE_COUNT]; + /** + * offset 1956 + */ + linear_sensor_s oilPressure; + /** + * offset 1976 + */ + spi_device_e accelerometerSpiDevice; + /** + * need 4 byte alignment + * units: units + * offset 1977 + */ + uint8_t alignmentFill_at_1977[1]; + /** + * offset 1978 + */ + output_pin_e fan2Pin; + /** + * Cooling fan turn-on temperature threshold, in Celsius + * units: deg C + * offset 1980 + */ + uint8_t fan2OnTemperature; + /** + * Cooling fan turn-off temperature threshold, in Celsius + * units: deg C + * offset 1981 + */ + uint8_t fan2OffTemperature; + /** + * offset 1982 + */ + Gpio stepperEnablePin; + /** + * offset 1984 + */ + Gpio tle8888_cs; + /** + * offset 1986 + */ + pin_output_mode_e tle8888_csPinMode; + /** + * need 4 byte alignment + * units: units + * offset 1987 + */ + uint8_t alignmentFill_at_1987[1]; + /** + * offset 1988 + */ + Gpio mc33816_cs; + /** + * need 4 byte alignment + * units: units + * offset 1990 + */ + uint8_t alignmentFill_at_1990[2]; + /** + * units: hz + * offset 1992 + */ + float auxFrequencyFilter; + /** + * offset 1996 + */ + sent_input_pin_e sentInputPins[SENT_INPUT_COUNT]; + /** + * This sets the RPM above which fuel cut is active. + * units: rpm + * offset 1998 + */ + int16_t coastingFuelCutRpmHigh; + /** + * This sets the RPM below which fuel cut is deactivated, this prevents jerking or issues transitioning to idle + * units: rpm + * offset 2000 + */ + int16_t coastingFuelCutRpmLow; + /** + * Throttle position below which fuel cut is active. With an electronic throttle enabled, this checks against pedal position. + * units: % + * offset 2002 + */ + int16_t coastingFuelCutTps; + /** + * Fuel cutoff is disabled when the engine is cold. + * units: C + * offset 2004 + */ + int16_t coastingFuelCutClt; + /** + * Increases PID reaction for RPM stoichRatioPrimary; + /** + * iTerm max value + * offset 2406 + */ + int16_t idlerpmpid_iTermMax; + /** + * This sets the range of the idle control on the ETB. At 100% idle position, the value specified here sets the base ETB position. + * units: % + * offset 2408 + */ + float etbIdleThrottleRange; + /** + * Select which fuel correction bank this cylinder belongs to. Group cylinders that share the same O2 sensor + * offset 2412 + */ + uint8_t cylinderBankSelect[MAX_CYLINDER_COUNT]; + /** + * units: mg + * offset 2424 + */ + scaled_channel primeValues[PRIME_CURVE_COUNT]; + /** + * Trigger comparator center point voltage + * units: V + * offset 2432 + */ + scaled_channel triggerCompCenterVolt; + /** + * Trigger comparator hysteresis voltage (Min) + * units: V + * offset 2433 + */ + scaled_channel triggerCompHystMin; + /** + * Trigger comparator hysteresis voltage (Max) + * units: V + * offset 2434 + */ + scaled_channel triggerCompHystMax; + /** + * VR-sensor saturation RPM + * units: RPM + * offset 2435 + */ + scaled_channel triggerCompSensorSatRpm; + /** + * units: ratio + * offset 2436 + */ + scaled_channel tractionControlSlipBins[TRACTION_CONTROL_ETB_DROP_SIZE]; + /** + * units: RPM + * offset 2448 + */ + uint8_t tractionControlSpeedBins[TRACTION_CONTROL_ETB_DROP_SIZE]; + /** + * offset 2454 + */ + int8_t disableFan1AtSpeed; + /** + * offset 2455 + */ + int8_t disableFan2AtSpeed; + /** + * offset 2456 + */ + can_vss_nbc_e canVssNbcType; + /** + * need 4 byte alignment + * units: units + * offset 2458 + */ + uint8_t alignmentFill_at_2458[2]; + /** + * offset 2460 + */ + gppwm_channel gppwm[GPPWM_CHANNELS]; + /** + * Boost Current + * units: mA + * offset 2892 + */ + uint16_t mc33_i_boost; + /** + * Peak Current + * units: mA + * offset 2894 + */ + uint16_t mc33_i_peak; + /** + * Hold Current + * units: mA + * offset 2896 + */ + uint16_t mc33_i_hold; + /** + * Maximum allowed boost phase time. If the injector current doesn't reach the threshold before this time elapses, it is assumed that the injector is missing or has failed open circuit. + * units: us + * offset 2898 + */ + uint16_t mc33_t_max_boost; + /** + * units: us + * offset 2900 + */ + uint16_t mc33_t_peak_off; + /** + * Peak phase duration + * units: us + * offset 2902 + */ + uint16_t mc33_t_peak_tot; + /** + * units: us + * offset 2904 + */ + uint16_t mc33_t_bypass; + /** + * units: us + * offset 2906 + */ + uint16_t mc33_t_hold_off; + /** + * Hold phase duration + * units: us + * offset 2908 + */ + uint16_t mc33_t_hold_tot; + /** + * offset 2910 + */ + pin_input_mode_e tcuUpshiftButtonPinMode; + /** + * offset 2911 + */ + pin_input_mode_e tcuDownshiftButtonPinMode; + /** + * offset 2912 + */ + pin_input_mode_e acSwitchMode; + /** + * offset 2913 + */ + pin_output_mode_e tcu_solenoid_mode[TCU_SOLENOID_COUNT]; + /** + * need 4 byte alignment + * units: units + * offset 2919 + */ + uint8_t alignmentFill_at_2919[1]; + /** + * units: ratio + * offset 2920 + */ + float triggerGapOverrideFrom[GAP_TRACKING_LENGTH]; + /** + * units: ratio + * offset 2992 + */ + float triggerGapOverrideTo[GAP_TRACKING_LENGTH]; + /** + * Below this RPM, use camshaft information to synchronize the crank's position for full sequential operation. Use this if your cam sensor does weird things at high RPM. Set to 0 to disable, and always use cam to help sync crank. + * units: rpm + * offset 3064 + */ + scaled_channel maxCamPhaseResolveRpm; + /** + * Delay before cutting fuel. Set to 0 to cut immediately with no delay. May cause rumbles and pops out of your exhaust... + * units: sec + * offset 3065 + */ + scaled_channel dfcoDelay; + /** + * Delay before engaging the AC compressor. Set to 0 to engage immediately with no delay. Use this to prevent bogging at idle when AC engages. + * units: sec + * offset 3066 + */ + scaled_channel acDelay; + /** + * offset 3067 + */ + tChargeMode_e tChargeMode; + /** + * units: mg + * offset 3068 + */ + scaled_channel fordInjectorSmallPulseBreakPoint; + /** + * Threshold in ETB error (target vs. actual) above which the jam timer is started. If the timer reaches the time specified in the jam detection timeout period, the throttle is considered jammed, and engine operation limited. + * units: % + * offset 3070 + */ + uint8_t etbJamDetectThreshold; + /** + * units: lobes/cam + * offset 3071 + */ + uint8_t hpfpCamLobes; + /** + * offset 3072 + */ + hpfp_cam_e hpfpCam; + /** + * Low engine speed for A/C. Larger engines can survive lower values + * units: RPM + * offset 3073 + */ + scaled_channel acLowRpmLimit; + /** + * If the requested activation time is below this angle, don't bother running the pump + * units: deg + * offset 3074 + */ + uint8_t hpfpMinAngle; + /** + * need 4 byte alignment + * units: units + * offset 3075 + */ + uint8_t alignmentFill_at_3075[1]; + /** + * Size of the pump chamber in cc. Typical Bosch HDP5 has a 9.0mm diameter, typical BMW N* stroke is 4.4mm. + * units: cc + * offset 3076 + */ + scaled_channel hpfpPumpVolume; + /** + * How long to keep the valve activated (in order to allow the pump to build pressure and keep the valve open on its own) + * units: deg + * offset 3078 + */ + uint8_t hpfpActivationAngle; + /** + * offset 3079 + */ + uint8_t issFilterReciprocal; + /** + * units: %/kPa + * offset 3080 + */ + scaled_channel hpfpPidP; + /** + * units: %/kPa/lobe + * offset 3082 + */ + scaled_channel hpfpPidI; + /** + * The fastest rate the target pressure can be reduced by. This is because HPFP have no way to bleed off pressure other than injecting fuel. + * units: kPa/s + * offset 3084 + */ + uint16_t hpfpTargetDecay; + /** + * offset 3086 + */ + output_pin_e stepper_raw_output[4]; + /** + * units: ratio + * offset 3094 + */ + scaled_channel gearRatio[TCU_GEAR_COUNT]; + /** + * We need to give engine time to build oil pressure without diverting it to VVT + * units: ms + * offset 3114 + */ + uint16_t vvtActivationDelayMs; + /** + * units: Nm + * offset 3116 + */ + scaled_channel torqueTable[TORQUE_CURVE_SIZE][TORQUE_CURVE_SIZE]; + /** + * units: RPM + * offset 3152 + */ + uint16_t torqueRpmBins[TORQUE_CURVE_SIZE]; + /** + * units: Load + * offset 3164 + */ + uint16_t torqueLoadBins[TORQUE_CURVE_SIZE]; + /** + * offset 3176 + */ + GearControllerMode gearControllerMode; + /** + * offset 3177 + */ + TransmissionControllerMode transmissionControllerMode; + /** + * During revolution where ACR should be disabled at what specific angle to disengage + * units: deg + * offset 3178 + */ + uint16_t acrDisablePhase; + /** + * offset 3180 + */ + linear_sensor_s auxLinear1; + /** + * offset 3200 + */ + linear_sensor_s auxLinear2; + /** + * offset 3220 + */ + output_pin_e tcu_tcc_onoff_solenoid; + /** + * offset 3222 + */ + pin_output_mode_e tcu_tcc_onoff_solenoid_mode; + /** + * need 4 byte alignment + * units: units + * offset 3223 + */ + uint8_t alignmentFill_at_3223[1]; + /** + * offset 3224 + */ + output_pin_e tcu_tcc_pwm_solenoid; + /** + * offset 3226 + */ + pin_output_mode_e tcu_tcc_pwm_solenoid_mode; + /** + * need 4 byte alignment + * units: units + * offset 3227 + */ + uint8_t alignmentFill_at_3227[1]; + /** + * offset 3228 + */ + pwm_freq_t tcu_tcc_pwm_solenoid_freq; + /** + * offset 3230 + */ + output_pin_e tcu_pc_solenoid_pin; + /** + * offset 3232 + */ + pin_output_mode_e tcu_pc_solenoid_pin_mode; + /** + * need 4 byte alignment + * units: units + * offset 3233 + */ + uint8_t alignmentFill_at_3233[1]; + /** + * offset 3234 + */ + pwm_freq_t tcu_pc_solenoid_freq; + /** + * offset 3236 + */ + output_pin_e tcu_32_solenoid_pin; + /** + * offset 3238 + */ + pin_output_mode_e tcu_32_solenoid_pin_mode; + /** + * need 4 byte alignment + * units: units + * offset 3239 + */ + uint8_t alignmentFill_at_3239[1]; + /** + * offset 3240 + */ + pwm_freq_t tcu_32_solenoid_freq; + /** + * offset 3242 + */ + output_pin_e acrPin2; + /** + * Set a minimum allowed target position to avoid slamming/driving against the hard mechanical stop in the throttle. + * units: % + * offset 3244 + */ + scaled_channel etbMinimumPosition; + /** + * need 4 byte alignment + * units: units + * offset 3245 + */ + uint8_t alignmentFill_at_3245[1]; + /** + * offset 3246 + */ + uint16_t tuneHidingKey; + /** + * Individual charaters are accessible using vin(index) Lua function + * offset 3248 + */ + vin_number_t vinNumber; + /** + * need 4 byte alignment + * units: units + * offset 3265 + */ + uint8_t alignmentFill_at_3265[1]; + /** + * offset 3266 + */ + uint16_t highSpeedOffsets[HIGH_SPEED_COUNT]; + /** + * offset 3330 + */ + fuel_pressure_sensor_mode_e fuelPressureSensorMode; + /** + * need 4 byte alignment + * units: units + * offset 3331 + */ + uint8_t alignmentFill_at_3331[1]; + /** + * offset 3332 + */ + switch_input_pin_e luaDigitalInputPins[LUA_DIGITAL_INPUT_COUNT]; + /** + * units: rpm + * offset 3348 + */ + int16_t ALSMinRPM; + /** + * units: rpm + * offset 3350 + */ + int16_t ALSMaxRPM; + /** + * units: sec + * offset 3352 + */ + int16_t ALSMaxDuration; + /** + * units: C + * offset 3354 + */ + int8_t ALSMinCLT; + /** + * units: C + * offset 3355 + */ + int8_t ALSMaxCLT; + /** + * offset 3356 + */ + uint8_t alsMinTimeBetween; + /** + * offset 3357 + */ + uint8_t alsEtbPosition; + /** + * units: % + * offset 3358 + */ + uint8_t acRelayAlternatorDutyAdder; + /** + * offset 3359 + */ + SentEtbType sentEtbType; + /** + * offset 3360 + */ + uint16_t customSentTpsMin; + /** + * need 4 byte alignment + * units: units + * offset 3362 + */ + uint8_t alignmentFill_at_3362[2]; + /** + * units: % + * offset 3364 + */ + int ALSIdleAdd; + /** + * units: % + * offset 3368 + */ + int ALSEtbAdd; + /** + * offset 3372 + */ + float ALSSkipRatio; + /** + * Hysterisis: if Pressure High Disable is 240kpa, and acPressureEnableHyst is 20, when the ECU sees 240kpa, A/C will be disabled, and stay disabled until 240-20=220kpa is reached + * units: kPa (absolute) + * offset 3376 + */ + scaled_channel acPressureEnableHyst; + /** + * offset 3377 + */ + pin_input_mode_e ALSActivatePinMode; + /** + * For Ford TPS, use 53%. For Toyota ETCS-i, use ~65% + * units: % + * offset 3378 + */ + scaled_channel tpsSecondaryMaximum; + /** + * For Toyota ETCS-i, use ~69% + * units: % + * offset 3379 + */ + scaled_channel ppsSecondaryMaximum; + /** + * offset 3380 + */ + pin_input_mode_e luaDigitalInputPinModes[LUA_DIGITAL_INPUT_COUNT]; + /** + * offset 3388 + */ + uint16_t customSentTpsMax; + /** + * offset 3390 + */ + uint16_t kLineBaudRate; + /** + * offset 3392 + */ + CanGpioType canGpioType; + /** + * offset 3393 + */ + UiMode uiMode; + /** + * Crank angle ATDC of first lobe peak + * units: deg + * offset 3394 + */ + int16_t hpfpPeakPos; + /** + * units: us + * offset 3396 + */ + int16_t kLinePeriodUs; + /** + * Window that the correction will be added throughout (example, if rpm limit is 7000, and rpmSoftLimitWindowSize is 200, the corrections activate at 6800RPM, creating a 200rpm window) + * units: RPM + * offset 3398 + */ + scaled_channel rpmSoftLimitWindowSize; + /** + * Degrees of timing REMOVED from actual timing during soft RPM limit window + * units: deg + * offset 3399 + */ + scaled_channel rpmSoftLimitTimingRetard; + /** + * % of fuel ADDED during window + * units: % + * offset 3400 + */ + scaled_channel rpmSoftLimitFuelAdded; + /** + * Hysterisis: if the hard limit is 7200rpm and rpmHardLimitHyst is 200rpm, then when the ECU sees 7200rpm, fuel/ign will cut, and stay cut until 7000rpm (7200-200) is reached + * units: RPM + * offset 3401 + */ + scaled_channel rpmHardLimitHyst; + /** + * Time between bench test pulses + * units: ms + * offset 3402 + */ + scaled_channel benchTestOffTime; + /** + * Hysterisis: if hard cut is 240kpa, and boostCutPressureHyst is 20, when the ECU sees 240kpa, fuel/ign will cut, and stay cut until 240-20=220kpa is reached + * units: kPa (absolute) + * offset 3404 + */ + scaled_channel boostCutPressureHyst; + /** + * Boost duty cycle modified by gear + * units: % + * offset 3405 + */ + scaled_channel gearBasedOpenLoopBoostAdder[TCU_GEAR_COUNT]; + /** + * need 4 byte alignment + * units: units + * offset 3415 + */ + uint8_t alignmentFill_at_3415[1]; + /** + * How many test bench pulses do you want + * offset 3416 + */ + uint32_t benchTestCount; + /** + * How long initial IAC adder is held before starting to decay. + * units: seconds + * offset 3420 + */ + scaled_channel iacByTpsHoldTime; + /** + * How long it takes to remove initial IAC adder to return to normal idle. + * units: seconds + * offset 3421 + */ + scaled_channel iacByTpsDecayTime; + /** + * offset 3422 + */ + switch_input_pin_e tcu_rangeInput[RANGE_INPUT_COUNT]; + /** + * offset 3434 + */ + pin_input_mode_e tcu_rangeInputMode[RANGE_INPUT_COUNT]; + /** + * Scale the reported vehicle speed value from CAN. Example: Parameter set to 1.1, CAN VSS reports 50kph, ECU will report 55kph instead. + * units: ratio + * offset 3440 + */ + scaled_channel canVssScaling; + /** + * need 4 byte alignment + * units: units + * offset 3442 + */ + uint8_t alignmentFill_at_3442[2]; + /** + * offset 3444 + */ + ThermistorConf oilTempSensor; + /** + * offset 3476 + */ + ThermistorConf fuelTempSensor; + /** + * offset 3508 + */ + ThermistorConf ambientTempSensor; + /** + * offset 3540 + */ + ThermistorConf compressorDischargeTemperature; + /** + * Place the sensor before the throttle, but after any turbocharger/supercharger and intercoolers if fitted. Uses the same calibration as the MAP sensor. + * offset 3572 + */ + adc_channel_e throttleInletPressureChannel; + /** + * Place the sensor after the turbocharger/supercharger, but before any intercoolers if fitted. Uses the same calibration as the MAP sensor. + * offset 3573 + */ + adc_channel_e compressorDischargePressureChannel; + /** + * offset 3574 + */ + Gpio dacOutputPins[DAC_OUTPUT_COUNT]; + /** + * offset 3578 + */ + output_pin_e speedometerOutputPin; + /** + * Number of speedometer pulses per kilometer travelled. + * offset 3580 + */ + uint16_t speedometerPulsePerKm; + /** + * offset 3582 + */ + uint8_t simulatorCamPosition[CAM_INPUTS_COUNT]; + /** + * offset 3586 + */ + adc_channel_e ignKeyAdcChannel; + /** + * offset 3587 + */ + pin_mode_e spi6MisoMode; + /** + * units: ratio + * offset 3588 + */ + float triggerVVTGapOverrideFrom[VVT_TRACKING_LENGTH]; + /** + * units: ratio + * offset 3604 + */ + float triggerVVTGapOverrideTo[VVT_TRACKING_LENGTH]; + /** + * units: % + * offset 3620 + */ + int8_t tractionControlEtbDrop[TRACTION_CONTROL_ETB_DROP_SIZE][TRACTION_CONTROL_ETB_DROP_SIZE]; + /** + * If injector duty cycle hits this value, instantly cut fuel. + * units: % + * offset 3656 + */ + uint8_t maxInjectorDutyInstant; + /** + * If injector duty cycle hits this value for the specified delay time, cut fuel. + * units: % + * offset 3657 + */ + uint8_t maxInjectorDutySustained; + /** + * Timeout period for duty cycle over the sustained limit to trigger duty cycle protection. + * units: sec + * offset 3658 + */ + scaled_channel maxInjectorDutySustainedTimeout; + /** + * need 4 byte alignment + * units: units + * offset 3659 + */ + uint8_t alignmentFill_at_3659[1]; + /** + * offset 3660 + */ + output_pin_e injectionPinsStage2[MAX_CYLINDER_COUNT]; + /** + * units: Deg + * offset 3684 + */ + int8_t tractionControlTimingDrop[TRACTION_CONTROL_ETB_DROP_SIZE][TRACTION_CONTROL_ETB_DROP_SIZE]; + /** + * units: % + * offset 3720 + */ + int8_t tractionControlIgnitionSkip[TRACTION_CONTROL_ETB_DROP_SIZE][TRACTION_CONTROL_ETB_DROP_SIZE]; + /** + * offset 3756 + */ + float auxSpeed1Multiplier; + /** + * offset 3760 + */ + float brakeMeanEffectivePressureDifferential; + /** + * offset 3764 + */ + Gpio spi4mosiPin; + /** + * offset 3766 + */ + Gpio spi4misoPin; + /** + * offset 3768 + */ + Gpio spi4sckPin; + /** + * offset 3770 + */ + Gpio spi5mosiPin; + /** + * offset 3772 + */ + Gpio spi5misoPin; + /** + * offset 3774 + */ + Gpio spi5sckPin; + /** + * offset 3776 + */ + Gpio spi6mosiPin; + /** + * offset 3778 + */ + Gpio spi6misoPin; + /** + * offset 3780 + */ + Gpio spi6sckPin; + /** + * offset 3782 + */ + pin_mode_e spi4SckMode; + /** + * offset 3783 + */ + pin_mode_e spi4MosiMode; + /** + * offset 3784 + */ + pin_mode_e spi4MisoMode; + /** + * offset 3785 + */ + pin_mode_e spi5SckMode; + /** + * offset 3786 + */ + pin_mode_e spi5MosiMode; + /** + * offset 3787 + */ + pin_mode_e spi5MisoMode; + /** + * offset 3788 + */ + pin_mode_e spi6SckMode; + /** + * offset 3789 + */ + pin_mode_e spi6MosiMode; + /** + * need 4 byte alignment + * units: units + * offset 3790 + */ + uint8_t alignmentFill_at_3790[2]; + /** + * Secondary TTL channel baud rate + * units: BPs + * offset 3792 + */ + uint32_t tunerStudioSerialSpeed; + /** + * offset 3796 + */ + Gpio camSimulatorPin; + /** + * offset 3798 + */ + pin_output_mode_e camSimulatorPinMode; + /** + * need 4 byte alignment + * units: units + * offset 3799 + */ + uint8_t alignmentFill_at_3799[1]; + /** + * offset 3800 + */ + int anotherCiTest; + /** + * offset 3804 + */ + uint32_t device_uid[3]; + /** + * offset 3816 + */ + adc_channel_e tcu_rangeAnalogInput[RANGE_INPUT_COUNT]; + /** + * need 4 byte alignment + * units: units + * offset 3822 + */ + uint8_t alignmentFill_at_3822[2]; + /** + * units: Ohm + * offset 3824 + */ + float tcu_rangeSensorBiasResistor; + /** + * offset 3828 + */ + MsIoBox_config_s msIoBox0; + /** + * Nominal coil charge current, 0.25A step + * units: A + * offset 3832 + */ + scaled_channel mc33810Nomi; + /** + * Maximum coil charge current, 1A step + * units: A + * offset 3833 + */ + uint8_t mc33810Maxi; + /** + * need 4 byte alignment + * units: units + * offset 3834 + */ + uint8_t alignmentFill_at_3834[2]; + /** + * offset 3836 + */ + linear_sensor_s acPressure; + /** + * value of A/C pressure in kPa before that compressor is disengaged + * units: kPa + * offset 3856 + */ + uint16_t minAcPressure; + /** + * value of A/C pressure in kPa after that compressor is disengaged + * units: kPa + * offset 3858 + */ + uint16_t maxAcPressure; + /** + * Delay before cutting fuel due to low oil pressure. Use this to ignore short pressure blips and sensor noise. + * units: sec + * offset 3860 + */ + scaled_channel minimumOilPressureTimeout; + /** + * need 4 byte alignment + * units: units + * offset 3861 + */ + uint8_t alignmentFill_at_3861[3]; + /** + * offset 3864 + */ + linear_sensor_s auxLinear3; + /** + * offset 3884 + */ + linear_sensor_s auxLinear4; + /** + * Below TPS value all knock suppression will be disabled. + * units: % + * offset 3904 + */ + scaled_channel knockSuppressMinTps; + /** + * Fuel to odd when a knock event occurs. Advice: 5% (mild), 10% (turbo/high comp.), 15% (high knock, e.g. GDI), 20% (spicy lump), + * units: % + * offset 3905 + */ + scaled_channel knockFuelTrimAggression; + /** + * After a knock event, reapply fuel at this rate. + * units: 1%/s + * offset 3906 + */ + scaled_channel knockFuelTrimReapplyRate; + /** + * Fuel trim when knock, max 30% + * units: % + * offset 3907 + */ + scaled_channel knockFuelTrim; + /** + * units: sense + * offset 3908 + */ + float knockSpectrumSensitivity; + /** + * "Estimated knock frequency, ignore cylinderBore if this one > 0" + * units: Hz + * offset 3912 + */ + float knockFrequency; + /** + * units: units + * offset 3916 + */ + uint8_t unusedOftenChangesDuringFirmwareUpdate[END_OF_CALIBRATION_PADDING]; +}; +static_assert(sizeof(engine_configuration_s) == 4032); + +// start of ign_cyl_trim_s +struct ign_cyl_trim_s { + /** + * offset 0 + */ + scaled_channel table[IGN_TRIM_SIZE][IGN_TRIM_SIZE]; +}; +static_assert(sizeof(ign_cyl_trim_s) == 16); + +// start of fuel_cyl_trim_s +struct fuel_cyl_trim_s { + /** + * offset 0 + */ + scaled_channel table[FUEL_TRIM_SIZE][FUEL_TRIM_SIZE]; +}; +static_assert(sizeof(fuel_cyl_trim_s) == 16); + +// start of blend_table_s +struct blend_table_s { + /** + * offset 0 + */ + scaled_channel table[8][8]; + /** + * units: Load + * offset 128 + */ + uint16_t loadBins[8]; + /** + * units: RPM + * offset 144 + */ + uint16_t rpmBins[8]; + /** + * offset 160 + */ + gppwm_channel_e blendParameter; + /** + * offset 161 + */ + gppwm_channel_e yAxisOverride; + /** + * offset 162 + */ + scaled_channel blendBins[8]; + /** + * units: % + * offset 178 + */ + scaled_channel blendValues[8]; + /** + * need 4 byte alignment + * units: units + * offset 186 + */ + uint8_t alignmentFill_at_186[2]; +}; +static_assert(sizeof(blend_table_s) == 188); + +// start of persistent_config_s +struct persistent_config_s { + /** + * offset 0 + */ + engine_configuration_s engineConfiguration; + /** + * units: mult + * offset 4032 + */ + float postCrankingFactor[CRANKING_ENRICH_COUNT][CRANKING_ENRICH_COUNT]; + /** + * units: count + * offset 4176 + */ + float postCrankingDurationBins[CRANKING_ENRICH_COUNT]; + /** + * units: C + * offset 4200 + */ + int16_t postCrankingCLTBins[CRANKING_ENRICH_COUNT]; + /** + * target TPS value, 0 to 100% + * TODO: use int8 data date once we template interpolation method + * units: target TPS position + * offset 4212 + */ + float etbBiasBins[ETB_BIAS_CURVE_LENGTH]; + /** + * PWM bias, open loop component of PID closed loop control + * units: ETB duty cycle bias + * offset 4244 + */ + float etbBiasValues[ETB_BIAS_CURVE_LENGTH]; + /** + * units: % + * offset 4276 + */ + scaled_channel iacPidMultTable[IAC_PID_MULT_SIZE][IAC_PID_MULT_SIZE]; + /** + * units: Load + * offset 4340 + */ + uint8_t iacPidMultLoadBins[IAC_PID_MULT_SIZE]; + /** + * units: RPM + * offset 4348 + */ + scaled_channel iacPidMultRpmBins[IAC_PID_MULT_SIZE]; + /** + * On Single Coil or Wasted Spark setups you have to lower dwell at high RPM + * units: RPM + * offset 4356 + */ + uint16_t sparkDwellRpmBins[DWELL_CURVE_SIZE]; + /** + * units: ms + * offset 4372 + */ + scaled_channel sparkDwellValues[DWELL_CURVE_SIZE]; + /** + * CLT-based target RPM for automatic idle controller + * units: C + * offset 4388 + */ + scaled_channel cltIdleRpmBins[CLT_CURVE_SIZE]; + /** + * See idleRpmPid + * units: RPM + * offset 4404 + */ + scaled_channel cltIdleRpm[CLT_CURVE_SIZE]; + /** + * CLT-based timing correction + * units: C + * offset 4420 + */ + float cltTimingBins[CLT_TIMING_CURVE_SIZE]; + /** + * units: degree + * offset 4452 + */ + float cltTimingExtra[CLT_TIMING_CURVE_SIZE]; + /** + * units: x + * offset 4484 + */ + float scriptCurve1Bins[SCRIPT_CURVE_16]; + /** + * units: y + * offset 4548 + */ + float scriptCurve1[SCRIPT_CURVE_16]; + /** + * units: x + * offset 4612 + */ + float scriptCurve2Bins[SCRIPT_CURVE_16]; + /** + * units: y + * offset 4676 + */ + float scriptCurve2[SCRIPT_CURVE_16]; + /** + * units: x + * offset 4740 + */ + float scriptCurve3Bins[SCRIPT_CURVE_8]; + /** + * units: y + * offset 4772 + */ + float scriptCurve3[SCRIPT_CURVE_8]; + /** + * units: x + * offset 4804 + */ + float scriptCurve4Bins[SCRIPT_CURVE_8]; + /** + * units: y + * offset 4836 + */ + float scriptCurve4[SCRIPT_CURVE_8]; + /** + * units: x + * offset 4868 + */ + float scriptCurve5Bins[SCRIPT_CURVE_8]; + /** + * units: y + * offset 4900 + */ + float scriptCurve5[SCRIPT_CURVE_8]; + /** + * units: x + * offset 4932 + */ + float scriptCurve6Bins[SCRIPT_CURVE_8]; + /** + * units: y + * offset 4964 + */ + float scriptCurve6[SCRIPT_CURVE_8]; + /** + * units: kPa + * offset 4996 + */ + float baroCorrPressureBins[BARO_CORR_SIZE]; + /** + * units: RPM + * offset 5012 + */ + float baroCorrRpmBins[BARO_CORR_SIZE]; + /** + * units: ratio + * offset 5028 + */ + float baroCorrTable[BARO_CORR_SIZE][BARO_CORR_SIZE]; + /** + * Cranking fuel correction coefficient based on TPS + * units: Ratio + * offset 5092 + */ + float crankingTpsCoef[CRANKING_CURVE_SIZE]; + /** + * units: % + * offset 5124 + */ + float crankingTpsBins[CRANKING_CURVE_SIZE]; + /** + * Optional timing advance table for Cranking (see useSeparateAdvanceForCranking) + * units: RPM + * offset 5156 + */ + uint16_t crankingAdvanceBins[CRANKING_ADVANCE_CURVE_SIZE]; + /** + * Optional timing advance table for Cranking (see useSeparateAdvanceForCranking) + * units: deg + * offset 5164 + */ + scaled_channel crankingAdvance[CRANKING_ADVANCE_CURVE_SIZE]; + /** + * RPM-based idle position for coasting + * units: RPM + * offset 5172 + */ + scaled_channel iacCoastingRpmBins[CLT_CURVE_SIZE]; + /** + * RPM-based idle position for coasting + * units: % + * offset 5188 + */ + scaled_channel iacCoasting[CLT_CURVE_SIZE]; + /** + * offset 5204 + */ + warning_message_t warning_message; + /** + * offset 5324 + */ + scaled_channel boostTableOpenLoop[BOOST_LOAD_COUNT][BOOST_RPM_COUNT]; + /** + * units: RPM + * offset 5388 + */ + scaled_channel boostRpmBins[BOOST_RPM_COUNT]; + /** + * offset 5396 + */ + scaled_channel boostTableClosedLoop[BOOST_LOAD_COUNT][BOOST_RPM_COUNT]; + /** + * offset 5460 + */ + uint8_t boostLoadBins[BOOST_LOAD_COUNT]; + /** + * units: % + * offset 5468 + */ + uint8_t pedalToTpsTable[PEDAL_TO_TPS_SIZE][PEDAL_TO_TPS_SIZE]; + /** + * units: % + * offset 5532 + */ + uint8_t pedalToTpsPedalBins[PEDAL_TO_TPS_SIZE]; + /** + * units: RPM + * offset 5540 + */ + scaled_channel pedalToTpsRpmBins[PEDAL_TO_TPS_SIZE]; + /** + * CLT-based cranking position multiplier for simple manual idle controller + * units: C + * offset 5548 + */ + float cltCrankingCorrBins[CLT_CRANKING_CURVE_SIZE]; + /** + * CLT-based cranking position multiplier for simple manual idle controller + * units: % + * offset 5580 + */ + float cltCrankingCorr[CLT_CRANKING_CURVE_SIZE]; + /** + * Optional timing advance table for Idle (see useSeparateAdvanceForIdle) + * units: RPM + * offset 5612 + */ + scaled_channel idleAdvanceBins[IDLE_ADVANCE_CURVE_SIZE]; + /** + * Optional timing advance table for Idle (see useSeparateAdvanceForIdle) + * units: deg + * offset 5620 + */ + float idleAdvance[IDLE_ADVANCE_CURVE_SIZE]; + /** + * units: RPM + * offset 5652 + */ + scaled_channel idleVeRpmBins[IDLE_VE_SIZE]; + /** + * units: load + * offset 5656 + */ + uint8_t idleVeLoadBins[IDLE_VE_SIZE]; + /** + * units: % + * offset 5660 + */ + scaled_channel idleVeTable[IDLE_VE_SIZE][IDLE_VE_SIZE]; + /** + * offset 5692 + */ + lua_script_t luaScript; + /** + * units: C + * offset 13692 + */ + float cltFuelCorrBins[CLT_CURVE_SIZE]; + /** + * units: ratio + * offset 13756 + */ + float cltFuelCorr[CLT_CURVE_SIZE]; + /** + * units: C + * offset 13820 + */ + float iatFuelCorrBins[IAT_CURVE_SIZE]; + /** + * units: ratio + * offset 13884 + */ + float iatFuelCorr[IAT_CURVE_SIZE]; + /** + * units: ratio + * offset 13948 + */ + float crankingFuelCoef[CRANKING_CURVE_SIZE]; + /** + * units: C + * offset 13980 + */ + float crankingFuelBins[CRANKING_CURVE_SIZE]; + /** + * units: counter + * offset 14012 + */ + float crankingCycleBins[CRANKING_CURVE_SIZE]; + /** + * units: C + * offset 14044 + */ + int16_t crankingCycleFuelCltBins[CRANKING_CYCLE_CLT_SIZE]; + /** + * units: mult + * offset 14052 + */ + float crankingCycleFuelCoef[CRANKING_CYCLE_CLT_SIZE][CRANKING_CURVE_SIZE]; + /** + * CLT-based idle position multiplier for simple manual idle controller + * units: C + * offset 14180 + */ + float cltIdleCorrBins[CLT_CURVE_SIZE]; + /** + * CLT-based idle position multiplier for simple manual idle controller + * units: ratio + * offset 14244 + */ + float cltIdleCorr[CLT_CURVE_SIZE]; + /** + * Also known as MAF transfer function. + * kg/hour value. + * By the way 2.081989116 kg/h = 1 ft3/m + * units: kg/hour + * offset 14308 + */ + float mafDecoding[MAF_DECODING_COUNT]; + /** + * units: V + * offset 14436 + */ + float mafDecodingBins[MAF_DECODING_COUNT]; + /** + * units: deg + * offset 14564 + */ + scaled_channel ignitionIatCorrTable[8][8]; + /** + * units: C + * offset 14628 + */ + int8_t ignitionIatCorrTempBins[8]; + /** + * units: Load + * offset 14636 + */ + scaled_channel ignitionIatCorrLoadBins[8]; + /** + * units: deg + * offset 14644 + */ + int16_t injectionPhase[FUEL_LOAD_COUNT][FUEL_RPM_COUNT]; + /** + * units: Load + * offset 15156 + */ + uint16_t injPhaseLoadBins[FUEL_LOAD_COUNT]; + /** + * units: RPM + * offset 15188 + */ + uint16_t injPhaseRpmBins[FUEL_RPM_COUNT]; + /** + * units: onoff + * offset 15220 + */ + uint8_t tcuSolenoidTable[TCU_SOLENOID_COUNT][TCU_GEAR_COUNT]; + /** + * units: kPa + * offset 15280 + */ + scaled_channel mapEstimateTable[FUEL_LOAD_COUNT][FUEL_RPM_COUNT]; + /** + * units: % TPS + * offset 15792 + */ + scaled_channel mapEstimateTpsBins[FUEL_LOAD_COUNT]; + /** + * units: RPM + * offset 15824 + */ + uint16_t mapEstimateRpmBins[FUEL_RPM_COUNT]; + /** + * units: value + * offset 15856 + */ + int8_t vvtTable1[VVT_TABLE_SIZE][VVT_TABLE_SIZE]; + /** + * units: L + * offset 15920 + */ + uint16_t vvtTable1LoadBins[VVT_TABLE_SIZE]; + /** + * units: RPM + * offset 15936 + */ + uint16_t vvtTable1RpmBins[VVT_TABLE_SIZE]; + /** + * units: value + * offset 15952 + */ + int8_t vvtTable2[VVT_TABLE_SIZE][VVT_TABLE_SIZE]; + /** + * units: L + * offset 16016 + */ + uint16_t vvtTable2LoadBins[VVT_TABLE_SIZE]; + /** + * units: RPM + * offset 16032 + */ + uint16_t vvtTable2RpmBins[VVT_TABLE_SIZE]; + /** + * units: deg + * offset 16048 + */ + scaled_channel ignitionTable[IGN_LOAD_COUNT][IGN_RPM_COUNT]; + /** + * units: Load + * offset 16560 + */ + uint16_t ignitionLoadBins[IGN_LOAD_COUNT]; + /** + * units: RPM + * offset 16592 + */ + uint16_t ignitionRpmBins[IGN_RPM_COUNT]; + /** + * units: % + * offset 16624 + */ + scaled_channel veTable[FUEL_LOAD_COUNT][FUEL_RPM_COUNT]; + /** + * units: {bitStringValue(fuelUnits, fuelAlgorithm) } + * offset 17136 + */ + uint16_t veLoadBins[FUEL_LOAD_COUNT]; + /** + * units: RPM + * offset 17168 + */ + uint16_t veRpmBins[FUEL_RPM_COUNT]; + /** + * units: lambda + * offset 17200 + */ + scaled_channel lambdaTable[FUEL_LOAD_COUNT][FUEL_RPM_COUNT]; + /** + * offset 17456 + */ + uint16_t lambdaLoadBins[FUEL_LOAD_COUNT]; + /** + * units: RPM + * offset 17488 + */ + uint16_t lambdaRpmBins[FUEL_RPM_COUNT]; + /** + * units: value + * offset 17520 + */ + float tpsTpsAccelTable[TPS_TPS_ACCEL_TABLE][TPS_TPS_ACCEL_TABLE]; + /** + * units: from + * offset 17776 + */ + float tpsTpsAccelFromRpmBins[TPS_TPS_ACCEL_TABLE]; + /** + * units: to + * offset 17808 + */ + float tpsTpsAccelToRpmBins[TPS_TPS_ACCEL_TABLE]; + /** + * units: value + * offset 17840 + */ + float scriptTable1[SCRIPT_TABLE_8][SCRIPT_TABLE_8]; + /** + * units: L + * offset 18096 + */ + int16_t scriptTable1LoadBins[SCRIPT_TABLE_8]; + /** + * units: RPM + * offset 18112 + */ + int16_t scriptTable1RpmBins[SCRIPT_TABLE_8]; + /** + * units: value + * offset 18128 + */ + float scriptTable2[TABLE_2_LOAD_SIZE][TABLE_2_RPM_SIZE]; + /** + * units: L + * offset 18384 + */ + int16_t scriptTable2LoadBins[TABLE_2_LOAD_SIZE]; + /** + * units: RPM + * offset 18400 + */ + int16_t scriptTable2RpmBins[TABLE_2_RPM_SIZE]; + /** + * units: value + * offset 18416 + */ + uint8_t scriptTable3[SCRIPT_TABLE_8][SCRIPT_TABLE_8]; + /** + * units: L + * offset 18480 + */ + int16_t scriptTable3LoadBins[SCRIPT_TABLE_8]; + /** + * units: RPM + * offset 18496 + */ + int16_t scriptTable3RpmBins[SCRIPT_TABLE_8]; + /** + * units: value + * offset 18512 + */ + uint8_t scriptTable4[SCRIPT_TABLE_8][TABLE_4_RPM]; + /** + * units: L + * offset 18592 + */ + int16_t scriptTable4LoadBins[SCRIPT_TABLE_8]; + /** + * units: RPM + * offset 18608 + */ + int16_t scriptTable4RpmBins[TABLE_4_RPM]; + /** + * offset 18628 + */ + uint16_t ignTrimLoadBins[IGN_TRIM_SIZE]; + /** + * units: rpm + * offset 18636 + */ + uint16_t ignTrimRpmBins[IGN_TRIM_SIZE]; + /** + * offset 18644 + */ + ign_cyl_trim_s ignTrims[12]; + /** + * offset 18836 + */ + uint16_t fuelTrimLoadBins[FUEL_TRIM_SIZE]; + /** + * units: rpm + * offset 18844 + */ + uint16_t fuelTrimRpmBins[FUEL_TRIM_SIZE]; + /** + * offset 18852 + */ + fuel_cyl_trim_s fuelTrims[12]; + /** + * units: ratio + * offset 19044 + */ + scaled_channel crankingFuelCoefE100[CRANKING_CURVE_SIZE]; + /** + * units: Airmass + * offset 19060 + */ + scaled_channel tcu_pcAirmassBins[TCU_TABLE_WIDTH]; + /** + * units: % + * offset 19068 + */ + uint8_t tcu_pcValsR[TCU_TABLE_WIDTH]; + /** + * units: % + * offset 19076 + */ + uint8_t tcu_pcValsN[TCU_TABLE_WIDTH]; + /** + * units: % + * offset 19084 + */ + uint8_t tcu_pcVals1[TCU_TABLE_WIDTH]; + /** + * units: % + * offset 19092 + */ + uint8_t tcu_pcVals2[TCU_TABLE_WIDTH]; + /** + * units: % + * offset 19100 + */ + uint8_t tcu_pcVals3[TCU_TABLE_WIDTH]; + /** + * units: % + * offset 19108 + */ + uint8_t tcu_pcVals4[TCU_TABLE_WIDTH]; + /** + * units: % + * offset 19116 + */ + uint8_t tcu_pcVals12[TCU_TABLE_WIDTH]; + /** + * units: % + * offset 19124 + */ + uint8_t tcu_pcVals23[TCU_TABLE_WIDTH]; + /** + * units: % + * offset 19132 + */ + uint8_t tcu_pcVals34[TCU_TABLE_WIDTH]; + /** + * units: % + * offset 19140 + */ + uint8_t tcu_pcVals21[TCU_TABLE_WIDTH]; + /** + * units: % + * offset 19148 + */ + uint8_t tcu_pcVals32[TCU_TABLE_WIDTH]; + /** + * units: % + * offset 19156 + */ + uint8_t tcu_pcVals43[TCU_TABLE_WIDTH]; + /** + * units: TPS + * offset 19164 + */ + uint8_t tcu_tccTpsBins[8]; + /** + * units: MPH + * offset 19172 + */ + uint8_t tcu_tccLockSpeed[8]; + /** + * units: MPH + * offset 19180 + */ + uint8_t tcu_tccUnlockSpeed[8]; + /** + * units: KPH + * offset 19188 + */ + uint8_t tcu_32SpeedBins[8]; + /** + * units: % + * offset 19196 + */ + uint8_t tcu_32Vals[8]; + /** + * units: % + * offset 19204 + */ + scaled_channel throttle2TrimTable[ETB2_TRIM_SIZE][ETB2_TRIM_SIZE]; + /** + * units: % + * offset 19240 + */ + uint8_t throttle2TrimTpsBins[ETB2_TRIM_SIZE]; + /** + * units: RPM + * offset 19246 + */ + scaled_channel throttle2TrimRpmBins[ETB2_TRIM_SIZE]; + /** + * units: deg + * offset 19252 + */ + scaled_channel maxKnockRetardTable[KNOCK_TABLE_SIZE][KNOCK_TABLE_SIZE]; + /** + * units: % + * offset 19288 + */ + uint8_t maxKnockRetardLoadBins[KNOCK_TABLE_SIZE]; + /** + * units: RPM + * offset 19294 + */ + scaled_channel maxKnockRetardRpmBins[KNOCK_TABLE_SIZE]; + /** + * units: deg + * offset 19300 + */ + scaled_channel ALSTimingRetardTable[4][4]; + /** + * units: TPS + * offset 19332 + */ + uint16_t alsIgnRetardLoadBins[4]; + /** + * units: RPM + * offset 19340 + */ + uint16_t alsIgnRetardrpmBins[4]; + /** + * units: percent + * offset 19348 + */ + scaled_channel ALSFuelAdjustment[4][4]; + /** + * units: TPS + * offset 19380 + */ + uint16_t alsFuelAdjustmentLoadBins[4]; + /** + * units: RPM + * offset 19388 + */ + uint16_t alsFuelAdjustmentrpmBins[4]; + /** + * units: ratio + * offset 19396 + */ + scaled_channel ALSIgnSkipTable[4][4]; + /** + * units: TPS + * offset 19428 + */ + uint16_t alsIgnSkipLoadBins[4]; + /** + * units: RPM + * offset 19436 + */ + uint16_t alsIgnSkiprpmBins[4]; + /** + * offset 19444 + */ + blend_table_s ignBlends[IGN_BLEND_COUNT]; + /** + * offset 20196 + */ + blend_table_s veBlends[VE_BLEND_COUNT]; + /** + * units: % + * offset 20948 + */ + scaled_channel throttleEstimateEffectiveAreaBins[12]; + /** + * In units of g/s normalized to choked flow conditions + * units: g/s + * offset 20972 + */ + scaled_channel throttleEstimateEffectiveAreaValues[12]; + /** + * offset 20996 + */ + blend_table_s boostOpenLoopBlends[BOOST_BLEND_COUNT]; + /** + * offset 21372 + */ + blend_table_s boostClosedLoopBlends[BOOST_BLEND_COUNT]; + /** + * units: level + * offset 21748 + */ + float tcu_rangeP[RANGE_INPUT_COUNT]; + /** + * units: level + * offset 21772 + */ + float tcu_rangeR[RANGE_INPUT_COUNT]; + /** + * units: level + * offset 21796 + */ + float tcu_rangeN[RANGE_INPUT_COUNT]; + /** + * units: level + * offset 21820 + */ + float tcu_rangeD[RANGE_INPUT_COUNT]; + /** + * units: level + * offset 21844 + */ + float tcu_rangeM[RANGE_INPUT_COUNT]; + /** + * units: level + * offset 21868 + */ + float tcu_rangeM3[RANGE_INPUT_COUNT]; + /** + * units: level + * offset 21892 + */ + float tcu_rangeM2[RANGE_INPUT_COUNT]; + /** + * units: level + * offset 21916 + */ + float tcu_rangeM1[RANGE_INPUT_COUNT]; + /** + * units: level + * offset 21940 + */ + float tcu_rangePlus[RANGE_INPUT_COUNT]; + /** + * units: level + * offset 21964 + */ + float tcu_rangeMinus[RANGE_INPUT_COUNT]; + /** + * units: level + * offset 21988 + */ + float tcu_rangeLow[RANGE_INPUT_COUNT]; + /** + * units: lambda + * offset 22012 + */ + scaled_channel lambdaMaxDeviationTable[4][4]; + /** + * offset 22028 + */ + uint16_t lambdaMaxDeviationLoadBins[4]; + /** + * units: RPM + * offset 22036 + */ + uint16_t lambdaMaxDeviationRpmBins[4]; + /** + * units: % + * offset 22044 + */ + uint8_t injectorStagingTable[INJ_STAGING_COUNT][INJ_STAGING_COUNT]; + /** + * offset 22080 + */ + uint16_t injectorStagingLoadBins[INJ_STAGING_COUNT]; + /** + * units: RPM + * offset 22092 + */ + uint16_t injectorStagingRpmBins[INJ_STAGING_COUNT]; + /** + * units: deg C + * offset 22104 + */ + int8_t wwCltBins[WWAE_TABLE_SIZE]; + /** + * offset 22112 + */ + scaled_channel wwTauCltValues[WWAE_TABLE_SIZE]; + /** + * offset 22120 + */ + scaled_channel wwBetaCltValues[WWAE_TABLE_SIZE]; + /** + * units: kPa + * offset 22128 + */ + int8_t wwMapBins[WWAE_TABLE_SIZE]; + /** + * offset 22136 + */ + scaled_channel wwTauMapValues[WWAE_TABLE_SIZE]; + /** + * offset 22144 + */ + scaled_channel wwBetaMapValues[WWAE_TABLE_SIZE]; + /** + * units: % + * offset 22152 + */ + scaled_channel hpfpLobeProfileQuantityBins[HPFP_LOBE_PROFILE_SIZE]; + /** + * units: deg + * offset 22168 + */ + scaled_channel hpfpLobeProfileAngle[HPFP_LOBE_PROFILE_SIZE]; + /** + * units: volts + * offset 22184 + */ + uint8_t hpfpDeadtimeVoltsBins[HPFP_DEADTIME_SIZE]; + /** + * units: ms + * offset 22192 + */ + scaled_channel hpfpDeadtimeMS[HPFP_DEADTIME_SIZE]; + /** + * units: kPa + * offset 22208 + */ + uint16_t hpfpTarget[HPFP_TARGET_SIZE][HPFP_TARGET_SIZE]; + /** + * units: load + * offset 22408 + */ + scaled_channel hpfpTargetLoadBins[HPFP_TARGET_SIZE]; + /** + * units: RPM + * offset 22428 + */ + scaled_channel hpfpTargetRpmBins[HPFP_TARGET_SIZE]; + /** + * units: % + * offset 22438 + */ + int8_t hpfpCompensation[HPFP_COMPENSATION_SIZE][HPFP_COMPENSATION_SIZE]; + /** + * units: cc/lobe + * offset 22538 + */ + scaled_channel hpfpCompensationLoadBins[HPFP_COMPENSATION_SIZE]; + /** + * units: RPM + * offset 22558 + */ + scaled_channel hpfpCompensationRpmBins[HPFP_COMPENSATION_SIZE]; + /** + * units: RPM + * offset 22568 + */ + uint16_t knockNoiseRpmBins[ENGINE_NOISE_CURVE_SIZE]; + /** + * Knock sensor output knock detection threshold depending on current RPM. + * units: dB + * offset 22600 + */ + scaled_channel knockBaseNoise[ENGINE_NOISE_CURVE_SIZE]; + /** + * units: RPM + * offset 22616 + */ + scaled_channel tpsTspCorrValuesBins[TPS_TPS_ACCEL_CLT_CORR_TABLE]; + /** + * units: multiplier + * offset 22620 + */ + scaled_channel tpsTspCorrValues[TPS_TPS_ACCEL_CLT_CORR_TABLE]; + /** + * units: C + * offset 22624 + */ + int8_t cltRevLimitRpmBins[CLT_LIMITER_CURVE_SIZE]; + /** + * units: RPM + * offset 22628 + */ + uint16_t cltRevLimitRpm[CLT_LIMITER_CURVE_SIZE]; + /** + * units: volt + * offset 22636 + */ + scaled_channel fuelLevelBins[FUEL_LEVEL_TABLE_COUNT]; + /** + * units: % + * offset 22652 + */ + uint8_t fuelLevelValues[FUEL_LEVEL_TABLE_COUNT]; + /** + * units: volts + * offset 22660 + */ + scaled_channel dwellVoltageCorrVoltBins[DWELL_CURVE_SIZE]; + /** + * units: multiplier + * offset 22668 + */ + scaled_channel dwellVoltageCorrValues[DWELL_CURVE_SIZE]; + /** + * units: % + * offset 22676 + */ + scaled_channel tcu_shiftTpsBins[TCU_TABLE_WIDTH]; + /** + * units: MPH + * offset 22684 + */ + uint8_t tcu_shiftSpeed12[TCU_TABLE_WIDTH]; + /** + * units: MPH + * offset 22692 + */ + uint8_t tcu_shiftSpeed23[TCU_TABLE_WIDTH]; + /** + * units: MPH + * offset 22700 + */ + uint8_t tcu_shiftSpeed34[TCU_TABLE_WIDTH]; + /** + * units: MPH + * offset 22708 + */ + uint8_t tcu_shiftSpeed21[TCU_TABLE_WIDTH]; + /** + * units: MPH + * offset 22716 + */ + uint8_t tcu_shiftSpeed32[TCU_TABLE_WIDTH]; + /** + * units: MPH + * offset 22724 + */ + uint8_t tcu_shiftSpeed43[TCU_TABLE_WIDTH]; + /** + * units: ms + * offset 22732 + */ + float tcu_shiftTime; + /** + * units: Volts + * offset 22736 + */ + scaled_channel alternatorVoltageTargetTable[ALTERNATOR_VOLTAGE_TARGET_SIZE][ALTERNATOR_VOLTAGE_TARGET_SIZE]; + /** + * units: Load + * offset 22768 + */ + uint16_t alternatorVoltageTargetLoadBins[ALTERNATOR_VOLTAGE_TARGET_SIZE]; + /** + * units: RPM + * offset 22776 + */ + uint16_t alternatorVoltageTargetRpmBins[ALTERNATOR_VOLTAGE_TARGET_SIZE]; + /** + * units: C + * offset 22784 + */ + float cltBoostCorrBins[BOOST_CURVE_SIZE]; + /** + * units: ratio + * offset 22804 + */ + float cltBoostCorr[BOOST_CURVE_SIZE]; + /** + * units: C + * offset 22824 + */ + float iatBoostCorrBins[BOOST_CURVE_SIZE]; + /** + * units: ratio + * offset 22844 + */ + float iatBoostCorr[BOOST_CURVE_SIZE]; + /** + * units: C + * offset 22864 + */ + float cltBoostAdderBins[BOOST_CURVE_SIZE]; + /** + * offset 22884 + */ + float cltBoostAdder[BOOST_CURVE_SIZE]; + /** + * units: C + * offset 22904 + */ + float iatBoostAdderBins[BOOST_CURVE_SIZE]; + /** + * offset 22924 + */ + float iatBoostAdder[BOOST_CURVE_SIZE]; + /** + * units: RPM + * offset 22944 + */ + scaled_channel minimumOilPressureBins[8]; + /** + * units: kPa + * offset 22952 + */ + scaled_channel minimumOilPressureValues[8]; +}; +static_assert(sizeof(persistent_config_s) == 22960); + +// end +// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt diff --git a/generated/controllers/generated/rusefi_generated_z31-f7.h b/generated/controllers/generated/rusefi_generated_z31-f7.h new file mode 100644 index 0000000..cbec2fe --- /dev/null +++ b/generated/controllers/generated/rusefi_generated_z31-f7.h @@ -0,0 +1,1845 @@ +// +// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh integration/rusefi_config.txt +// + +#define adc_channel_e_auto_enum 0="EFI_ADC_NONE",1="EFI_ADC_0",2="EFI_ADC_1",11="EFI_ADC_10",12="EFI_ADC_11",13="EFI_ADC_12",14="EFI_ADC_13",15="EFI_ADC_14",16="EFI_ADC_15",17="EFI_ADC_16",18="EFI_ADC_17",19="EFI_ADC_18",20="EFI_ADC_19",3="EFI_ADC_2",21="EFI_ADC_20",22="EFI_ADC_21",23="EFI_ADC_22",24="EFI_ADC_23",25="EFI_ADC_24",26="EFI_ADC_25",27="EFI_ADC_26",28="EFI_ADC_27",29="EFI_ADC_28",30="EFI_ADC_29",4="EFI_ADC_3",31="EFI_ADC_30",32="EFI_ADC_31",33="EFI_ADC_32",34="EFI_ADC_33",35="EFI_ADC_34",36="EFI_ADC_35",37="EFI_ADC_36",38="EFI_ADC_37",39="EFI_ADC_38",40="EFI_ADC_39",5="EFI_ADC_4",41="EFI_ADC_40",42="EFI_ADC_41",43="EFI_ADC_42",44="EFI_ADC_43",45="EFI_ADC_44",46="EFI_ADC_45",47="EFI_ADC_46",48="EFI_ADC_47",6="EFI_ADC_5",7="EFI_ADC_6",8="EFI_ADC_7",9="EFI_ADC_8",10="EFI_ADC_9",50="EFI_ADC_ERROR",49="EFI_ADC_TOTAL_CHANNELS" +#define adc_channel_e_EFI_ADC_0 1 +#define adc_channel_e_EFI_ADC_1 2 +#define adc_channel_e_EFI_ADC_10 11 +#define adc_channel_e_EFI_ADC_11 12 +#define adc_channel_e_EFI_ADC_12 13 +#define adc_channel_e_EFI_ADC_13 14 +#define adc_channel_e_EFI_ADC_14 15 +#define adc_channel_e_EFI_ADC_15 16 +#define adc_channel_e_EFI_ADC_16 17 +#define adc_channel_e_EFI_ADC_17 18 +#define adc_channel_e_EFI_ADC_18 19 +#define adc_channel_e_EFI_ADC_19 20 +#define adc_channel_e_EFI_ADC_2 3 +#define adc_channel_e_EFI_ADC_20 21 +#define adc_channel_e_EFI_ADC_21 22 +#define adc_channel_e_EFI_ADC_22 23 +#define adc_channel_e_EFI_ADC_23 24 +#define adc_channel_e_EFI_ADC_24 25 +#define adc_channel_e_EFI_ADC_25 26 +#define adc_channel_e_EFI_ADC_26 27 +#define adc_channel_e_EFI_ADC_27 28 +#define adc_channel_e_EFI_ADC_28 29 +#define adc_channel_e_EFI_ADC_29 30 +#define adc_channel_e_EFI_ADC_3 4 +#define adc_channel_e_EFI_ADC_30 31 +#define adc_channel_e_EFI_ADC_31 32 +#define adc_channel_e_EFI_ADC_32 33 +#define adc_channel_e_EFI_ADC_33 34 +#define adc_channel_e_EFI_ADC_34 35 +#define adc_channel_e_EFI_ADC_35 36 +#define adc_channel_e_EFI_ADC_36 37 +#define adc_channel_e_EFI_ADC_37 38 +#define adc_channel_e_EFI_ADC_38 39 +#define adc_channel_e_EFI_ADC_39 40 +#define adc_channel_e_EFI_ADC_4 5 +#define adc_channel_e_EFI_ADC_40 41 +#define adc_channel_e_EFI_ADC_41 42 +#define adc_channel_e_EFI_ADC_42 43 +#define adc_channel_e_EFI_ADC_43 44 +#define adc_channel_e_EFI_ADC_44 45 +#define adc_channel_e_EFI_ADC_45 46 +#define adc_channel_e_EFI_ADC_46 47 +#define adc_channel_e_EFI_ADC_47 48 +#define adc_channel_e_EFI_ADC_5 6 +#define adc_channel_e_EFI_ADC_6 7 +#define adc_channel_e_EFI_ADC_7 8 +#define adc_channel_e_EFI_ADC_8 9 +#define adc_channel_e_EFI_ADC_9 10 +#define adc_channel_e_EFI_ADC_ERROR 50 +#define adc_channel_e_EFI_ADC_NONE 0 +#define adc_channel_e_EFI_ADC_TOTAL_CHANNELS 49 +#define adc_channel_e_enum 0="NONE",2="Analog Inputs 1 (A1)",11="Analog Inputs 10 (C0)",14="Analog Inputs 13 (C3)",15="Analog Inputs 14 (C4)",16="Analog Inputs 15 (C5)",3="Analog Inputs 2 (A2)",4="Analog Inputs 3 (A3)",5="Analog Inputs 4 (A4)",7="Analog Inputs 6 (A6)",8="Analog Inputs 7 (A7)",10="Analog Inputs 9 (B1)",9="On-board BARO (B0)",1="On-board Battery Sense (A0)",6="On-board MAP (A5)",12="Primary On-board O2 (C1)",13="Secondary On-board O2 (C2)" +#define adc_channel_e_fullenum "NONE","On-board Battery Sense (A0)","Analog Inputs 1 (A1)","Analog Inputs 2 (A2)","Analog Inputs 3 (A3)","Analog Inputs 4 (A4)","On-board MAP (A5)","Analog Inputs 6 (A6)","Analog Inputs 7 (A7)","On-board BARO (B0)","Analog Inputs 9 (B1)","Analog Inputs 10 (C0)","Primary On-board O2 (C1)","Secondary On-board O2 (C2)","Analog Inputs 13 (C3)","Analog Inputs 14 (C4)","Analog Inputs 15 (C5)" +#define ADC_CHANNEL_NONE 0 +#define afr_sensor_s_size 20 +#define air_pressure_sensor_config_s_size 12 +#define air_pressure_sensor_type_e_auto_enum 0="MT_CUSTOM",10="MT_BOSCH_2_5",1="MT_DENSO183",4="MT_DODGE_NEON_2003",13="MT_GM_1_BAR",12="MT_GM_2_BAR",6="MT_GM_3_BAR",3="MT_HONDA3BAR",11="MT_MAZDA_1_BAR",7="MT_MPX4100",2="MT_MPX4250",9="MT_MPX4250A",15="MT_MPXH6300",14="MT_MPXH6400",5="MT_SUBY_DENSO",8="MT_TOYOTA_89420_02010" +#define air_pressure_sensor_type_e_MT_BOSCH_2_5 10 +#define air_pressure_sensor_type_e_MT_CUSTOM 0 +#define air_pressure_sensor_type_e_MT_DENSO183 1 +#define air_pressure_sensor_type_e_MT_DODGE_NEON_2003 4 +#define air_pressure_sensor_type_e_MT_GM_1_BAR 13 +#define air_pressure_sensor_type_e_MT_GM_2_BAR 12 +#define air_pressure_sensor_type_e_MT_GM_3_BAR 6 +#define air_pressure_sensor_type_e_MT_HONDA3BAR 3 +#define air_pressure_sensor_type_e_MT_MAZDA_1_BAR 11 +#define air_pressure_sensor_type_e_MT_MPX4100 7 +#define air_pressure_sensor_type_e_MT_MPX4250 2 +#define air_pressure_sensor_type_e_MT_MPX4250A 9 +#define air_pressure_sensor_type_e_MT_MPXH6300 15 +#define air_pressure_sensor_type_e_MT_MPXH6400 14 +#define air_pressure_sensor_type_e_MT_SUBY_DENSO 5 +#define air_pressure_sensor_type_e_MT_TOYOTA_89420_02010 8 +#define ALTERNATOR_VOLTAGE_TARGET_SIZE 4 +#define antiLagActivationMode_e_ALWAYS_ON_ANTILAG 1 +#define antiLagActivationMode_e_auto_enum 0="SWITCH_INPUT_ANTILAG",1="ALWAYS_ON_ANTILAG" +#define antiLagActivationMode_e_enum "Switch Input", "Always Active" +#define antiLagActivationMode_e_SWITCH_INPUT_ANTILAG 0 +#define AUX_DIGITAL_VALVE_COUNT 2 +#define AUX_SPEED_SENSOR_COUNT 2 +#define BANKS_COUNT 2 +#define BARO_CORR_SIZE 4 +#define BENCH_AC_RELAY_DURATION 800 +#define BENCH_FAN_DURATION 2000 +#define BENCH_FUEL_PUMP_DURATION 3000 +#define BENCH_MAIN_RELAY_DURATION 1000 +#define bench_mode_e_BENCH_AC_COMPRESSOR_RELAY 6 +#define bench_mode_e_BENCH_AUXOUT0 20 +#define bench_mode_e_BENCH_AUXOUT1 21 +#define bench_mode_e_BENCH_AUXOUT2 22 +#define bench_mode_e_BENCH_AUXOUT3 23 +#define bench_mode_e_BENCH_AUXOUT4 24 +#define bench_mode_e_BENCH_AUXOUT5 25 +#define bench_mode_e_BENCH_AUXOUT6 26 +#define bench_mode_e_BENCH_AUXOUT7 27 +#define bench_mode_e_BENCH_CANCEL 15 +#define bench_mode_e_BENCH_CHECK_ENGINE_LIGHT 7 +#define bench_mode_e_BENCH_FAN_RELAY 4 +#define bench_mode_e_BENCH_FAN_RELAY_2 5 +#define bench_mode_e_BENCH_FUEL_PUMP 1 +#define bench_mode_e_BENCH_GPPWM1_VALVE 10 +#define bench_mode_e_BENCH_GPPWM2_VALVE 11 +#define bench_mode_e_BENCH_GPPWM3_VALVE 12 +#define bench_mode_e_BENCH_GPPWM4_VALVE 13 +#define bench_mode_e_BENCH_HPFP_VALVE 9 +#define bench_mode_e_BENCH_IDLE_VALVE 8 +#define bench_mode_e_BENCH_MAIN_RELAY 0 +#define bench_mode_e_BENCH_SECOND_IDLE_VALVE 14 +#define bench_mode_e_BENCH_STARTER_DISABLE_RELAY 3 +#define bench_mode_e_BENCH_STARTER_ENABLE_RELAY 2 +#define bench_mode_e_BENCH_VVT0_VALVE 16 +#define bench_mode_e_BENCH_VVT1_VALVE 17 +#define bench_mode_e_BENCH_VVT2_VALVE 18 +#define bench_mode_e_BENCH_VVT3_VALVE 19 +#define bench_mode_e_HD_ACR 28 +#define bench_mode_e_HD_ACR2 29 +#define BENCH_STARTER_DURATION 4000 +#define BENCH_VVT_DURATION 300 +#define blend_table_s_size 188 +#define BLOCKING_FACTOR 1024 +#define BOARD_CONSTANTS_EXTENSIONS_FROM_FILE +#define BOARD_CURVES_FROM_FILE +#define BOARD_DIAG_PANEL1_FROM_FILE +#define BOARD_DIAG_PANEL2_FROM_FILE +#define BOARD_ENGINE_CONFIGURATION_FROM_FILE +#define BOARD_GAUGES_FROM_FILE +#define BOARD_MENU_FROM_FILE +#define BOARD_OPTIONS_FROM_FILE +#define BOARD_PANELS_FROM_FILE +#define BOARD_PC_VARIABLES_FROM_FILE +#define BOARD_POPULAR_VEHICLES_FILE +#define BOARD_TABLES_FROM_FILE +#define BOARD_VE_FROM_FILE +#define BOARD_VE_MENU_FROM_FILE +#define BOOST_BLEND_COUNT 2 +#define BOOST_CURVE_SIZE 5 +#define BOOST_LOAD_COUNT 8 +#define BOOST_RPM_COUNT 8 +#define boostType_e_auto_enum 0="OPEN_LOOP",1="CLOSED_LOOP" +#define boostType_e_CLOSED_LOOP 1 +#define boostType_e_OPEN_LOOP 0 +#define brain_input_pin_e_enum 0="NONE",68="VR/Hall 1 (E2)",69="VR/Hall 2 (E3)",70="VR/Hall 3 (E4)" +#define brain_input_pin_e_fullenum "NONE","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","VR/Hall 1 (E2)","VR/Hall 2 (E3)","VR/Hall 3 (E4)" +#define brain_pin_diag_e_PIN_DRIVER_OFF 0x20 +#define brain_pin_diag_e_PIN_DRIVER_OVERTEMP 0x10 +#define brain_pin_diag_e_PIN_OK 0 +#define brain_pin_diag_e_PIN_OPEN 0x01 +#define brain_pin_diag_e_PIN_OVERLOAD 0x08 +#define brain_pin_diag_e_PIN_SHORT_TO_BAT 0x04 +#define brain_pin_diag_e_PIN_SHORT_TO_GND 0x02 +#define brain_pin_diag_e_PIN_UNKNOWN 0x80 +#define C_MC33810_COUNT 1 +#define CAM_1_MODE_NAME "Cam mode (intake)" +#define CAM_2_MODE_NAME "Cam mode (exhaust)" +#define CAM_INPUTS_COUNT 4 +#define CAMS_PER_BANK 2 +#define can_baudrate_e_auto_enum 0="B50KBPS",2="B100KBPS",3="B125KBPS",6="B1MBPS",4="B250KBPS",5="B500KBPS",1="B83KBPS" +#define can_baudrate_e_B100KBPS 2 +#define can_baudrate_e_B125KBPS 3 +#define can_baudrate_e_B1MBPS 6 +#define can_baudrate_e_B250KBPS 4 +#define can_baudrate_e_B500KBPS 5 +#define can_baudrate_e_B50KBPS 0 +#define can_baudrate_e_B83KBPS 1 +#define can_baudrate_e_enum "50kbps", "83.33kbps", "100kbps", "125kbps", "250kbps", "500kbps", "1Mbps" +#define CAN_BENCH_HEADER2 0x66 +#define CAN_DEFAULT_BASE 0x200 +#define CAN_ECU_SERIAL_RX_ID 0x710 +#define CAN_ECU_SERIAL_TX_ID 0x720 +#define can_nbc_e_auto_enum 0="CAN_BUS_NBC_NONE",12="CAN_AIM_DASH",4="CAN_BUS_BMW_E46",6="CAN_BUS_BMW_E90",10="CAN_BUS_GENESIS_COUPE",11="CAN_BUS_HONDA_K",7="CAN_BUS_Haltech",3="CAN_BUS_MAZDA_RX8",8="CAN_BUS_MQB",13="CAN_BUS_MS_SIMPLE_BROADCAST",1="CAN_BUS_NBC_FIAT",2="CAN_BUS_NBC_VAG",9="CAN_BUS_NISSAN_VQ",5="CAN_BUS_W202_C180" +#define can_nbc_e_CAN_AIM_DASH 12 +#define can_nbc_e_CAN_BUS_BMW_E46 4 +#define can_nbc_e_CAN_BUS_BMW_E90 6 +#define can_nbc_e_CAN_BUS_GENESIS_COUPE 10 +#define can_nbc_e_CAN_BUS_Haltech 7 +#define can_nbc_e_CAN_BUS_HONDA_K 11 +#define can_nbc_e_CAN_BUS_MAZDA_RX8 3 +#define can_nbc_e_CAN_BUS_MQB 8 +#define can_nbc_e_CAN_BUS_MS_SIMPLE_BROADCAST 13 +#define can_nbc_e_CAN_BUS_NBC_FIAT 1 +#define can_nbc_e_CAN_BUS_NBC_NONE 0 +#define can_nbc_e_CAN_BUS_NBC_VAG 2 +#define can_nbc_e_CAN_BUS_NISSAN_VQ 9 +#define can_nbc_e_CAN_BUS_W202_C180 5 +#define CAN_RX_PREFIX "CAN_rx" +#define can_vss_nbc_e_auto_enum 0="BMW_e46",2="BMW_e90",5="HONDA_CIVIC9",4="HYUNDAI_PB",3="NISSAN_350",1="W202" +#define can_vss_nbc_e_BMW_e46 0 +#define can_vss_nbc_e_BMW_e90 2 +#define can_vss_nbc_e_HONDA_CIVIC9 5 +#define can_vss_nbc_e_HYUNDAI_PB 4 +#define can_vss_nbc_e_NISSAN_350 3 +#define can_vss_nbc_e_W202 1 +#define CanGpioType_auto_enum 0="NONE",1="DRT",2="MS" +#define CanGpioType_DRT 1 +#define CanGpioType_enum "None", "DRT protocol", "MS protocol" +#define CanGpioType_MS 2 +#define CanGpioType_NONE 0 +#define CLT_CRANKING_CURVE_SIZE 8 +#define CLT_CURVE_SIZE 16 +#define CLT_LIMITER_CURVE_SIZE 4 +#define CLT_TIMING_CURVE_SIZE 8 +#define CLT_UPPER_LIMIT 250 +#define CMD_AC_RELAY_BENCH "acrelaybench" +#define CMD_ALTERNATOR_PIN "set_alternator_pin" +#define CMD_BOOST_PIN "set_boost_pin" +#define CMD_BURNCONFIG "burnconfig" +#define CMD_DATE "date" +#define CMD_DISABLE "disable" +#define CMD_ECU_UNLOCK "unlock" +#define CMD_ENABLE "enable" +#define CMD_ENGINE_TYPE "engine_type" +#define CMD_ENGINESNIFFERRPMTHRESHOLD "engineSnifferRpmThreshold" +#define CMD_ETB_DUTY "set_etb_duty" +#define CMD_EXTERNAL_STIMULATION "ext_stimulation" +#define CMD_FAN2_BENCH "fan2bench" +#define CMD_FAN_BENCH "fanbench" +#define CMD_FUEL_BENCH "fuelbench" +#define CMD_FUEL_PUMP_BENCH "fuelpumpbench" +#define CMD_FUNCTIONAL_TEST_MODE "test_mode" +#define CMD_GET "get" +#define CMD_HPFP_BENCH "hpfpbench" +#define CMD_IDLE_BENCH "idlebench" +#define CMD_IDLE_PIN "set_idle_pin" +#define CMD_IGNITION "ignition" +#define CMD_IGNITION_PIN "set_ignition_pin" +#define CMD_INDIVIDUAL_INJECTION "set_individual_coils_ignition" +#define CMD_INJECTION "injection" +#define CMD_INJECTION_PIN "set_injection_pin" +#define CMD_LOGIC_PIN "set_logic_input_pin" +#define CMD_MIL_BENCH "milbench" +#define CMD_PINS "pins" +#define CMD_PWM "pwm" +#define CMD_REBOOT "reboot" +#define CMD_REBOOT_DFU "reboot_dfu" +#define CMD_REBOOT_OPENBLT "reboot_openblt" +#define CMD_RESET_ENGINE_SNIFFER "reset_engine_chart" +#define CMD_RESET_SENSOR_MOCKS "reset_sensor_mocks" +#define CMD_RESET_SIMULATOR "reset_simulator" +#define CMD_RPM "rpm" +#define CMD_SELF_STIMULATION "self_stimulation" +#define CMD_SET "set" +#define CMD_SET_SENSOR_MOCK "set_sensor_mock" +#define CMD_SPARK_BENCH "sparkbench" +#define CMD_STARTER_BENCH "starterbench" +#define CMD_TRIGGER_HW_INPUT "trigger_hw_input" +#define CMD_TRIGGER_PIN "set_trigger_input_pin" +#define CMD_TRIGGER_SIMULATOR_PIN "set_trigger_simulator_pin" +#define CMD_TRIGGERINFO "triggerinfo" +#define CMD_VSS_PIN "vss_pin" +#define CMD_WRITECONFIG "writeconfig" +#define COIL_1_NAME "Spark #1" +#define COIL_2_NAME "Spark #2" +#define COMMANDS_FROM_FILE +#define COMPOSITE_PACKET_SIZE 5 +#define CONSOLE_DATA_PROTOCOL_TAG " @" +#define CRANKING_ADVANCE_CURVE_SIZE 4 +#define CRANKING_CLT_IDLE_CURVE_SIZE 8 +#define CRANKING_CURVE_SIZE 8 +#define CRANKING_CYCLE_CLT_SIZE 4 +#define CRANKING_ENRICH_COUNT 6 +#define cranking_parameters_s_size 8 +#define CRITICAL_BUFFER_SIZE 120 +#define CRITICAL_PREFIX "CRITICAL" +#define CYLINDER_BORE_MULTIPLIER 1 +#define CYLINDER_BORE_TOOLTIP "Cylinder diameter in mm" +#define CYLINDER_BORE_UNITS "mm" +#define DAC_OUTPUT_COUNT 2 +#define dc_function_e_auto_enum 0="DC_None",3="DC_IdleValve",1="DC_Throttle1",2="DC_Throttle2",4="DC_Wastegate" +#define dc_function_e_DC_IdleValve 3 +#define dc_function_e_DC_None 0 +#define dc_function_e_DC_Throttle1 1 +#define dc_function_e_DC_Throttle2 2 +#define dc_function_e_DC_Wastegate 4 +#define dc_io_size 8 +#define DC_PER_STEPPER 2 +#define debug_mode_e_auto_enum 0="DBG_0",1="DBG_1",10="DBG_10",11="DBG_11",12="DBG_12",13="DBG_13",16="DBG_16",19="DBG_19",2="DBG_2",20="DBG_20",21="DBG_21",22="DBG_22",24="DBG_24",25="DBG_25",26="DBG_26",27="DBG_27",29="DBG_29",32="DBG_32",34="DBG_34",35="DBG_35",36="DBG_36",37="DBG_37",38="DBG_38",43="DBG_43",46="DBG_46",5="DBG_5",6="DBG_6",7="DBG_7",8="DBG_8",9="DBG_9",40="DBG_COMPOSITE_LOG",33="DBG_DWELL_METRIC",44="DBG_DYNO_VIEW",17="DBG_ELECTRONIC_THROTTLE_PID",4="DBG_EL_ACCEL",39="DBG_ETB_AUTOTUNE",18="DBG_EXECUTOR",30="DBG_ION",15="DBG_KNOCK",45="DBG_LOGIC_ANALYZER",48="DBG_LUA",28="DBG_METRICS",14="DBG_SR5_PROTOCOL",3="DBG_STEPPER_IDLE_CONTROL",47="DBG_TCU",31="DBG_TLE8888",41="DBG_UNUSED41",42="DBG_UNUSED_42",23="UNUSED23" +#define debug_mode_e_DBG_0 0 +#define debug_mode_e_DBG_1 1 +#define debug_mode_e_DBG_10 10 +#define debug_mode_e_DBG_11 11 +#define debug_mode_e_DBG_12 12 +#define debug_mode_e_DBG_13 13 +#define debug_mode_e_DBG_16 16 +#define debug_mode_e_DBG_19 19 +#define debug_mode_e_DBG_2 2 +#define debug_mode_e_DBG_20 20 +#define debug_mode_e_DBG_21 21 +#define debug_mode_e_DBG_22 22 +#define debug_mode_e_DBG_24 24 +#define debug_mode_e_DBG_25 25 +#define debug_mode_e_DBG_26 26 +#define debug_mode_e_DBG_27 27 +#define debug_mode_e_DBG_29 29 +#define debug_mode_e_DBG_32 32 +#define debug_mode_e_DBG_34 34 +#define debug_mode_e_DBG_35 35 +#define debug_mode_e_DBG_36 36 +#define debug_mode_e_DBG_37 37 +#define debug_mode_e_DBG_38 38 +#define debug_mode_e_DBG_43 43 +#define debug_mode_e_DBG_46 46 +#define debug_mode_e_DBG_5 5 +#define debug_mode_e_DBG_6 6 +#define debug_mode_e_DBG_7 7 +#define debug_mode_e_DBG_8 8 +#define debug_mode_e_DBG_9 9 +#define debug_mode_e_DBG_COMPOSITE_LOG 40 +#define debug_mode_e_DBG_DWELL_METRIC 33 +#define debug_mode_e_DBG_DYNO_VIEW 44 +#define debug_mode_e_DBG_EL_ACCEL 4 +#define debug_mode_e_DBG_ELECTRONIC_THROTTLE_PID 17 +#define debug_mode_e_DBG_ETB_AUTOTUNE 39 +#define debug_mode_e_DBG_EXECUTOR 18 +#define debug_mode_e_DBG_ION 30 +#define debug_mode_e_DBG_KNOCK 15 +#define debug_mode_e_DBG_LOGIC_ANALYZER 45 +#define debug_mode_e_DBG_LUA 48 +#define debug_mode_e_DBG_METRICS 28 +#define debug_mode_e_DBG_SR5_PROTOCOL 14 +#define debug_mode_e_DBG_STEPPER_IDLE_CONTROL 3 +#define debug_mode_e_DBG_TCU 47 +#define debug_mode_e_DBG_TLE8888 31 +#define debug_mode_e_DBG_UNUSED41 41 +#define debug_mode_e_DBG_UNUSED_42 42 +#define debug_mode_e_enum "INVALID", "TPS acceleration enrichment", "INVALID", "Stepper Idle Control", "Engine Load accl enrich", "Trigger Counters", "Soft Spark Cut", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "SD card", "sr5", "Knock", "INVALID", "Electronic Throttle", "Executor", "Bench Test / TS commands", "INVALID", "Analog inputs #1", "INSTANT_RPM", "INVALID", "Status", "INVALID", "INVALID", "MAP", "Metrics", "INVALID", "Ion Sense", "TLE8888", "Analog inputs #2", "Dwell Metric", "INVALID", "INVALID", "Boost Control", "INVALID", "INVALID", "ETB Autotune", "Composite Log", "INVALID", "INVALID", "INVALID", "Dyno_View", "Logic_Analyzer", "INVALID", "TCU", "Lua" +#define debug_mode_e_UNUSED23 23 +#define DEFAULT_RPM_AXIS_HIGH_VALUE 7000 +#define DEFAULT_SELT_STIM_RPM 1200 +#define DEFAULT_SELT_STIM_VVT0 23 +#define DEFAULT_SOLENOID_FREQUENCY 300 +#define DIGIPOT_COUNT 4 +#define DISPLACEMENT_MULTIPLIER 0.001 +#define DISPLACEMENT_TOOLTIP "Engine displacement in litres" +#define DISPLACEMENT_UNITS "L" +#define display_mode_e_DM_HD44780 1 +#define display_mode_e_DM_HD44780_OVER_PCF8574 2 +#define display_mode_e_DM_NONE 0 +#define DWELL_CURVE_SIZE 8 +#define ego_sensor_e_auto_enum 0="ES_BPSX_D1",2="ES_14Point7_Free",6="ES_AEM",5="ES_Custom",1="ES_Innovate_MTX_L",4="ES_PLX" +#define ego_sensor_e_enum "BPSX", "Innovate", "14Point7", "INVALID", "PLX", "Custom", "AEM" +#define ego_sensor_e_ES_14Point7_Free 2 +#define ego_sensor_e_ES_AEM 6 +#define ego_sensor_e_ES_BPSX_D1 0 +#define ego_sensor_e_ES_Custom 5 +#define ego_sensor_e_ES_Innovate_MTX_L 1 +#define ego_sensor_e_ES_PLX 4 +#define EGT_CHANNEL_COUNT 8 +#define END_OF_CALIBRATION_PADDING 116 +#define engine_configuration_s_size 4032 +#define engine_load_mode_e_auto_enum 0="LM_SPEED_DENSITY",2="LM_ALPHA_N",3="LM_LUA",100="LM_MOCK",1="LM_REAL_MAF" +#define engine_load_mode_e_enum "Speed Density", "MAF Air Charge", "Alpha-N", "Lua" +#define engine_load_mode_e_LM_ALPHA_N 2 +#define engine_load_mode_e_LM_LUA 3 +#define engine_load_mode_e_LM_MOCK 100 +#define engine_load_mode_e_LM_REAL_MAF 1 +#define engine_load_mode_e_LM_SPEED_DENSITY 0 +#define ENGINE_MAKE_BMW "BMW" +#define ENGINE_MAKE_GM "GM" +#define ENGINE_MAKE_HONDA "Honda" +#define ENGINE_MAKE_Hyundai "Hyundai" +#define ENGINE_MAKE_LADA "Lada" +#define ENGINE_MAKE_MAZDA "Mazda" +#define ENGINE_MAKE_MERCEDES "Mercedes" +#define ENGINE_MAKE_NISSAN "Nissan" +#define ENGINE_MAKE_SUBARU "Subaru" +#define ENGINE_MAKE_TOYOTA "Toyota" +#define ENGINE_MAKE_VAG "VAG" +#define ENGINE_NOISE_CURVE_SIZE 16 +#define ENGINE_SNIFFER_UNIT_US 10 +#define engine_type_e_auto_enum 0="DEFAULT_FRANKENSO",22="BMW_M52",50="BMW_M73_MRE",51="BMW_M73_MRE_SLAVE",38="DISCOVERY_PDM",2="DODGE_NEON_1995",46="DODGE_NEON_2003_CRANK",64="DODGE_RAM",61="EEPROM_BENCH_ENGINE",58="ETB_BENCH_ENGINE",21="ET_BOSCH_QUICK_START",24="ET_TEST_WITH_BOSCH_QUICK_START",55="ET_UNUSED_55",56="ET_UNUSED_56",105="FERRARI_F136",3="FORD_ASPIRE_1996",11="FORD_COYOTE",14="FORD_ESCORT_GT",7="FORD_INLINE_6_1995",40="FRANKENSO_BMW_M73_F",41="FRANKENSO_MIATA_NA6_MAP",59="FRANKENSO_TEST_33810",15="FUEL_BENCH",47="GM_LCV",98="GM_SBC",8="GY6_139QMB",6="HARLEY",84="HELLEN_121_NISSAN_4_CYL",72="HELLEN_121_NISSAN_6_CYL",85="HELLEN_121_NISSAN_8_CYL",87="HELLEN_121_NISSAN_ALMERA_N16",71="HELLEN_121_VAG_4_CYL",81="HELLEN_121_VAG_8_CYL",78="HELLEN_121_VAG_V6_CYL",79="HELLEN_121_VAG_VR6_CYL",36="HELLEN_128_MERCEDES_4_CYL",88="HELLEN_128_MERCEDES_6_CYL",89="HELLEN_128_MERCEDES_8_CYL",82="HELLEN_154_HYUNDAI_COUPE_BK1",95="HELLEN_154_HYUNDAI_COUPE_BK2",76="HELLEN_154_VAG",75="HELLEN_2CHAN_STIM_QC",74="HELLEN_4CHAN_STIM_QC",57="HELLEN_HONDA_BCM",43="HONDA_600",90="HONDA_K",66="HONDA_OBD1",91="HONDA_OBD2A",104="HYUNDAI_PB",60="L9779_BENCH_ENGINE",54="MAVERICK_X3",34="MAZDA_MIATA_NA6",80="MAZDA_MIATA_NA94",10="MAZDA_MIATA_NA96",83="MAZDA_MIATA_NB1",69="MAZDA_MIATA_NB2",86="MAZDA_MIATA_NB2_36",20="MAZDA_MIATA_NC",33="ME17_9_MISC",68="MERCEDES_M111",1="MIATA_PROTEUS_TCU",99="MINIMAL_PINS",12="MITSUBISHI_3A92",16="MITSUBISHI_4G93",31="MRE_BOARD_NEW_TEST",23="MRE_BODY_CONTROL",4="MRE_SECONDARY_CAN",37="MRE_SUBARU_EJ18",62="MRE_VW_B6",5="NISSAN_PRIMERA",35="POLARIS",9="POLARIS_RZR",30="PROTEUS_ANALOG_PWM_TEST",63="PROTEUS_BMW_M73",27="PROTEUS_GM_LS_4",25="PROTEUS_LUA_DEMO",103="PROTEUS_NISSAN_VQ35",42="PROTEUS_QC_TEST_BOARD",73="PROTEUS_STIM_QC",39="PROTEUS_VW_B6",29="SACHS",92="SIMULATOR_CONFIG",70="SUBARU_EG33",17="TCU_4R70W",100="TEST_100",101="TEST_101",18="TEST_33816",28="TEST_CRANK_ENGINE",48="TEST_DC_WASTEGATE_DISCOVERY",26="TEST_ENGINE",45="TEST_ENGINE_VVT",52="TEST_ISSUE_366_BOTH",53="TEST_ISSUE_366_RISE",93="TEST_ISSUE_6451",19="TEST_ROTARY",13="TOYOTA_1NZ_FE",44="TOYOTA_2JZ_GTE_VVTi",102="UNUSED102",49="UNUSED49",67="UNUSED67",94="UNUSED94",65="UNUSED_65",97="UNUSED_97",77="VAG_5_CYL",32="VW_ABA",96="WASTEGATE_PROTEUS_TEST" +#define engine_type_e_BMW_M52 22 +#define engine_type_e_BMW_M73_MRE 50 +#define engine_type_e_BMW_M73_MRE_SLAVE 51 +#define engine_type_e_DEFAULT_FRANKENSO 0 +#define engine_type_e_DISCOVERY_PDM 38 +#define engine_type_e_DODGE_NEON_1995 2 +#define engine_type_e_DODGE_NEON_2003_CRANK 46 +#define engine_type_e_DODGE_RAM 64 +#define engine_type_e_EEPROM_BENCH_ENGINE 61 +#define engine_type_e_ET_BOSCH_QUICK_START 21 +#define engine_type_e_ET_TEST_WITH_BOSCH_QUICK_START 24 +#define engine_type_e_ET_UNUSED_55 55 +#define engine_type_e_ET_UNUSED_56 56 +#define engine_type_e_ETB_BENCH_ENGINE 58 +#define engine_type_e_FERRARI_F136 105 +#define engine_type_e_FORD_ASPIRE_1996 3 +#define engine_type_e_FORD_COYOTE 11 +#define engine_type_e_FORD_ESCORT_GT 14 +#define engine_type_e_FORD_INLINE_6_1995 7 +#define engine_type_e_FRANKENSO_BMW_M73_F 40 +#define engine_type_e_FRANKENSO_MIATA_NA6_MAP 41 +#define engine_type_e_FRANKENSO_TEST_33810 59 +#define engine_type_e_FUEL_BENCH 15 +#define engine_type_e_GM_LCV 47 +#define engine_type_e_GM_SBC 98 +#define engine_type_e_GY6_139QMB 8 +#define engine_type_e_HARLEY 6 +#define engine_type_e_HELLEN_121_NISSAN_4_CYL 84 +#define engine_type_e_HELLEN_121_NISSAN_6_CYL 72 +#define engine_type_e_HELLEN_121_NISSAN_8_CYL 85 +#define engine_type_e_HELLEN_121_NISSAN_ALMERA_N16 87 +#define engine_type_e_HELLEN_121_VAG_4_CYL 71 +#define engine_type_e_HELLEN_121_VAG_8_CYL 81 +#define engine_type_e_HELLEN_121_VAG_V6_CYL 78 +#define engine_type_e_HELLEN_121_VAG_VR6_CYL 79 +#define engine_type_e_HELLEN_128_MERCEDES_4_CYL 36 +#define engine_type_e_HELLEN_128_MERCEDES_6_CYL 88 +#define engine_type_e_HELLEN_128_MERCEDES_8_CYL 89 +#define engine_type_e_HELLEN_154_HYUNDAI_COUPE_BK1 82 +#define engine_type_e_HELLEN_154_HYUNDAI_COUPE_BK2 95 +#define engine_type_e_HELLEN_154_VAG 76 +#define engine_type_e_HELLEN_2CHAN_STIM_QC 75 +#define engine_type_e_HELLEN_4CHAN_STIM_QC 74 +#define engine_type_e_HELLEN_HONDA_BCM 57 +#define engine_type_e_HONDA_600 43 +#define engine_type_e_HONDA_K 90 +#define engine_type_e_HONDA_OBD1 66 +#define engine_type_e_HONDA_OBD2A 91 +#define engine_type_e_HYUNDAI_PB 104 +#define engine_type_e_L9779_BENCH_ENGINE 60 +#define engine_type_e_MAVERICK_X3 54 +#define engine_type_e_MAZDA_MIATA_NA6 34 +#define engine_type_e_MAZDA_MIATA_NA94 80 +#define engine_type_e_MAZDA_MIATA_NA96 10 +#define engine_type_e_MAZDA_MIATA_NB1 83 +#define engine_type_e_MAZDA_MIATA_NB2 69 +#define engine_type_e_MAZDA_MIATA_NB2_36 86 +#define engine_type_e_MAZDA_MIATA_NC 20 +#define engine_type_e_ME17_9_MISC 33 +#define engine_type_e_MERCEDES_M111 68 +#define engine_type_e_MIATA_PROTEUS_TCU 1 +#define engine_type_e_MINIMAL_PINS 99 +#define engine_type_e_MITSUBISHI_3A92 12 +#define engine_type_e_MITSUBISHI_4G93 16 +#define engine_type_e_MRE_BOARD_NEW_TEST 31 +#define engine_type_e_MRE_BODY_CONTROL 23 +#define engine_type_e_MRE_SECONDARY_CAN 4 +#define engine_type_e_MRE_SUBARU_EJ18 37 +#define engine_type_e_MRE_VW_B6 62 +#define engine_type_e_NISSAN_PRIMERA 5 +#define engine_type_e_POLARIS 35 +#define engine_type_e_POLARIS_RZR 9 +#define engine_type_e_PROTEUS_ANALOG_PWM_TEST 30 +#define engine_type_e_PROTEUS_BMW_M73 63 +#define engine_type_e_PROTEUS_GM_LS_4 27 +#define engine_type_e_PROTEUS_LUA_DEMO 25 +#define engine_type_e_PROTEUS_NISSAN_VQ35 103 +#define engine_type_e_PROTEUS_QC_TEST_BOARD 42 +#define engine_type_e_PROTEUS_STIM_QC 73 +#define engine_type_e_PROTEUS_VW_B6 39 +#define engine_type_e_SACHS 29 +#define engine_type_e_SIMULATOR_CONFIG 92 +#define engine_type_e_SUBARU_EG33 70 +#define engine_type_e_TCU_4R70W 17 +#define engine_type_e_TEST_100 100 +#define engine_type_e_TEST_101 101 +#define engine_type_e_TEST_33816 18 +#define engine_type_e_TEST_CRANK_ENGINE 28 +#define engine_type_e_TEST_DC_WASTEGATE_DISCOVERY 48 +#define engine_type_e_TEST_ENGINE 26 +#define engine_type_e_TEST_ENGINE_VVT 45 +#define engine_type_e_TEST_ISSUE_366_BOTH 52 +#define engine_type_e_TEST_ISSUE_366_RISE 53 +#define engine_type_e_TEST_ISSUE_6451 93 +#define engine_type_e_TEST_ROTARY 19 +#define engine_type_e_TOYOTA_1NZ_FE 13 +#define engine_type_e_TOYOTA_2JZ_GTE_VVTi 44 +#define engine_type_e_UNUSED102 102 +#define engine_type_e_UNUSED49 49 +#define engine_type_e_UNUSED67 67 +#define engine_type_e_UNUSED94 94 +#define engine_type_e_UNUSED_65 65 +#define engine_type_e_UNUSED_97 97 +#define engine_type_e_VAG_5_CYL 77 +#define engine_type_e_VW_ABA 32 +#define engine_type_e_WASTEGATE_PROTEUS_TEST 96 +#define ENGINE_TYPES_DIALOG_NAME "Popular vehicles" +#define engineSyncCam_enum "Intake First Bank", "Exhaust First Bank", "Intake Second Bank", "Exhaust Second Bank" +#define ETB2_TRIM_SIZE 6 +#define ETB_BIAS_CURVE_LENGTH 8 +#define ETB_COUNT 2 +#define ETB_HW_MAX_FREQUENCY 3000 +#define FLASH_DATA_VERSION 20024 +#define FRONTEND_TITLE_BAR_NAME "rusEFI" +#define fuel_cyl_trim_s_size 16 +#define FUEL_LEVEL_TABLE_COUNT 8 +#define FUEL_LOAD_COUNT 16 +#define fuel_pressure_sensor_mode_e_auto_enum 0="FPM_Absolute",2="FPM_Differential",1="FPM_Gauge" +#define fuel_pressure_sensor_mode_e_enum "Absolute", "Gauge", "Differential", "INVALID" +#define fuel_pressure_sensor_mode_e_FPM_Absolute 0 +#define fuel_pressure_sensor_mode_e_FPM_Differential 2 +#define fuel_pressure_sensor_mode_e_FPM_Gauge 1 +#define FUEL_RPM_COUNT 16 +#define FUEL_TRIM_SIZE 4 +#define GAP_TRACKING_LENGTH 18 +#define GAUGE_CATEGORY_BOOST_CONTROL "Boost Control" +#define GAUGE_CATEGORY_ETB "ETB more" +#define GAUGE_CATEGORY_FUEL_MATH "Fuel: math" +#define GAUGE_CATEGORY_SYNC "Sync" +#define GAUGE_CATEGORY_TIMING "Timing" +#define GAUGE_COIL_DWELL_TIME "Ignition: coil charge time" +#define GAUGE_LUA_FROM_0 -30000 +#define GAUGE_LUA_FROM_1 -30000 +#define GAUGE_LUA_FROM_2 -30000 +#define GAUGE_LUA_FROM_3 -30000 +#define GAUGE_LUA_FROM_4 -30000 +#define GAUGE_LUA_FROM_5 -30000 +#define GAUGE_LUA_FROM_6 -30000 +#define GAUGE_LUA_FROM_7 -30000 +#define GAUGE_LUA_TO_0 30000 +#define GAUGE_LUA_TO_1 30000 +#define GAUGE_LUA_TO_2 30000 +#define GAUGE_LUA_TO_3 30000 +#define GAUGE_LUA_TO_4 30000 +#define GAUGE_LUA_TO_5 30000 +#define GAUGE_LUA_TO_6 30000 +#define GAUGE_LUA_TO_7 30000 +#define GAUGE_NAME_AC_PRESSURE "A/C pressure" +#define GAUGE_NAME_ACCEL_LAT "Accel: Lateral" +#define GAUGE_NAME_ACCEL_LON "Accel: Longitudinal" +#define GAUGE_NAME_ACCEL_ROLL "Acceleration: Roll" +#define GAUGE_NAME_ACCEL_VERT "Accel: Vertical" +#define GAUGE_NAME_ACCEL_YAW "Acceleration: Yaw" +#define GAUGE_NAME_ADJUSTED_TIMING "Timing: ignition" +#define GAUGE_NAME_AFR "Air/Fuel Ratio" +#define GAUGE_NAME_AFR2 "Air/Fuel Ratio 2" +#define GAUGE_NAME_AFR2_GAS_SCALE "Air/Fuel Ratio 2 (Gas Scale)" +#define GAUGE_NAME_AFR_GAS_SCALE "Air/Fuel Ratio (Gas Scale)" +#define GAUGE_NAME_AIR_FLOW_ESTIMATE "Air: Flow estimate" +#define GAUGE_NAME_AIR_FLOW_MEASURED "MAF" +#define GAUGE_NAME_AIR_FLOW_MEASURED_2 "MAF #2" +#define GAUGE_NAME_AIR_MASS "Air: Cylinder airmass" +#define GAUGE_NAME_AUX_LINEAR_1 "Aux linear #1" +#define GAUGE_NAME_AUX_LINEAR_2 "Aux linear #2" +#define GAUGE_NAME_AUX_LINEAR_3 "Aux linear #3" +#define GAUGE_NAME_AUX_LINEAR_4 "Aux linear #4" +#define GAUGE_NAME_AUX_TEMP1 "Aux temp 1" +#define GAUGE_NAME_AUX_TEMP2 "Aux temp 2" +#define GAUGE_NAME_BARO_PRESSURE "Barometric pressure" +#define GAUGE_NAME_BOOST_CLOSED_LOOP "Boost: Closed loop" +#define GAUGE_NAME_BOOST_OPEN_LOOP "Boost: Open loop" +#define GAUGE_NAME_BOOST_OUTPUT "Boost: Output" +#define GAUGE_NAME_BOOST_TARGET "Boost: Target" +#define GAUGE_NAME_CAN_READ_OK "CAN: Rx" +#define GAUGE_NAME_CAN_WRITE_ERR "CAN: Tx err" +#define GAUGE_NAME_CAN_WRITE_OK "CAN: Tx OK" +#define GAUGE_NAME_CLT "CLT" +#define GAUGE_NAME_CPU_TEMP "CPU Temperature" +#define GAUGE_NAME_CURRENT_GEAR "TCU: Current Gear" +#define GAUGE_NAME_DEBUG_F1 "debug f1" +#define GAUGE_NAME_DEBUG_F2 "debug f2: iTerm" +#define GAUGE_NAME_DEBUG_F3 "debug f3: prevError" +#define GAUGE_NAME_DEBUG_F4 "debug f4: iParam" +#define GAUGE_NAME_DEBUG_F5 "debug f5: dParam" +#define GAUGE_NAME_DEBUG_F6 "debug f6: dTerm" +#define GAUGE_NAME_DEBUG_F7 "debug f7" +#define GAUGE_NAME_DEBUG_I1 "debug i1: pParam" +#define GAUGE_NAME_DEBUG_I2 "debug i2: offset" +#define GAUGE_NAME_DEBUG_I3 "debug i3" +#define GAUGE_NAME_DEBUG_I4 "debug i4" +#define GAUGE_NAME_DEBUG_I5 "debug i5" +#define GAUGE_NAME_DESIRED_GEAR "TCU: Desired Gear" +#define GAUGE_NAME_DETECTED_GEAR "Detected Gear" +#define GAUGE_NAME_DWELL_DUTY "Ignition: coil duty cycle" +#define GAUGE_NAME_ECU_TEMPERATURE "ECU temperature" +#define GAUGE_NAME_ENGINE_CRC16 "Engine CRC16" +#define GAUGE_NAME_ETB_DUTY "ETB: Duty" +#define GAUGE_NAME_ETB_ERROR "ETB: position error" +#define GAUGE_NAME_ETB_TARGET "ETB: position target" +#define GAUGE_NAME_FLEX "Flex Ethanol %" +#define GAUGE_NAME_FUEL_BARO_CORR "Fuel: Barometric pressure mult" +#define GAUGE_NAME_FUEL_BASE "Fuel: base cycle mass" +#define GAUGE_NAME_FUEL_CHARGE_TEMP "Fuel: Estimated charge temperature" +#define GAUGE_NAME_FUEL_CLT_CORR "Fuel: CLT correction" +#define GAUGE_NAME_FUEL_CONSUMPTION "Fuel: Total consumed" +#define GAUGE_NAME_FUEL_CRANKING "Fuel: cranking" +#define GAUGE_NAME_FUEL_FLOW "Fuel: Flow rate" +#define GAUGE_NAME_FUEL_IAT_CORR "Fuel: IAT correction" +#define GAUGE_NAME_FUEL_INJ_DUTY "Fuel: injector duty cycle" +#define GAUGE_NAME_FUEL_INJ_DUTY_STAGE_2 "Fuel: injector duty cycle stage 2" +#define GAUGE_NAME_FUEL_INJECTION_TIMING "Fuel: Injection timing SOI" +#define GAUGE_NAME_FUEL_LAST_INJECTION "Fuel: Last inj pulse width" +#define GAUGE_NAME_FUEL_LAST_INJECTION_STAGE_2 "Fuel: Last inj pulse width stg 2" +#define GAUGE_NAME_FUEL_LEVEL "Fuel level" +#define GAUGE_NAME_FUEL_LOAD "Fuel: Load" +#define GAUGE_NAME_FUEL_PRESSURE_HIGH "Fuel pressure (high)" +#define GAUGE_NAME_FUEL_PRESSURE_HIGH_UNITS "bar" +#define GAUGE_NAME_FUEL_PRESSURE_LOW "Fuel pressure (low)" +#define GAUGE_NAME_FUEL_PRESSURE_LOW_UNITS "kPa" +#define GAUGE_NAME_FUEL_RUNNING "Fuel: running" +#define GAUGE_NAME_FUEL_TEMPERATURE "Fuel Temperature" +#define GAUGE_NAME_FUEL_TPS_EXTRA "Fuel: TPS AE add fuel ms" +#define GAUGE_NAME_FUEL_TPS_ROC "Fuel: TPS change" +#define GAUGE_NAME_FUEL_TRIM "Fuel: fuel trim" +#define GAUGE_NAME_FUEL_TRIM_2 "Fuel: fuel trim 2" +#define GAUGE_NAME_FUEL_VE "Fuel: VE" +#define GAUGE_NAME_FUEL_WALL_AMOUNT "Fuel: wall amount" +#define GAUGE_NAME_FUEL_WALL_CORRECTION "Fuel: wall correction" +#define GAUGE_NAME_FW_VERSION "ECU Software Version" +#define GAUGE_NAME_GEAR_RATIO "Gearbox Ratio" +#define GAUGE_NAME_GYRO_YAW "Gyro: Yaw rate" +#define GAUGE_NAME_IAC "Idle: Position" +#define GAUGE_NAME_IAT "IAT" +#define GAUGE_NAME_IDLE_POSITION "Idle: Position sensor" +#define GAUGE_NAME_IGNITION_LOAD "Ignition: load" +#define GAUGE_NAME_IGNITION_MODE "Ignition: Mode" +#define GAUGE_NAME_INJECTION_MODE "Fuel: Injection mode" +#define GAUGE_NAME_INJECTOR_LAG "Fuel: injector lag" +#define GAUGE_NAME_ISS "TCU: Input Shaft Speed" +#define GAUGE_NAME_KNOCK_1 "knock 1" +#define GAUGE_NAME_KNOCK_10 "knock 10" +#define GAUGE_NAME_KNOCK_11 "knock 11" +#define GAUGE_NAME_KNOCK_12 "knock 12" +#define GAUGE_NAME_KNOCK_2 "knock 2" +#define GAUGE_NAME_KNOCK_3 "knock 3" +#define GAUGE_NAME_KNOCK_4 "knock 4" +#define GAUGE_NAME_KNOCK_5 "knock 5" +#define GAUGE_NAME_KNOCK_6 "knock 6" +#define GAUGE_NAME_KNOCK_7 "knock 7" +#define GAUGE_NAME_KNOCK_8 "knock 8" +#define GAUGE_NAME_KNOCK_9 "knock 9" +#define GAUGE_NAME_KNOCK_COUNTER "Knock: Count" +#define GAUGE_NAME_KNOCK_FREQ "knock: frequency" +#define GAUGE_NAME_KNOCK_LEVEL "Knock: Current level" +#define GAUGE_NAME_KNOCK_RETARD "Knock: Retard" +#define GAUGE_NAME_LAMBDA "Lambda" +#define GAUGE_NAME_LAMBDA2 "Lambda 2" +#define GAUGE_NAME_LAST_ERROR "Warning: last" +#define GAUGE_NAME_LUA_0 "Lua Gauge 1" +#define GAUGE_NAME_LUA_1 "Lua Gauge 2" +#define GAUGE_NAME_LUA_2 "Lua Gauge 3" +#define GAUGE_NAME_LUA_3 "Lua Gauge 4" +#define GAUGE_NAME_LUA_4 "Lua Gauge 5" +#define GAUGE_NAME_LUA_5 "Lua Gauge 6" +#define GAUGE_NAME_LUA_6 "Lua Gauge 7" +#define GAUGE_NAME_LUA_7 "Lua Gauge 8" +#define GAUGE_NAME_MAF "MAF" +#define GAUGE_NAME_MAP "MAP" +#define GAUGE_NAME_OIL_PRESSURE "Oil Pressure" +#define GAUGE_NAME_OIL_PRESSURE_UNITS "kPa" +#define GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH "Fuel pressure raw (high)" +#define GAUGE_NAME_RAW_FUEL_PRESSURE_LOW "Fuel pressure raw (low)" +#define GAUGE_NAME_RPM "RPM" +#define GAUGE_NAME_TARGET_AFR "Fuel: target AFR" +#define GAUGE_NAME_TARGET_LAMBDA "Fuel: target lambda" +#define GAUGE_NAME_TC_RATIO "TCU: Torque Converter Ratio" +#define GAUGE_NAME_TCHARGE "Air: SD tCharge" +#define GAUGE_NAME_THROTTLE_PEDAL "Throttle pedal position" +#define GAUGE_NAME_TIME "Time" +#define GAUGE_NAME_TIMING_ADVANCE "Timing: base ignition" +#define GAUGE_NAME_TPS "TPS" +#define GAUGE_NAME_TPS2 "TPS2" +#define GAUGE_NAME_TRG_ERR "Trigger Error Counter" +#define GAUGE_NAME_TRG_GAP "Trigger Sync Latest Ratio" +#define GAUGE_NAME_TUNE_CRC16 "Tune CRC16" +#define GAUGE_NAME_TURBO_SPEED "Turbocharger Speed" +#define GAUGE_NAME_UPTIME "Uptime" +#define GAUGE_NAME_VBAT "VBatt" +#define GAUGE_NAME_VERSION "firmware" +#define GAUGE_NAME_VVS "Vehicle Speed" +#define GAUGE_NAME_VVT_B1E "VVT: bank 1 exhaust" +#define GAUGE_NAME_VVT_B1I "VVT: bank 1 intake" +#define GAUGE_NAME_VVT_B2E "VVT: bank 2 exhaust" +#define GAUGE_NAME_VVT_B2I "VVT: bank 2 intake" +#define GAUGE_NAME_VVT_TARGET_B1E "VVT: bank 1 exhaust target" +#define GAUGE_NAME_VVT_TARGET_B1I "VVT: bank 1 intake target" +#define GAUGE_NAME_VVT_TARGET_B2E "VVT: bank 2 exhaust target" +#define GAUGE_NAME_VVT_TARGET_B2I "VVT: bank 2 intake target" +#define GAUGE_NAME_WARNING_COUNT "Warning count" +#define GAUGE_NAME_WARNING_COUNTER "Warning: counter" +#define GAUGE_NAME_WARNING_LAST "Warning: last" +#define GAUGE_NAME_WG_POSITION "Wastegate position sensor" +#define gear_controller_e_enum "None", "Button Shift", "Automatic", "Generic" +#define GEAR_DETECTION_DIALOG_NAME "Gear Detection" +#define gear_e_GEAR_1 1 +#define gear_e_GEAR_2 2 +#define gear_e_GEAR_3 3 +#define gear_e_GEAR_4 4 +#define gear_e_NEUTRAL 0 +#define gear_e_REVERSE -1 +#define GearControllerMode_auto_enum 0="None",2="Automatic",1="ButtonShift",3="Generic" +#define GearControllerMode_Automatic 2 +#define GearControllerMode_ButtonShift 1 +#define GearControllerMode_Generic 3 +#define GearControllerMode_None 0 +#define Gpio_A0 2 +#define Gpio_A1 3 +#define Gpio_A10 12 +#define Gpio_A11 13 +#define Gpio_A12 14 +#define Gpio_A13 15 +#define Gpio_A14 16 +#define Gpio_A15 17 +#define Gpio_A2 4 +#define Gpio_A3 5 +#define Gpio_A4 6 +#define Gpio_A5 7 +#define Gpio_A6 8 +#define Gpio_A7 9 +#define Gpio_A8 10 +#define Gpio_A9 11 +#define Gpio_auto_enum 0="Unassigned",2="A0",3="A1",12="A10",13="A11",14="A12",15="A13",16="A14",17="A15",4="A2",5="A3",6="A4",7="A5",8="A6",9="A7",10="A8",11="A9",18="B0",19="B1",28="B10",29="B11",30="B12",31="B13",32="B14",33="B15",20="B2",21="B3",22="B4",23="B5",24="B6",25="B7",26="B8",27="B9",34="C0",35="C1",44="C10",45="C11",46="C12",47="C13",48="C14",49="C15",36="C2",37="C3",38="C4",39="C5",40="C6",41="C7",42="C8",43="C9",249="CAN_PIN_0",250="CAN_PIN_1",251="CAN_PIN_2",252="CAN_PIN_3",253="CAN_PIN_4",254="CAN_PIN_5",255="CAN_PIN_6",256="CAN_PIN_7",50="D0",51="D1",60="D10",61="D11",62="D12",63="D13",64="D14",65="D15",52="D2",53="D3",54="D4",55="D5",56="D6",57="D7",58="D8",59="D9",66="E0",67="E1",76="E10",77="E11",78="E12",79="E13",80="E14",81="E15",68="E2",69="E3",70="E4",71="E5",72="E6",73="E7",74="E8",75="E9",82="F0",83="F1",92="F10",93="F11",94="F12",95="F13",96="F14",97="F15",84="F2",85="F3",86="F4",87="F5",88="F6",89="F7",90="F8",91="F9",98="G0",99="G1",108="G10",109="G11",110="G12",111="G13",112="G14",113="G15",100="G2",101="G3",102="G4",103="G5",104="G6",105="G7",106="G8",107="G9",114="H0",115="H1",124="H10",125="H11",126="H12",127="H13",128="H14",129="H15",116="H2",117="H3",118="H4",119="H5",120="H6",121="H7",122="H8",123="H9",130="I0",131="I1",140="I10",141="I11",142="I12",143="I13",144="I14",145="I15",132="I2",133="I3",134="I4",135="I5",136="I6",137="I7",138="I8",139="I9",1="Invalid",215="L9779_IGN_1",216="L9779_IGN_2",217="L9779_IGN_3",218="L9779_IGN_4",219="L9779_OUT_1",228="L9779_OUT_10",229="L9779_OUT_11",230="L9779_OUT_12",231="L9779_OUT_13",232="L9779_OUT_14",233="L9779_OUT_15",234="L9779_OUT_16",235="L9779_OUT_17",236="L9779_OUT_18",237="L9779_OUT_19",220="L9779_OUT_2",238="L9779_OUT_20",243="L9779_OUT_25",244="L9779_OUT_26",245="L9779_OUT_27",246="L9779_OUT_28",221="L9779_OUT_3",222="L9779_OUT_4",223="L9779_OUT_5",224="L9779_OUT_6",225="L9779_OUT_7",226="L9779_OUT_8",227="L9779_OUT_9",239="L9779_OUT_A",240="L9779_OUT_B",241="L9779_OUT_C",242="L9779_OUT_D",247="L9779_OUT_MRD",248="L9779_PIN_KEY",284="MC33810_0_GD_0",285="MC33810_0_GD_1",286="MC33810_0_GD_2",287="MC33810_0_GD_3",280="MC33810_0_OUT_0",281="MC33810_0_OUT_1",282="MC33810_0_OUT_2",283="MC33810_0_OUT_3",294="MC33810_1_GD_0",295="MC33810_1_GD_1",296="MC33810_1_GD_2",297="MC33810_1_GD_3",290="MC33810_1_OUT_0",291="MC33810_1_OUT_1",292="MC33810_1_OUT_2",293="MC33810_1_OUT_3",146="MC33972_PIN_1",155="MC33972_PIN_10",156="MC33972_PIN_11",157="MC33972_PIN_12",158="MC33972_PIN_13",159="MC33972_PIN_14",160="MC33972_PIN_15",161="MC33972_PIN_16",162="MC33972_PIN_17",163="MC33972_PIN_18",164="MC33972_PIN_19",147="MC33972_PIN_2",165="MC33972_PIN_20",166="MC33972_PIN_21",167="MC33972_PIN_22",148="MC33972_PIN_3",149="MC33972_PIN_4",150="MC33972_PIN_5",151="MC33972_PIN_6",152="MC33972_PIN_7",153="MC33972_PIN_8",154="MC33972_PIN_9",324="MSIOBOX_0_OUT_1",325="MSIOBOX_0_OUT_2",326="MSIOBOX_0_OUT_3",327="MSIOBOX_0_OUT_4",328="MSIOBOX_0_OUT_5",329="MSIOBOX_0_OUT_6",330="MSIOBOX_0_OUT_7",336="MSIOBOX_0_SW_1",337="MSIOBOX_0_SW_2",338="MSIOBOX_0_SW_3",332="MSIOBOX_0_VSS_1",333="MSIOBOX_0_VSS_2",334="MSIOBOX_0_VSS_3",335="MSIOBOX_0_VSS_4",257="PROTECTED_PIN_0",258="PROTECTED_PIN_1",267="PROTECTED_PIN_10",268="PROTECTED_PIN_11",269="PROTECTED_PIN_12",270="PROTECTED_PIN_13",271="PROTECTED_PIN_14",272="PROTECTED_PIN_15",259="PROTECTED_PIN_2",260="PROTECTED_PIN_3",261="PROTECTED_PIN_4",262="PROTECTED_PIN_5",263="PROTECTED_PIN_6",264="PROTECTED_PIN_7",265="PROTECTED_PIN_8",266="PROTECTED_PIN_9",199="TLE6240_PIN_1",208="TLE6240_PIN_10",209="TLE6240_PIN_11",210="TLE6240_PIN_12",211="TLE6240_PIN_13",212="TLE6240_PIN_14",213="TLE6240_PIN_15",214="TLE6240_PIN_16",200="TLE6240_PIN_2",201="TLE6240_PIN_3",202="TLE6240_PIN_4",203="TLE6240_PIN_5",204="TLE6240_PIN_6",205="TLE6240_PIN_7",206="TLE6240_PIN_8",207="TLE6240_PIN_9",168="TLE8888_PIN_1",177="TLE8888_PIN_10",178="TLE8888_PIN_11",179="TLE8888_PIN_12",180="TLE8888_PIN_13",181="TLE8888_PIN_14",182="TLE8888_PIN_15",183="TLE8888_PIN_16",184="TLE8888_PIN_17",185="TLE8888_PIN_18",186="TLE8888_PIN_19",169="TLE8888_PIN_2",187="TLE8888_PIN_20",188="TLE8888_PIN_21",189="TLE8888_PIN_22",190="TLE8888_PIN_23",191="TLE8888_PIN_24",192="TLE8888_PIN_25",193="TLE8888_PIN_26",194="TLE8888_PIN_27",195="TLE8888_PIN_28",170="TLE8888_PIN_3",171="TLE8888_PIN_4",172="TLE8888_PIN_5",173="TLE8888_PIN_6",174="TLE8888_PIN_7",175="TLE8888_PIN_8",176="TLE8888_PIN_9",197="TLE8888_PIN_KEY",196="TLE8888_PIN_MR",198="TLE8888_PIN_WAKE",300="TLE9104_0_OUT_0",301="TLE9104_0_OUT_1",302="TLE9104_0_OUT_2",303="TLE9104_0_OUT_3",304="TLE9104_1_OUT_0",305="TLE9104_1_OUT_1",306="TLE9104_1_OUT_2",307="TLE9104_1_OUT_3",308="TLE9104_2_OUT_0",309="TLE9104_2_OUT_1",310="TLE9104_2_OUT_2",311="TLE9104_2_OUT_3",312="TLE9104_3_OUT_0",313="TLE9104_3_OUT_1",314="TLE9104_3_OUT_2",315="TLE9104_3_OUT_3",316="TLE9104_4_OUT_0",317="TLE9104_4_OUT_1",318="TLE9104_4_OUT_2",319="TLE9104_4_OUT_3",320="TLE9104_5_OUT_0",321="TLE9104_5_OUT_1",322="TLE9104_5_OUT_2",323="TLE9104_5_OUT_3" +#define Gpio_B0 18 +#define Gpio_B1 19 +#define Gpio_B10 28 +#define Gpio_B11 29 +#define Gpio_B12 30 +#define Gpio_B13 31 +#define Gpio_B14 32 +#define Gpio_B15 33 +#define Gpio_B2 20 +#define Gpio_B3 21 +#define Gpio_B4 22 +#define Gpio_B5 23 +#define Gpio_B6 24 +#define Gpio_B7 25 +#define Gpio_B8 26 +#define Gpio_B9 27 +#define Gpio_C0 34 +#define Gpio_C1 35 +#define Gpio_C10 44 +#define Gpio_C11 45 +#define Gpio_C12 46 +#define Gpio_C13 47 +#define Gpio_C14 48 +#define Gpio_C15 49 +#define Gpio_C2 36 +#define Gpio_C3 37 +#define Gpio_C4 38 +#define Gpio_C5 39 +#define Gpio_C6 40 +#define Gpio_C7 41 +#define Gpio_C8 42 +#define Gpio_C9 43 +#define Gpio_CAN_PIN_0 249 +#define Gpio_CAN_PIN_1 250 +#define Gpio_CAN_PIN_2 251 +#define Gpio_CAN_PIN_3 252 +#define Gpio_CAN_PIN_4 253 +#define Gpio_CAN_PIN_5 254 +#define Gpio_CAN_PIN_6 255 +#define Gpio_CAN_PIN_7 256 +#define Gpio_D0 50 +#define Gpio_D1 51 +#define Gpio_D10 60 +#define Gpio_D11 61 +#define Gpio_D12 62 +#define Gpio_D13 63 +#define Gpio_D14 64 +#define Gpio_D15 65 +#define Gpio_D2 52 +#define Gpio_D3 53 +#define Gpio_D4 54 +#define Gpio_D5 55 +#define Gpio_D6 56 +#define Gpio_D7 57 +#define Gpio_D8 58 +#define Gpio_D9 59 +#define Gpio_E0 66 +#define Gpio_E1 67 +#define Gpio_E10 76 +#define Gpio_E11 77 +#define Gpio_E12 78 +#define Gpio_E13 79 +#define Gpio_E14 80 +#define Gpio_E15 81 +#define Gpio_E2 68 +#define Gpio_E3 69 +#define Gpio_E4 70 +#define Gpio_E5 71 +#define Gpio_E6 72 +#define Gpio_E7 73 +#define Gpio_E8 74 +#define Gpio_E9 75 +#define Gpio_enum "NONE", "INVALID", "PA0", "PA1", "PA2", "PA3", "PA4", "PA5", "PA6", "PA7", "PA8", "PA9", "PA10", "PA11", "PA12", "PA13", "PA14", "PA15", "PB0", "PB1", "PB2", "PB3", "PB4", "PB5", "PB6", "PB7", "PB8", "PB9", "PB10", "PB11", "PB12", "PB13", "PB14", "PB15", "PC0", "PC1", "PC2", "PC3", "PC4", "PC5", "PC6", "PC7", "PC8", "PC9", "PC10", "PC11", "PC12", "PC13", "PC14", "PC15", "PD0", "PD1", "PD2", "PD3", "PD4", "PD5", "PD6", "PD7", "PD8", "PD9", "PD10", "PD11", "PD12", "PD13", "PD14", "PD15", "PE0", "PE1", "PE2", "PE3", "PE4", "PE5", "PE6", "PE7", "PE8", "PE9", "PE10", "PE11", "PE12", "PE13", "PE14", "PE15", "PF0", "PF1", "PF2", "PF3", "PF4", "PF5", "PF6", "PF7", "PF8", "PF9", "PF10", "PF11", "PF12", "PF13", "PF14", "PF15", "PG0", "PG1", "PG2", "PG3", "PG4", "PG5", "PG6", "PG7", "PG8", "PG9", "PG10", "PG11", "PG12", "PG13", "PG14", "PG15", "PH0", "PH1", "PH2", "PH3", "PH4", "PH5", "PH6", "PH7", "PH8", "PH9", "PH10", "PH11", "PH12", "PH13", "PH14", "PH15", "PI0", "PI1", "PI2", "PI3", "PI4", "PI5", "PI6", "PI7", "PI8", "PI9", "PI10", "PI11", "PI12", "PI13", "PI14", "PI15" +#define Gpio_F0 82 +#define Gpio_F1 83 +#define Gpio_F10 92 +#define Gpio_F11 93 +#define Gpio_F12 94 +#define Gpio_F13 95 +#define Gpio_F14 96 +#define Gpio_F15 97 +#define Gpio_F2 84 +#define Gpio_F3 85 +#define Gpio_F4 86 +#define Gpio_F5 87 +#define Gpio_F6 88 +#define Gpio_F7 89 +#define Gpio_F8 90 +#define Gpio_F9 91 +#define Gpio_G0 98 +#define Gpio_G1 99 +#define Gpio_G10 108 +#define Gpio_G11 109 +#define Gpio_G12 110 +#define Gpio_G13 111 +#define Gpio_G14 112 +#define Gpio_G15 113 +#define Gpio_G2 100 +#define Gpio_G3 101 +#define Gpio_G4 102 +#define Gpio_G5 103 +#define Gpio_G6 104 +#define Gpio_G7 105 +#define Gpio_G8 106 +#define Gpio_G9 107 +#define Gpio_H0 114 +#define Gpio_H1 115 +#define Gpio_H10 124 +#define Gpio_H11 125 +#define Gpio_H12 126 +#define Gpio_H13 127 +#define Gpio_H14 128 +#define Gpio_H15 129 +#define Gpio_H2 116 +#define Gpio_H3 117 +#define Gpio_H4 118 +#define Gpio_H5 119 +#define Gpio_H6 120 +#define Gpio_H7 121 +#define Gpio_H8 122 +#define Gpio_H9 123 +#define Gpio_I0 130 +#define Gpio_I1 131 +#define Gpio_I10 140 +#define Gpio_I11 141 +#define Gpio_I12 142 +#define Gpio_I13 143 +#define Gpio_I14 144 +#define Gpio_I15 145 +#define Gpio_I2 132 +#define Gpio_I3 133 +#define Gpio_I4 134 +#define Gpio_I5 135 +#define Gpio_I6 136 +#define Gpio_I7 137 +#define Gpio_I8 138 +#define Gpio_I9 139 +#define Gpio_Invalid 1 +#define Gpio_L9779_IGN_1 215 +#define Gpio_L9779_IGN_2 216 +#define Gpio_L9779_IGN_3 217 +#define Gpio_L9779_IGN_4 218 +#define Gpio_L9779_OUT_1 219 +#define Gpio_L9779_OUT_10 228 +#define Gpio_L9779_OUT_11 229 +#define Gpio_L9779_OUT_12 230 +#define Gpio_L9779_OUT_13 231 +#define Gpio_L9779_OUT_14 232 +#define Gpio_L9779_OUT_15 233 +#define Gpio_L9779_OUT_16 234 +#define Gpio_L9779_OUT_17 235 +#define Gpio_L9779_OUT_18 236 +#define Gpio_L9779_OUT_19 237 +#define Gpio_L9779_OUT_2 220 +#define Gpio_L9779_OUT_20 238 +#define Gpio_L9779_OUT_25 243 +#define Gpio_L9779_OUT_26 244 +#define Gpio_L9779_OUT_27 245 +#define Gpio_L9779_OUT_28 246 +#define Gpio_L9779_OUT_3 221 +#define Gpio_L9779_OUT_4 222 +#define Gpio_L9779_OUT_5 223 +#define Gpio_L9779_OUT_6 224 +#define Gpio_L9779_OUT_7 225 +#define Gpio_L9779_OUT_8 226 +#define Gpio_L9779_OUT_9 227 +#define Gpio_L9779_OUT_A 239 +#define Gpio_L9779_OUT_B 240 +#define Gpio_L9779_OUT_C 241 +#define Gpio_L9779_OUT_D 242 +#define Gpio_L9779_OUT_MRD 247 +#define Gpio_L9779_PIN_KEY 248 +#define Gpio_MC33810_0_GD_0 284 +#define Gpio_MC33810_0_GD_1 285 +#define Gpio_MC33810_0_GD_2 286 +#define Gpio_MC33810_0_GD_3 287 +#define Gpio_MC33810_0_OUT_0 280 +#define Gpio_MC33810_0_OUT_1 281 +#define Gpio_MC33810_0_OUT_2 282 +#define Gpio_MC33810_0_OUT_3 283 +#define Gpio_MC33810_1_GD_0 294 +#define Gpio_MC33810_1_GD_1 295 +#define Gpio_MC33810_1_GD_2 296 +#define Gpio_MC33810_1_GD_3 297 +#define Gpio_MC33810_1_OUT_0 290 +#define Gpio_MC33810_1_OUT_1 291 +#define Gpio_MC33810_1_OUT_2 292 +#define Gpio_MC33810_1_OUT_3 293 +#define Gpio_MC33972_PIN_1 146 +#define Gpio_MC33972_PIN_10 155 +#define Gpio_MC33972_PIN_11 156 +#define Gpio_MC33972_PIN_12 157 +#define Gpio_MC33972_PIN_13 158 +#define Gpio_MC33972_PIN_14 159 +#define Gpio_MC33972_PIN_15 160 +#define Gpio_MC33972_PIN_16 161 +#define Gpio_MC33972_PIN_17 162 +#define Gpio_MC33972_PIN_18 163 +#define Gpio_MC33972_PIN_19 164 +#define Gpio_MC33972_PIN_2 147 +#define Gpio_MC33972_PIN_20 165 +#define Gpio_MC33972_PIN_21 166 +#define Gpio_MC33972_PIN_22 167 +#define Gpio_MC33972_PIN_3 148 +#define Gpio_MC33972_PIN_4 149 +#define Gpio_MC33972_PIN_5 150 +#define Gpio_MC33972_PIN_6 151 +#define Gpio_MC33972_PIN_7 152 +#define Gpio_MC33972_PIN_8 153 +#define Gpio_MC33972_PIN_9 154 +#define Gpio_MSIOBOX_0_OUT_1 324 +#define Gpio_MSIOBOX_0_OUT_2 325 +#define Gpio_MSIOBOX_0_OUT_3 326 +#define Gpio_MSIOBOX_0_OUT_4 327 +#define Gpio_MSIOBOX_0_OUT_5 328 +#define Gpio_MSIOBOX_0_OUT_6 329 +#define Gpio_MSIOBOX_0_OUT_7 330 +#define Gpio_MSIOBOX_0_SW_1 336 +#define Gpio_MSIOBOX_0_SW_2 337 +#define Gpio_MSIOBOX_0_SW_3 338 +#define Gpio_MSIOBOX_0_VSS_1 332 +#define Gpio_MSIOBOX_0_VSS_2 333 +#define Gpio_MSIOBOX_0_VSS_3 334 +#define Gpio_MSIOBOX_0_VSS_4 335 +#define Gpio_PROTECTED_PIN_0 257 +#define Gpio_PROTECTED_PIN_1 258 +#define Gpio_PROTECTED_PIN_10 267 +#define Gpio_PROTECTED_PIN_11 268 +#define Gpio_PROTECTED_PIN_12 269 +#define Gpio_PROTECTED_PIN_13 270 +#define Gpio_PROTECTED_PIN_14 271 +#define Gpio_PROTECTED_PIN_15 272 +#define Gpio_PROTECTED_PIN_2 259 +#define Gpio_PROTECTED_PIN_3 260 +#define Gpio_PROTECTED_PIN_4 261 +#define Gpio_PROTECTED_PIN_5 262 +#define Gpio_PROTECTED_PIN_6 263 +#define Gpio_PROTECTED_PIN_7 264 +#define Gpio_PROTECTED_PIN_8 265 +#define Gpio_PROTECTED_PIN_9 266 +#define Gpio_TLE6240_PIN_1 199 +#define Gpio_TLE6240_PIN_10 208 +#define Gpio_TLE6240_PIN_11 209 +#define Gpio_TLE6240_PIN_12 210 +#define Gpio_TLE6240_PIN_13 211 +#define Gpio_TLE6240_PIN_14 212 +#define Gpio_TLE6240_PIN_15 213 +#define Gpio_TLE6240_PIN_16 214 +#define Gpio_TLE6240_PIN_2 200 +#define Gpio_TLE6240_PIN_3 201 +#define Gpio_TLE6240_PIN_4 202 +#define Gpio_TLE6240_PIN_5 203 +#define Gpio_TLE6240_PIN_6 204 +#define Gpio_TLE6240_PIN_7 205 +#define Gpio_TLE6240_PIN_8 206 +#define Gpio_TLE6240_PIN_9 207 +#define Gpio_TLE8888_PIN_1 168 +#define Gpio_TLE8888_PIN_10 177 +#define Gpio_TLE8888_PIN_11 178 +#define Gpio_TLE8888_PIN_12 179 +#define Gpio_TLE8888_PIN_13 180 +#define Gpio_TLE8888_PIN_14 181 +#define Gpio_TLE8888_PIN_15 182 +#define Gpio_TLE8888_PIN_16 183 +#define Gpio_TLE8888_PIN_17 184 +#define Gpio_TLE8888_PIN_18 185 +#define Gpio_TLE8888_PIN_19 186 +#define Gpio_TLE8888_PIN_2 169 +#define Gpio_TLE8888_PIN_20 187 +#define Gpio_TLE8888_PIN_21 188 +#define Gpio_TLE8888_PIN_22 189 +#define Gpio_TLE8888_PIN_23 190 +#define Gpio_TLE8888_PIN_24 191 +#define Gpio_TLE8888_PIN_25 192 +#define Gpio_TLE8888_PIN_26 193 +#define Gpio_TLE8888_PIN_27 194 +#define Gpio_TLE8888_PIN_28 195 +#define Gpio_TLE8888_PIN_3 170 +#define Gpio_TLE8888_PIN_4 171 +#define Gpio_TLE8888_PIN_5 172 +#define Gpio_TLE8888_PIN_6 173 +#define Gpio_TLE8888_PIN_7 174 +#define Gpio_TLE8888_PIN_8 175 +#define Gpio_TLE8888_PIN_9 176 +#define Gpio_TLE8888_PIN_KEY 197 +#define Gpio_TLE8888_PIN_MR 196 +#define Gpio_TLE8888_PIN_WAKE 198 +#define Gpio_TLE9104_0_OUT_0 300 +#define Gpio_TLE9104_0_OUT_1 301 +#define Gpio_TLE9104_0_OUT_2 302 +#define Gpio_TLE9104_0_OUT_3 303 +#define Gpio_TLE9104_1_OUT_0 304 +#define Gpio_TLE9104_1_OUT_1 305 +#define Gpio_TLE9104_1_OUT_2 306 +#define Gpio_TLE9104_1_OUT_3 307 +#define Gpio_TLE9104_2_OUT_0 308 +#define Gpio_TLE9104_2_OUT_1 309 +#define Gpio_TLE9104_2_OUT_2 310 +#define Gpio_TLE9104_2_OUT_3 311 +#define Gpio_TLE9104_3_OUT_0 312 +#define Gpio_TLE9104_3_OUT_1 313 +#define Gpio_TLE9104_3_OUT_2 314 +#define Gpio_TLE9104_3_OUT_3 315 +#define Gpio_TLE9104_4_OUT_0 316 +#define Gpio_TLE9104_4_OUT_1 317 +#define Gpio_TLE9104_4_OUT_2 318 +#define Gpio_TLE9104_4_OUT_3 319 +#define Gpio_TLE9104_5_OUT_0 320 +#define Gpio_TLE9104_5_OUT_1 321 +#define Gpio_TLE9104_5_OUT_2 322 +#define Gpio_TLE9104_5_OUT_3 323 +#define Gpio_Unassigned 0 +#define GPPWM_1_NAME "General Purpose PWM 1" +#define GPPWM_2_NAME "General Purpose PWM 2" +#define GPPWM_3_NAME "General Purpose PWM 3" +#define GPPWM_4_NAME "General Purpose PWM 4" +#define gppwm_channel_e_auto_enum 0="GPPWM_Zero",9="GPPWM_AccelPedal",16="GPPWM_AuxLinear1",17="GPPWM_AuxLinear2",29="GPPWM_AuxLinear3",30="GPPWM_AuxLinear4",7="GPPWM_AuxTemp1",8="GPPWM_AuxTemp2",26="GPPWM_BaroPressure",3="GPPWM_Clt",25="GPPWM_DetectedGear",27="GPPWM_Egt1",28="GPPWM_Egt2",15="GPPWM_EthanolPercent",5="GPPWM_FuelLoad",18="GPPWM_GppwmOutput1",19="GPPWM_GppwmOutput2",20="GPPWM_GppwmOutput3",21="GPPWM_GppwmOutput4",4="GPPWM_Iat",6="GPPWM_IgnLoad",22="GPPWM_LuaGauge1",23="GPPWM_LuaGauge2",2="GPPWM_Map",24="GPPWM_Rpm",1="GPPWM_Tps",12="GPPWM_VVT_1E",11="GPPWM_VVT_1I",14="GPPWM_VVT_2E",13="GPPWM_VVT_2I",10="GPPWM_Vbatt",31="GPPWM_VehicleSpeed" +#define gppwm_channel_e_enum "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +#define gppwm_channel_e_GPPWM_AccelPedal 9 +#define gppwm_channel_e_GPPWM_AuxLinear1 16 +#define gppwm_channel_e_GPPWM_AuxLinear2 17 +#define gppwm_channel_e_GPPWM_AuxLinear3 29 +#define gppwm_channel_e_GPPWM_AuxLinear4 30 +#define gppwm_channel_e_GPPWM_AuxTemp1 7 +#define gppwm_channel_e_GPPWM_AuxTemp2 8 +#define gppwm_channel_e_GPPWM_BaroPressure 26 +#define gppwm_channel_e_GPPWM_Clt 3 +#define gppwm_channel_e_GPPWM_DetectedGear 25 +#define gppwm_channel_e_GPPWM_Egt1 27 +#define gppwm_channel_e_GPPWM_Egt2 28 +#define gppwm_channel_e_GPPWM_EthanolPercent 15 +#define gppwm_channel_e_GPPWM_FuelLoad 5 +#define gppwm_channel_e_GPPWM_GppwmOutput1 18 +#define gppwm_channel_e_GPPWM_GppwmOutput2 19 +#define gppwm_channel_e_GPPWM_GppwmOutput3 20 +#define gppwm_channel_e_GPPWM_GppwmOutput4 21 +#define gppwm_channel_e_GPPWM_Iat 4 +#define gppwm_channel_e_GPPWM_IgnLoad 6 +#define gppwm_channel_e_GPPWM_LuaGauge1 22 +#define gppwm_channel_e_GPPWM_LuaGauge2 23 +#define gppwm_channel_e_GPPWM_Map 2 +#define gppwm_channel_e_GPPWM_Rpm 24 +#define gppwm_channel_e_GPPWM_Tps 1 +#define gppwm_channel_e_GPPWM_Vbatt 10 +#define gppwm_channel_e_GPPWM_VehicleSpeed 31 +#define gppwm_channel_e_GPPWM_VVT_1E 12 +#define gppwm_channel_e_GPPWM_VVT_1I 11 +#define gppwm_channel_e_GPPWM_VVT_2E 14 +#define gppwm_channel_e_GPPWM_VVT_2I 13 +#define gppwm_channel_e_GPPWM_Zero 0 +#define gppwm_channel_size 108 +#define GPPWM_CHANNELS 4 +#define gppwm_compare_mode_e_GPPWM_GreaterThan 0 +#define gppwm_compare_mode_e_GPPWM_LessThan 1 +#define GPPWM_LOAD_COUNT 8 +#define GPPWM_NOTE_SIZE 16 +#define GPPWM_RPM_COUNT 8 +#define HD_MENU_NAME "Harley" +#define HIGH_SPEED_COUNT 32 +#define hpfp_cam_e_auto_enum 0="HPFP_CAM_NONE",2="HPFP_CAM_EX1",4="HPFP_CAM_EX2",1="HPFP_CAM_IN1",3="HPFP_CAM_IN2" +#define hpfp_cam_e_enum "NONE", "Intake 1", "Exhaust 1", "Intake 2", "Exhaust 2" +#define hpfp_cam_e_HPFP_CAM_EX1 2 +#define hpfp_cam_e_HPFP_CAM_EX2 4 +#define hpfp_cam_e_HPFP_CAM_IN1 1 +#define hpfp_cam_e_HPFP_CAM_IN2 3 +#define hpfp_cam_e_HPFP_CAM_NONE 0 +#define HPFP_COMPENSATION_SIZE 10 +#define HPFP_DEADTIME_SIZE 8 +#define HPFP_LOBE_PROFILE_SIZE 16 +#define HPFP_TARGET_SIZE 10 +#define IAC_PID_MULT_SIZE 8 +#define IAT_CURVE_SIZE 16 +#define IDLE_ADVANCE_CURVE_SIZE 8 +#define idle_hardware_s_size 12 +#define idle_mode_e_auto_enum 0="IM_AUTO",1="IM_MANUAL" +#define idle_mode_e_IM_AUTO 0 +#define idle_mode_e_IM_MANUAL 1 +#define idle_state_e_BLIP 64 +#define idle_state_e_INIT 0 +#define idle_state_e_PID_UPPER 16 +#define idle_state_e_PID_VALUE 4 +#define idle_state_e_RPM_DEAD_ZONE 2 +#define idle_state_e_TPS_THRESHOLD 1 +#define IDLE_VE_SIZE 4 +#define IGN_BLEND_COUNT 4 +#define ign_cyl_trim_s_size 16 +#define IGN_LOAD_COUNT 16 +#define IGN_RPM_COUNT 16 +#define IGN_TRIM_SIZE 4 +#define ignition_mode_e_auto_enum 0="IM_ONE_COIL",1="IM_INDIVIDUAL_COILS",3="IM_TWO_COILS",2="IM_WASTED_SPARK" +#define ignition_mode_e_IM_INDIVIDUAL_COILS 1 +#define ignition_mode_e_IM_ONE_COIL 0 +#define ignition_mode_e_IM_TWO_COILS 3 +#define ignition_mode_e_IM_WASTED_SPARK 2 +#define IGNITION_OUTPUT "Ignition Output" +#define imu_type_e_auto_enum 0="IMU_NONE",2="IMU_MM5_10",3="IMU_TYPE_3",4="IMU_TYPE_4",5="IMU_TYPE_MB_A0065422618",1="IMU_VAG" +#define imu_type_e_IMU_MM5_10 2 +#define imu_type_e_IMU_NONE 0 +#define imu_type_e_IMU_TYPE_3 3 +#define imu_type_e_IMU_TYPE_4 4 +#define imu_type_e_IMU_TYPE_MB_A0065422618 5 +#define imu_type_e_IMU_VAG 1 +#define INDICATOR_NAME_AC_SWITCH "AC switch" +#define INDICATOR_NAME_BRAKE_DOWN "Brake switch" +#define INDICATOR_NAME_CLUTCH_DOWN "Clutch: down" +#define INDICATOR_NAME_CLUTCH_UP "Clutch: up" +#define INJ_STAGING_COUNT 6 +#define injection_mode_e_auto_enum 0="IM_SIMULTANEOUS",2="IM_BATCH",1="IM_SEQUENTIAL",3="IM_SINGLE_POINT" +#define injection_mode_e_IM_BATCH 2 +#define injection_mode_e_IM_SEQUENTIAL 1 +#define injection_mode_e_IM_SIMULTANEOUS 0 +#define injection_mode_e_IM_SINGLE_POINT 3 +#define InjectionTimingMode_auto_enum 0="End",2="Center",1="Start" +#define InjectionTimingMode_Center 2 +#define InjectionTimingMode_End 0 +#define InjectionTimingMode_Start 1 +#define INJECTOR_1_NAME "Injector #1" +#define INJECTOR_2_NAME "Injector #2" +#define injector_compensation_mode_e_auto_enum 0="ICM_None",1="ICM_FixedRailPressure",2="ICM_SensedRailPressure" +#define injector_compensation_mode_e_ICM_FixedRailPressure 1 +#define injector_compensation_mode_e_ICM_None 0 +#define injector_compensation_mode_e_ICM_SensedRailPressure 2 +#define injector_pressure_type_e_auto_enum 0="IPT_Low",1="IPT_High" +#define injector_pressure_type_e_IPT_High 1 +#define injector_pressure_type_e_IPT_Low 0 +#define injector_s_size 68 +#define InjectorNonlinearMode_auto_enum 0="INJ_None",2="INJ_FordModel",1="INJ_PolynomialAdder" +#define InjectorNonlinearMode_INJ_FordModel 2 +#define InjectorNonlinearMode_INJ_None 0 +#define InjectorNonlinearMode_INJ_PolynomialAdder 1 +#define KNOCK_TABLE_SIZE 6 +#define launchActivationMode_e_ALWAYS_ACTIVE_LAUNCH 2 +#define launchActivationMode_e_auto_enum 0="SWITCH_INPUT_LAUNCH",2="ALWAYS_ACTIVE_LAUNCH",1="CLUTCH_INPUT_LAUNCH",3="STOP_INPUT_LAUNCH" +#define launchActivationMode_e_CLUTCH_INPUT_LAUNCH 1 +#define launchActivationMode_e_enum "Launch Button", "Clutch Down Switch", "Speed Based", "Brake Pedal" +#define launchActivationMode_e_STOP_INPUT_LAUNCH 3 +#define launchActivationMode_e_SWITCH_INPUT_LAUNCH 0 +#define linear_sensor_s_size 20 +#define load_override_e_AFR_AccPedal 3 +#define load_override_e_AFR_CylFilling 4 +#define load_override_e_AFR_MAP 1 +#define load_override_e_AFR_None 0 +#define load_override_e_AFR_Tps 2 +#define load_override_e_auto_enum 0="AFR_None",3="AFR_AccPedal",4="AFR_CylFilling",1="AFR_MAP",2="AFR_Tps" +#define load_override_e_enum "None", "MAP", "TPS", "Acc Pedal", "Cyl Filling %" +#define LOG_DELIMITER "`" +#define LOGIC_ANALYZER_CHANNEL_COUNT 4 +#define LUA_ANALOG_INPUT_COUNT 8 +#define LUA_DIGITAL_INPUT_COUNT 8 +#define LUA_GAUGE_COUNT 8 +#define LUA_PWM_COUNT 8 +#define LUA_SCRIPT_SIZE 8000 +#define MAF_DECODING_COUNT 32 +#define maf_sensor_type_e_auto_enum 0="CUSTOM",2="Bosch0280218004",1="Bosch0280218037",3="DensoTODO" +#define maf_sensor_type_e_Bosch0280218004 2 +#define maf_sensor_type_e_Bosch0280218037 1 +#define maf_sensor_type_e_CUSTOM 0 +#define maf_sensor_type_e_DensoTODO 3 +#define maf_sensor_type_e_enum "v0", "v1", "v2", "v3" +#define MAIN_HELP_URL "http://www.rusefi.com/" +#define MAP_ANGLE_SIZE 8 +#define MAP_sensor_config_s_size 140 +#define MAP_UPPER_LIMIT 1000 +#define MAP_WINDOW_SIZE 8 +#define MAX_CYLINDER_COUNT 12 +#define MAX_TPS_PPS_DISCREPANCY 5 +#define mc33810maxDwellTimer_e_auto_enum 0="DWELL_2MS",3="DWELL_16MS",4="DWELL_32MS",1="DWELL_4MS",5="DWELL_64MS",2="DWELL_8MS" +#define mc33810maxDwellTimer_e_DWELL_16MS 3 +#define mc33810maxDwellTimer_e_DWELL_2MS 0 +#define mc33810maxDwellTimer_e_DWELL_32MS 4 +#define mc33810maxDwellTimer_e_DWELL_4MS 1 +#define mc33810maxDwellTimer_e_DWELL_64MS 5 +#define mc33810maxDwellTimer_e_DWELL_8MS 2 +#define MENU_NAME_AUX_TEMP1 "AuxTemp1 sensor" +#define MENU_NAME_AUX_TEMP2 "AuxTemp2 sensor" +#define MLQ_FIELD_HEADER_SIZE 89 +#define MLQ_HEADER_SIZE 24 +#define MsIoBox_config_s_size 4 +#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240" +#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)" +#define MsIoBoxId_ID200 1 +#define MsIoBoxId_ID220 2 +#define MsIoBoxId_ID240 3 +#define MsIoBoxId_OFF 0 +#define MsIoBoxVss_ALL1234 3 +#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12" +#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)" +#define MsIoBoxVss_HALL34 2 +#define MsIoBoxVss_OFF 0 +#define MsIoBoxVss_VR12 1 +#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2 +#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1 +#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7 +#define operation_mode_e_FOUR_STROKE_SYMMETRICAL_CRANK_SENSOR 4 +#define operation_mode_e_FOUR_STROKE_THREE_TIMES_CRANK_SENSOR 5 +#define operation_mode_e_FOUR_STROKE_TWELVE_TIMES_CRANK_SENSOR 6 +#define operation_mode_e_OM_NONE 0 +#define operation_mode_e_TWO_STROKE 3 +#define output_pin_e_enum 0="NONE",32="B14 Output" +#define output_pin_e_fullenum "NONE","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","B14 Output" +#define PACK_ADD_TEMPERATURE 40 +#define PACK_MULT_AFR 1000 +#define PACK_MULT_AFR_CFG 10 +#define PACK_MULT_ANGLE 50 +#define PACK_MULT_EGTEMPERATURE 4 +#define PACK_MULT_FLEX 2 +#define PACK_MULT_FUEL_FLOW 200 +#define PACK_MULT_FUEL_MASS 100 +#define PACK_MULT_HIGH_PRESSURE 10 +#define PACK_MULT_LAMBDA 10000 +#define PACK_MULT_LAMBDA_CFG 147 +#define PACK_MULT_MASS_FLOW 10 +#define PACK_MULT_MS 300 +#define PACK_MULT_PERCENT 100 +#define PACK_MULT_PRESSURE 30 +#define PACK_MULT_TEMPERATURE 100 +#define PACK_MULT_VOLTAGE 1000 +#define PACK_MULT_VSS 100 +#define PACK_PERCENT_BYTE_MULT 100.0 +#define PEDAL_TO_TPS_SIZE 8 +#define pedalSensor_NAME "Accelerator pedal" +#define pedalToTpsTbl_NAME "ETB pedal target" +#define PERCENT_TRIM_BYTE_PACKING_DIV 0.02 +#define persistent_config_s_size 22960 +#define pid_s_size 20 +#define pin_input_mode_e_auto_enum 0="PI_DEFAULT",2="PI_PULLDOWN",1="PI_PULLUP" +#define pin_input_mode_e_enum "DEFAULT", "PULLUP", "PULLDOWN" +#define pin_input_mode_e_PI_DEFAULT 0 +#define pin_input_mode_e_PI_PULLDOWN 2 +#define pin_input_mode_e_PI_PULLUP 1 +#define pin_mode_e_enum "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN" +#define pin_output_mode_e_auto_enum 0="OM_DEFAULT",1="OM_INVERTED",2="OM_OPENDRAIN",3="OM_OPENDRAIN_INVERTED" +#define pin_output_mode_e_enum "default", "default inverted", "open collector", "open collector inverted" +#define pin_output_mode_e_OM_DEFAULT 0 +#define pin_output_mode_e_OM_INVERTED 1 +#define pin_output_mode_e_OM_OPENDRAIN 2 +#define pin_output_mode_e_OM_OPENDRAIN_INVERTED 3 +#define PRIME_CURVE_COUNT 8 +#define PROTOCOL_ANALOG_CHART "analog_chart" +#define PROTOCOL_COIL_SHORT_PREFIX "c" +#define PROTOCOL_CRANK1 "t1" +#define PROTOCOL_CRANK2 "t2" +#define PROTOCOL_ENGINE_SNIFFER "wave_chart" +#define PROTOCOL_ES_DOWN "d" +#define PROTOCOL_ES_UP "u" +#define PROTOCOL_HELLO_PREFIX "***" +#define PROTOCOL_INJ_SHORT_PREFIX "i" +#define PROTOCOL_INJ_STAGE2_SHORT_PREFIX "j" +#define PROTOCOL_MSG "msg" +#define PROTOCOL_OUTPIN "outpin" +#define PROTOCOL_SIGNATURE_PREFIX "rusEFI " +#define PROTOCOL_TEST_RESPONSE_TAG "ts_p_alive" +#define PROTOCOL_VERSION_TAG "rusEfiVersion" +#define RANGE_INPUT_COUNT 6 +#define REBOOT_COMMAND 0xbb +#define SCRIPT_CURVE_16 16 +#define SCRIPT_CURVE_8 8 +#define SCRIPT_CURVE_COUNT 6 +#define SCRIPT_SETTING_COUNT 8 +#define SCRIPT_TABLE_8 8 +#define SCRIPT_TABLE_COUNT 4 +#define SelectedGear_Drive 6 +#define SelectedGear_Invalid 0 +#define SelectedGear_Low 11 +#define SelectedGear_Manual 7 +#define SelectedGear_Manual1 10 +#define SelectedGear_Manual2 9 +#define SelectedGear_Manual3 8 +#define SelectedGear_ManualMinus 2 +#define SelectedGear_ManualPlus 1 +#define SelectedGear_Neutral 5 +#define SelectedGear_Park 3 +#define SelectedGear_Reverse 4 +#define sensor_chart_e_auto_enum 0="SC_OFF",5="SC_AUX_FAST1",4="SC_DETAILED_RPM",3="SC_RPM_ACCEL",1="SC_TRIGGER" +#define sensor_chart_e_enum "none", "trigger", "INVALID", "RPM ACCEL", "DETAILED RPM", "Fast Aux1" +#define sensor_chart_e_SC_AUX_FAST1 5 +#define sensor_chart_e_SC_DETAILED_RPM 4 +#define sensor_chart_e_SC_OFF 0 +#define sensor_chart_e_SC_RPM_ACCEL 3 +#define sensor_chart_e_SC_TRIGGER 1 +#define SENT_INPUT_COUNT 1 +#define sent_input_pin_e_enum "NONE", "INVALID", "PA0", "PA1", "PA2", "PA3", "PA4", "PA5", "PA6", "PA7", "PA8", "PA9", "PA10", "PA11", "PA12", "PA13", "PA14", "PA15", "PB0", "PB1", "PB2", "PB3", "PB4", "PB5", "PB6", "PB7", "PB8", "PB9", "PB10", "PB11", "PB12", "PB13", "PB14", "PB15", "PC0", "PC1", "PC2", "PC3", "PC4", "PC5", "PC6", "PC7", "PC8", "PC9", "PC10", "PC11", "PC12", "PC13", "PC14", "PC15", "PD0", "PD1", "PD2", "PD3", "PD4", "PD5", "PD6", "PD7", "PD8", "PD9", "PD10", "PD11", "PD12", "PD13", "PD14", "PD15", "PE0", "PE1", "PE2", "PE3", "PE4", "PE5", "PE6", "PE7", "PE8", "PE9", "PE10", "PE11", "PE12", "PE13", "PE14", "PE15", "PF0", "PF1", "PF2", "PF3", "PF4", "PF5", "PF6", "PF7", "PF8", "PF9", "PF10", "PF11", "PF12", "PF13", "PF14", "PF15", "PG0", "PG1", "PG2", "PG3", "PG4", "PG5", "PG6", "PG7", "PG8", "PG9", "PG10", "PG11", "PG12", "PG13", "PG14", "PG15", "PH0", "PH1", "PH2", "PH3", "PH4", "PH5", "PH6", "PH7", "PH8", "PH9", "PH10", "PH11", "PH12", "PH13", "PH14", "PH15", "PI0", "PI1", "PI2", "PI3", "PI4", "PI5", "PI6", "PI7", "PI8", "PI9", "PI10", "PI11", "PI12", "PI13", "PI14", "PI15" +#define SentEtbType_auto_enum 0="NONE",3="CUSTOM",2="FORD_TYPE_1",1="GM_TYPE_1" +#define SentEtbType_CUSTOM 3 +#define SentEtbType_enum "None", "GM type 1", "Ford type 1", "Custom" +#define SentEtbType_FORD_TYPE_1 2 +#define SentEtbType_GM_TYPE_1 1 +#define SentEtbType_NONE 0 +#define show_tcu_gauges false +#define show_vvt_output_pin true +#define SIGNATURE_HASH 1351942270 +#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" +#define smLaunchControl_NAME "Launch Control" +#define spi_device_e_auto_enum 0="SPI_NONE",1="SPI_DEVICE_1",2="SPI_DEVICE_2",3="SPI_DEVICE_3",4="SPI_DEVICE_4",5="SPI_DEVICE_5",6="SPI_DEVICE_6" +#define spi_device_e_SPI_DEVICE_1 1 +#define spi_device_e_SPI_DEVICE_2 2 +#define spi_device_e_SPI_DEVICE_3 3 +#define spi_device_e_SPI_DEVICE_4 4 +#define spi_device_e_SPI_DEVICE_5 5 +#define spi_device_e_SPI_DEVICE_6 6 +#define spi_device_e_SPI_NONE 0 +#define spi_speed_e__150KHz 3 +#define spi_speed_e__1_25MHz 2 +#define spi_speed_e__2_5MHz 1 +#define spi_speed_e__5MHz 0 +#define stepper_num_micro_steps_e_auto_enum 0="STEPPER_FULL",8="STEPPER_EIGHTH",4="STEPPER_FOURTH",2="STEPPER_HALF" +#define stepper_num_micro_steps_e_enum "Full-Step (Default)", "INVALID", "Half-Step", "INVALID", "1/4 Micro-Step", "INVALID", "INVALID", "INVALID", "1/8 Micro-Step" +#define stepper_num_micro_steps_e_STEPPER_EIGHTH 8 +#define stepper_num_micro_steps_e_STEPPER_FOURTH 4 +#define stepper_num_micro_steps_e_STEPPER_FULL 0 +#define stepper_num_micro_steps_e_STEPPER_HALF 2 +#define STFT_BANK_COUNT 2 +#define stft_cell_cfg_s_size 4 +#define STFT_CELL_COUNT 4 +#define stft_s_size 28 +#define switch_input_pin_e_enum 0="NONE",68="VR/Hall 1 (E2)",69="VR/Hall 2 (E3)",70="VR/Hall 3 (E4)" +#define switch_input_pin_e_fullenum "NONE","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","VR/Hall 1 (E2)","VR/Hall 2 (E3)","VR/Hall 3 (E4)" +#define TABLE_2_LOAD_SIZE 8 +#define TABLE_2_RPM_SIZE 8 +#define TABLE_3_LOAD_SIZE 8 +#define TABLE_3_RPM_SIZE 8 +#define TABLE_4_RPM 10 +#define tChargeMode_e_auto_enum 0="TCHARGE_MODE_RPM_TPS",1="TCHARGE_MODE_AIR_INTERP",2="TCHARGE_MODE_AIR_INTERP_TABLE" +#define tChargeMode_e_enum "RPM+TPS (Default)", "Air Mass Interpolation", "Table" +#define tChargeMode_e_TCHARGE_MODE_AIR_INTERP 1 +#define tChargeMode_e_TCHARGE_MODE_AIR_INTERP_TABLE 2 +#define tChargeMode_e_TCHARGE_MODE_RPM_TPS 0 +#define TCU_GEAR_COUNT 10 +#define TCU_RANGE_COUNT 11 +#define TCU_SOLENOID_COUNT 6 +#define TCU_TABLE_WIDTH 8 +#define thermistor_conf_s_size 28 +#define ThermistorConf_size 32 +#define timing_mode_e_auto_enum 0="TM_DYNAMIC",1="TM_FIXED" +#define timing_mode_e_TM_DYNAMIC 0 +#define timing_mode_e_TM_FIXED 1 +#define tle8888_mode_e_auto_enum 0="TL_AUTO",3="TL_HALL",2="TL_MANUAL",1="TL_SEMI_AUTO" +#define tle8888_mode_e_TL_AUTO 0 +#define tle8888_mode_e_TL_HALL 3 +#define tle8888_mode_e_TL_MANUAL 2 +#define tle8888_mode_e_TL_SEMI_AUTO 1 +#define TOOTH_DATA_LENGTH 2000 +#define TOOTH_PACKET_COUNT 1000 +#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 22960 +#define TPS_2_BYTE_PACKING_MULT 100 +#define TPS_PPS_TOO_HIGH_THRESHOLD 110 +#define TPS_PPS_TOO_LOW_THRESHOLD -10 +#define TPS_TPS_ACCEL_CLT_CORR_TABLE 4 +#define TPS_TPS_ACCEL_TABLE 8 +#define TRACTION_CONTROL_ETB_DROP_SIZE 6 +#define transmission_controller_e_enum "None", "Simple Transmission", "Generic 4-Speed", "GM 4L6X" +#define TransmissionControllerMode_auto_enum 0="None",2="Generic4",3="Gm4l6x",1="SimpleTransmissionController" +#define TransmissionControllerMode_Generic4 2 +#define TransmissionControllerMode_Gm4l6x 3 +#define TransmissionControllerMode_None 0 +#define TransmissionControllerMode_SimpleTransmissionController 1 +#define TRIGGER_COMMENT "#" +#define trigger_config_s_size 12 +#define TRIGGER_CRANK_BASED trigger_type == 2 || trigger_type == 5 || trigger_type == 10 || trigger_type == 12 || trigger_type == 20 || trigger_type == 21 || trigger_type == 26 || trigger_type == 27 || trigger_type == 33 || trigger_type == 38 || trigger_type == 39 || trigger_type == 44 || trigger_type == 45 || trigger_type == 46 || trigger_type == 53 || trigger_type == 55 || trigger_type == 57 || trigger_type == 58 || trigger_type == 61 || trigger_type == 62 || trigger_type == 68 || trigger_type == 70 || trigger_type == 71 || trigger_type == 72 || trigger_type == 74 || trigger_type == 75 || trigger_type == 76 || trigger_type == 77 || trigger_type == 84 +#define TRIGGER_CYCLE_DURATION "cycleDuration" +#define TRIGGER_GAP_FROM "gapFrom" +#define TRIGGER_GAP_TO "gapTo" +#define TRIGGER_GAPS_COUNT "gapsCount" +#define TRIGGER_HAS_SECOND_CHANNEL "hasSecondChannel" +#define TRIGGER_INPUT_PIN_COUNT 2 +#define TRIGGER_IS_CRANK_KEY "crankBased" +#define TRIGGER_IS_SECOND_WHEEL_CAM "isSecondWheelCam" +#define TRIGGER_KNOWN_OPERATION_MODE "knownOperationMode" +#define TRIGGER_SIMULATOR_PIN_COUNT 2 +#define TRIGGER_SYNC_EDGE "syncEdge" +#define trigger_type_e_auto_enum 0="TT_TOOTHED_WHEEL",38="TT_12_TOOTH_CRANK",25="TT_2JZ_3_34_SIMULATION_ONLY",70="TT_36_2_1",71="TT_36_2_1_1",23="TT_36_2_2_2",31="TT_3_1_CAM",72="TT_3_TOOTH_CRANK",77="TT_60DEG_TOOTH",75="TT_60_2_2_F3R",20="TT_60_2_WRONG_POLARITY",80="TT_6_TOOTH_CRANK",85="TT_ARCTIC_CAT",21="TT_BENELLI_TRE",30="TT_CHRYSLER_NGC_36_2_2",6="TT_DAIHATSU_3_CYL",81="TT_DAIHATSU_4_CYL",83="TT_DEV",2="TT_DODGE_NEON_1995",39="TT_DODGE_NEON_1995_ONLY_CRANK",14="TT_DODGE_NEON_2003_CAM",32="TT_DODGE_NEON_2003_CRANK",19="TT_DODGE_RAM",22="TT_DODGE_STRATUS",41="TT_FIAT_IAW_P8",1="TT_FORD_ASPIRE",42="TT_FORD_ST170",65="TT_FORD_TFI_PIP",74="TT_GM_24x_3",27="TT_GM_24x_5",54="TT_GM_60_2_2_2",5="TT_GM_7X",18="TT_HALF_MOON",28="TT_HONDA_CBR_600",67="TT_HONDA_K_CAM_4_1",46="TT_HONDA_K_CRANK_12_1",37="TT_JEEP_18_2_2_2",40="TT_JEEP_4_CYL",57="TT_KAWA_KX450F",15="TT_MAZDA_DOHC_1_4",3="TT_MAZDA_MIATA_NA",35="TT_MAZDA_MIATA_VVT_TEST",7="TT_MAZDA_SOHC_4",10="TT_MERCEDES_2_SEGMENT",33="TT_MIATA_VVT",34="TT_MITSU_4G63_CAM",76="TT_MITSU_4G63_CRANK",29="TT_MITSU_4G9x_CAM",11="TT_NARROW_SINGLE_TOOTH",84="TT_NISSAN_HR",86="TT_NISSAN_HR_CAM_IN",52="TT_NISSAN_MR18_CAM_VVT",68="TT_NISSAN_MR18_CRANK",61="TT_NISSAN_QR25",24="TT_NISSAN_SR20VE",60="TT_NISSAN_VQ30",58="TT_NISSAN_VQ35",16="TT_ONE_PLUS_ONE",44="TT_RENIX_44_2_2",45="TT_RENIX_66_2_2_2",26="TT_ROVER_K",55="TT_SKODA_FAVORIT",36="TT_SUBARU_7_6",51="TT_SUBARU_7_WITHOUT_6",12="TT_SUBARU_EZ30",49="TT_SUBARU_SVX",64="TT_SUBARU_SVX_CAM_VVT",63="TT_SUBARU_SVX_CRANK_1",66="TT_SUZUKI_G13B",50="TT_SUZUKI_K6A",69="TT_TOOTHED_WHEEL_32_2",9="TT_TOOTHED_WHEEL_36_1",48="TT_TOOTHED_WHEEL_36_2",8="TT_TOOTHED_WHEEL_60_2",53="TT_TRI_TACH",87="TT_UNUSED",56="TT_VVT_BARRA_3_PLUS_1",47="TT_VVT_BOSCH_QUICK_START",4="TT_VVT_FORD_COYOTE",82="TT_VVT_MAZDA_L",13="TT_VVT_MAZDA_SKYACTIV",43="TT_VVT_MIATA_NB",62="TT_VVT_MITSUBISHI_3A92",78="TT_VVT_MITSUBISHI_4G69",79="TT_VVT_MITSU_6G72",59="TT_VVT_NISSAN_VQ35",17="TT_VVT_TOYOTA_3_TOOTH",73="TT_VVT_TOYOTA_4_1" +#define trigger_type_e_enum "custom toothed wheel", "Ford Aspire", "Dodge Neon 1995", "Miata NA", "INVALID", "GM_7X", "Daihatsu 3 cylinder", "Mazda SOHC 4", "60-2", "36-1", "Mercedes Two Segment", "Single Tooth", "EZ30", "INVALID", "Dodge Neon 2003", "Mazda DOHC 1+4", "1+1", "INVALID", "Half Moon", "Dodge Ram 1+16", "60-2 Wrong Polarity", "Benelli Tre", "Dodge Stratus", "36_2_2_2", "Nissan Primera", "dev 2JZ 3/34 simulator", "Rover K", "GM 24x 5 degree", "Honda CBR 600 Cam", "INVALID", "Honda CBR 600 custom", "3-1 skipped", "Dodge Neon 2003 crank", "Miata NB", "INVALID", "INVALID", "Subaru 7+6", "Jeep 18-2-2-2", "12crank/24cam", "Dodge Neon 1995 crank only", "Jeep XJ 4 cyl", "FiatIAQ_P8", "Mazda Z5", "INVALID", "Renix 44-2-2", "Renix 66-2-2-2", "Honda K 12+1", "INVALID", "36-2", "Subaru SVX", "Suzuki K6A", "Subaru 7 without 6", "INVALID", "INVALID", "GM 60-2-2-2", "Skoda Favorit", "Barra 3+1 Cam", "Kawa KX450F", "Nissan VQ35", "INVALID", "Nissan VQ30", "Nissan QR25", "INVALID", "Subaru SVX Crank 1", "Subaru SVX Cam VVT", "Ford PIP", "Suzuki G13B", "Honda K 4+1", "Nissan MR18 Crank", "32-2", "36-2-1", "36-2-1-1", "3-0", "INVALID", "GM 24x 3 degree", "60-2-2 F3R", "Mitsu 4G63 Crank", "x2 30 Deg camshaft BTDC", "INVALID", "Mitsu 6G72 Cam", "6-0", "Daihatsu 4 cylinder", "INVALID", "dev", "Nissan HR", "Arctic Cat", "HR12 in", "HR12 ex", "trg88" +#define trigger_type_e_TT_12_TOOTH_CRANK 38 +#define trigger_type_e_TT_2JZ_3_34_SIMULATION_ONLY 25 +#define trigger_type_e_TT_36_2_1 70 +#define trigger_type_e_TT_36_2_1_1 71 +#define trigger_type_e_TT_36_2_2_2 23 +#define trigger_type_e_TT_3_1_CAM 31 +#define trigger_type_e_TT_3_TOOTH_CRANK 72 +#define trigger_type_e_TT_60_2_2_F3R 75 +#define trigger_type_e_TT_60_2_WRONG_POLARITY 20 +#define trigger_type_e_TT_60DEG_TOOTH 77 +#define trigger_type_e_TT_6_TOOTH_CRANK 80 +#define trigger_type_e_TT_ARCTIC_CAT 85 +#define trigger_type_e_TT_BENELLI_TRE 21 +#define trigger_type_e_TT_CHRYSLER_NGC_36_2_2 30 +#define trigger_type_e_TT_DAIHATSU_3_CYL 6 +#define trigger_type_e_TT_DAIHATSU_4_CYL 81 +#define trigger_type_e_TT_DEV 83 +#define trigger_type_e_TT_DODGE_NEON_1995 2 +#define trigger_type_e_TT_DODGE_NEON_1995_ONLY_CRANK 39 +#define trigger_type_e_TT_DODGE_NEON_2003_CAM 14 +#define trigger_type_e_TT_DODGE_NEON_2003_CRANK 32 +#define trigger_type_e_TT_DODGE_RAM 19 +#define trigger_type_e_TT_DODGE_STRATUS 22 +#define trigger_type_e_TT_FIAT_IAW_P8 41 +#define trigger_type_e_TT_FORD_ASPIRE 1 +#define trigger_type_e_TT_FORD_ST170 42 +#define trigger_type_e_TT_FORD_TFI_PIP 65 +#define trigger_type_e_TT_GM_24x_3 74 +#define trigger_type_e_TT_GM_24x_5 27 +#define trigger_type_e_TT_GM_60_2_2_2 54 +#define trigger_type_e_TT_GM_7X 5 +#define trigger_type_e_TT_HALF_MOON 18 +#define trigger_type_e_TT_HONDA_CBR_600 28 +#define trigger_type_e_TT_HONDA_K_CAM_4_1 67 +#define trigger_type_e_TT_HONDA_K_CRANK_12_1 46 +#define trigger_type_e_TT_JEEP_18_2_2_2 37 +#define trigger_type_e_TT_JEEP_4_CYL 40 +#define trigger_type_e_TT_KAWA_KX450F 57 +#define trigger_type_e_TT_MAZDA_DOHC_1_4 15 +#define trigger_type_e_TT_MAZDA_MIATA_NA 3 +#define trigger_type_e_TT_MAZDA_MIATA_VVT_TEST 35 +#define trigger_type_e_TT_MAZDA_SOHC_4 7 +#define trigger_type_e_TT_MERCEDES_2_SEGMENT 10 +#define trigger_type_e_TT_MIATA_VVT 33 +#define trigger_type_e_TT_MITSU_4G63_CAM 34 +#define trigger_type_e_TT_MITSU_4G63_CRANK 76 +#define trigger_type_e_TT_MITSU_4G9x_CAM 29 +#define trigger_type_e_TT_NARROW_SINGLE_TOOTH 11 +#define trigger_type_e_TT_NISSAN_HR 84 +#define trigger_type_e_TT_NISSAN_HR_CAM_IN 86 +#define trigger_type_e_TT_NISSAN_MR18_CAM_VVT 52 +#define trigger_type_e_TT_NISSAN_MR18_CRANK 68 +#define trigger_type_e_TT_NISSAN_QR25 61 +#define trigger_type_e_TT_NISSAN_SR20VE 24 +#define trigger_type_e_TT_NISSAN_VQ30 60 +#define trigger_type_e_TT_NISSAN_VQ35 58 +#define trigger_type_e_TT_ONE_PLUS_ONE 16 +#define trigger_type_e_TT_RENIX_44_2_2 44 +#define trigger_type_e_TT_RENIX_66_2_2_2 45 +#define trigger_type_e_TT_ROVER_K 26 +#define trigger_type_e_TT_SKODA_FAVORIT 55 +#define trigger_type_e_TT_SUBARU_7_6 36 +#define trigger_type_e_TT_SUBARU_7_WITHOUT_6 51 +#define trigger_type_e_TT_SUBARU_EZ30 12 +#define trigger_type_e_TT_SUBARU_SVX 49 +#define trigger_type_e_TT_SUBARU_SVX_CAM_VVT 64 +#define trigger_type_e_TT_SUBARU_SVX_CRANK_1 63 +#define trigger_type_e_TT_SUZUKI_G13B 66 +#define trigger_type_e_TT_SUZUKI_K6A 50 +#define trigger_type_e_TT_TOOTHED_WHEEL 0 +#define trigger_type_e_TT_TOOTHED_WHEEL_32_2 69 +#define trigger_type_e_TT_TOOTHED_WHEEL_36_1 9 +#define trigger_type_e_TT_TOOTHED_WHEEL_36_2 48 +#define trigger_type_e_TT_TOOTHED_WHEEL_60_2 8 +#define trigger_type_e_TT_TRI_TACH 53 +#define trigger_type_e_TT_UNUSED 87 +#define trigger_type_e_TT_VVT_BARRA_3_PLUS_1 56 +#define trigger_type_e_TT_VVT_BOSCH_QUICK_START 47 +#define trigger_type_e_TT_VVT_FORD_COYOTE 4 +#define trigger_type_e_TT_VVT_MAZDA_L 82 +#define trigger_type_e_TT_VVT_MAZDA_SKYACTIV 13 +#define trigger_type_e_TT_VVT_MIATA_NB 43 +#define trigger_type_e_TT_VVT_MITSU_6G72 79 +#define trigger_type_e_TT_VVT_MITSUBISHI_3A92 62 +#define trigger_type_e_TT_VVT_MITSUBISHI_4G69 78 +#define trigger_type_e_TT_VVT_NISSAN_VQ35 59 +#define trigger_type_e_TT_VVT_TOYOTA_3_TOOTH 17 +#define trigger_type_e_TT_VVT_TOYOTA_4_1 73 +#define TRIGGER_TYPE_WITH_SECOND_WHEEL trigger_type == 1 || trigger_type == 3 || trigger_type == 15 || trigger_type == 16 || trigger_type == 19 || trigger_type == 25 || trigger_type == 31 || trigger_type == 35 || trigger_type == 36 || trigger_type == 37 || trigger_type == 40 || trigger_type == 49 || trigger_type == 53 || trigger_type == 54 || trigger_type == 63 || trigger_type == 64 +#define TRIGGER_TYPE_WITHOUT_KNOWN_LOCATION trigger_type == 8 || trigger_type == 9 || trigger_type == 11 || trigger_type == 17 || trigger_type == 18 || trigger_type == 23 || trigger_type == 48 || trigger_type == 69 || trigger_type == 73 +#define TRIGGER_WITH_SYNC "isSynchronizationNeeded" +#define TRIGGERS_FILE_NAME "triggers.txt" +#define TriggerWheel_T_PRIMARY 0 +#define TriggerWheel_T_SECONDARY 1 +#define ts_14_command_COMMAND_X14_UNUSED_0 0x00 +#define ts_14_command_COMMAND_X14_UNUSED_1 0x01 +#define ts_14_command_COMMAND_X14_UNUSED_2 0x02 +#define ts_14_command_COMMAND_X14_UNUSED_3 0x03 +#define ts_14_command_COMMAND_X14_UNUSED_4 0x04 +#define ts_14_command_COMMAND_X14_UNUSED_5 0x05 +#define ts_14_command_COMMAND_X14_UNUSED_9 0x09 +#define ts_14_command_TS_BURN_WITHOUT_FLASH 0x15 +#define ts_14_command_TS_ETB_AUTOCAL_0 0x0E +#define ts_14_command_TS_ETB_AUTOCAL_1 0x11 +#define ts_14_command_TS_ETB_DISABLE_JAM_DETECT 0x14 +#define ts_14_command_TS_ETB_RESET 0x0B +#define ts_14_command_TS_ETB_START_AUTOTUNE 0x0C +#define ts_14_command_TS_ETB_STOP_AUTOTUNE 0x10 +#define ts_14_command_TS_EXTERNAL_TRIGGER_STIMULATOR_ENABLE 0x13 +#define ts_14_command_TS_GRAB_PEDAL_UP 6 +#define ts_14_command_TS_GRAB_PEDAL_WOT 7 +#define ts_14_command_TS_RESET_MC33810 0x16 +#define ts_14_command_TS_RESET_TLE8888 8 +#define ts_14_command_TS_TRIGGER_STIMULATOR_DISABLE 0x0F +#define ts_14_command_TS_TRIGGER_STIMULATOR_ENABLE 0x0D +#define ts_14_command_TS_WIDEBAND_UPDATE 0x12 +#define ts_14_command_TS_WRITE_FLASH 0x0A +#define TS_BLOCK_READ_TIMEOUT 3000 +#define TS_BURN_COMMAND 'B' +#define TS_BURN_COMMAND_char B +#define TS_CHUNK_WRITE_COMMAND 'C' +#define TS_CHUNK_WRITE_COMMAND_char C +#define ts_command_e_TS_BENCH_CATEGORY 22 +#define ts_command_e_TS_BOARD_ACTION 29 +#define ts_command_e_TS_CLEAR_WARNINGS 17 +#define ts_command_e_TS_COMMAND_1 1 +#define ts_command_e_TS_COMMAND_10 10 +#define ts_command_e_TS_COMMAND_11 11 +#define ts_command_e_TS_COMMAND_12 12 +#define ts_command_e_TS_COMMAND_13 13 +#define ts_command_e_TS_COMMAND_14 14 +#define ts_command_e_TS_COMMAND_15 15 +#define ts_command_e_TS_COMMAND_16 16 +#define ts_command_e_TS_COMMAND_2 2 +#define ts_command_e_TS_COMMAND_3 3 +#define ts_command_e_TS_COMMAND_4 4 +#define ts_command_e_TS_COMMAND_5 5 +#define ts_command_e_TS_COMMAND_6 6 +#define ts_command_e_TS_COMMAND_7 7 +#define ts_command_e_TS_COMMAND_8 8 +#define ts_command_e_TS_COMMAND_9 9 +#define ts_command_e_TS_DEBUG_MODE 0 +#define ts_command_e_TS_IGNITION_CATEGORY 18 +#define ts_command_e_TS_INJECTOR_CATEGORY 19 +#define ts_command_e_TS_LUA_OUTPUT_CATEGORY 32 +#define ts_command_e_TS_SET_DEFAULT_ENGINE 31 +#define ts_command_e_TS_SET_ENGINE_TYPE 30 +#define ts_command_e_TS_SOLENOID_CATEGORY 25 +#define ts_command_e_TS_UNUSED_23 23 +#define ts_command_e_TS_UNUSED_24 24 +#define ts_command_e_TS_UNUSED_26 26 +#define ts_command_e_TS_UNUSED_27 27 +#define ts_command_e_TS_UNUSED_28 28 +#define ts_command_e_TS_WIDEBAND 21 +#define ts_command_e_TS_X14 20 +#define TS_COMMAND_F 'F' +#define TS_COMMAND_F_char F +#define TS_COMPOSITE_DISABLE 2 +#define TS_COMPOSITE_ENABLE 1 +#define TS_COMPOSITE_READ 3 +#define TS_CRC_CHECK_COMMAND 'k' +#define TS_CRC_CHECK_COMMAND_char k +#define TS_EXECUTE 'E' +#define TS_EXECUTE_char E +#define TS_FILE_VERSION 20241104 +#define TS_FILE_VERSION_OFFSET 124 +#define TS_GET_COMPOSITE_BUFFER_DONE_DIFFERENTLY '8' +#define TS_GET_COMPOSITE_BUFFER_DONE_DIFFERENTLY_char 8 +#define TS_GET_CONFIG_ERROR 'e' +#define TS_GET_CONFIG_ERROR_char e +#define TS_GET_FIRMWARE_VERSION 'V' +#define TS_GET_FIRMWARE_VERSION_char V +#define TS_GET_OUTPUTS_SIZE '4' +#define TS_GET_OUTPUTS_SIZE_char 4 +#define TS_GET_PROTOCOL_VERSION_COMMAND_F 'F' +#define TS_GET_PROTOCOL_VERSION_COMMAND_F_char F +#define TS_GET_SCATTERED_GET_COMMAND '9' +#define TS_GET_SCATTERED_GET_COMMAND_char 9 +#define TS_GET_TEXT 'G' +#define TS_GET_TEXT_char G +#define TS_HELLO_COMMAND 'S' +#define TS_HELLO_COMMAND_char S +#define TS_IO_TEST_COMMAND 'Z' +#define TS_IO_TEST_COMMAND_char Z +#define TS_ONLINE_PROTOCOL 'z' +#define TS_ONLINE_PROTOCOL_char z +#define TS_OUTPUT_ALL_COMMAND 'A' +#define TS_OUTPUT_ALL_COMMAND_char A +#define TS_OUTPUT_COMMAND 'O' +#define TS_OUTPUT_COMMAND_char O +#define TS_PERF_TRACE_BEGIN '_' +#define TS_PERF_TRACE_BEGIN_char _ +#define TS_PERF_TRACE_GET_BUFFER 'b' +#define TS_PERF_TRACE_GET_BUFFER_char b +#define TS_PROTOCOL "001" +#define TS_QUERY_BOOTLOADER 'L' +#define TS_QUERY_BOOTLOADER_char L +#define TS_QUERY_BOOTLOADER_NONE 0 +#define TS_QUERY_BOOTLOADER_OPENBLT 1 +#define TS_QUERY_COMMAND 'Q' +#define TS_QUERY_COMMAND_char Q +#define TS_READ_COMMAND 'R' +#define TS_READ_COMMAND_char R +#define TS_RESPONSE_BURN_OK 4 +#define TS_RESPONSE_CRC_FAILURE 0x82 +#define TS_RESPONSE_FRAMING_ERROR 0x8D +#define TS_RESPONSE_OK 0 +#define TS_RESPONSE_OUT_OF_RANGE 0x84 +#define TS_RESPONSE_OVERRUN 0x81 +#define TS_RESPONSE_UNDERRUN 0x80 +#define TS_RESPONSE_UNRECOGNIZED_COMMAND 0x83 +#define TS_SET_LOGGER_SWITCH 'l' +#define TS_SET_LOGGER_SWITCH_char l +#define ts_show_acr_pins true +#define ts_show_air_conditioning true +#define ts_show_alternator true +#define ts_show_analog_divider true +#define ts_show_analog_ego true +#define ts_show_analog_input_settings true +#define ts_show_aux_connections true +#define ts_show_aux_sensors true +#define ts_show_auxserial_pins true +#define ts_show_bank2_cam1 true +#define ts_show_bank2_cam2 true +#define ts_show_brake_pedal_pin true +#define ts_show_cam2 true +#define ts_show_can2 true +#define ts_show_can_bitrate true +#define ts_show_can_pins true +#define ts_show_can_wbo true +#define ts_show_charge_estimation true +#define ts_show_check_engine true +#define ts_show_clt_iat_pullup true +#define ts_show_clutch_down true +#define ts_show_clutch_down_pin true +#define ts_show_clutch_up true +#define ts_show_clutch_up_pin true +#define ts_show_communityCommsLedPin false +#define ts_show_compression_ratio false +#define ts_show_compressor_sensor true +#define ts_show_console_settings true +#define ts_show_cylinder_10 true +#define ts_show_cylinder_11 true +#define ts_show_cylinder_12 true +#define ts_show_cylinder_2 true +#define ts_show_cylinder_3 true +#define ts_show_cylinder_4 true +#define ts_show_cylinder_5 true +#define ts_show_cylinder_6 true +#define ts_show_cylinder_7 true +#define ts_show_cylinder_8 true +#define ts_show_cylinder_9 true +#define ts_show_cylinder_bank true +#define ts_show_debug_mode false +#define ts_show_ego2 true +#define ts_show_egt true +#define ts_show_etb true +#define ts_show_etb_bias_curve true +#define ts_show_etb_extra_monitoring +#define ts_show_etb_pins false +#define ts_show_exhaust_vvt true +#define ts_show_experimental true +#define ts_show_fan2_settings true +#define ts_show_final_ratio true +#define ts_show_firing_order true +#define ts_show_flex_inverted true +#define ts_show_forced_induction true +#define ts_show_ford_toyota_tps_pps true +#define ts_show_fuel_level_sensor true +#define ts_show_fuel_pressure_sensor true +#define ts_show_fuel_pump true +#define ts_show_fuel_relay_pin true +#define ts_show_fuel_strategy true +#define ts_show_fuel_temp_sensor true +#define ts_show_fuel_trim_cylinder_1 true +#define ts_show_fuel_trim_cylinder_10 true +#define ts_show_fuel_trim_cylinder_11 true +#define ts_show_fuel_trim_cylinder_12 true +#define ts_show_fuel_trim_cylinder_2 true +#define ts_show_fuel_trim_cylinder_3 true +#define ts_show_fuel_trim_cylinder_4 true +#define ts_show_fuel_trim_cylinder_5 true +#define ts_show_fuel_trim_cylinder_6 true +#define ts_show_fuel_trim_cylinder_7 true +#define ts_show_fuel_trim_cylinder_8 true +#define ts_show_fuel_trim_cylinder_9 true +#define ts_show_fuel_trims true +#define ts_show_full_pinout true +#define ts_show_gdi false +#define ts_show_gdi_low_level true +#define ts_show_globalTriggerAngleOffset true +#define ts_show_hardware_simulator true +#define ts_show_hbridge_function true +#define ts_show_hd true +#define ts_show_hip9011 false +#define ts_show_idle_hardware true +#define ts_show_ign_key_analog_input false +#define ts_show_ign_key_switch false +#define ts_show_ignitionPinMode true +#define ts_show_inj_diag false +#define ts_show_injection_mode true +#define ts_show_injection_phase true +#define ts_show_injectionPinMode false +#define ts_show_intake_cam_edge true +#define ts_show_intake_vvt_direction true +#define ts_show_k_line false +#define ts_show_l9779 false +#define ts_show_maf true +#define ts_show_main_relay true +#define ts_show_main_relay_microRusEFI_message false +#define ts_show_mc33810 false +#define ts_show_multispark true +#define ts_show_number_of_cylinders true +#define ts_show_odd_fire true +#define ts_show_oil_pressure_sensor true +#define ts_show_oil_temp_sensor true +#define ts_show_onboard_accelerometer false +#define ts_show_output_diag false +#define ts_show_popular_vehicles true +#define ts_show_reboot_to_dfu true +#define ts_show_reset_calibrations false +#define ts_show_rotary true +#define ts_show_sd_card true +#define ts_show_sd_pins true +#define ts_show_second_bank true +#define ts_show_software_knock false +#define ts_show_speedo_settings true +#define ts_show_spi true +#define ts_show_spi1_enable true +#define ts_show_spi1_pins true +#define ts_show_spi2_enable true +#define ts_show_spi2_pins true +#define ts_show_spi3_pins true +#define ts_show_spi4_enable true +#define ts_show_spi4_pins false +#define ts_show_spi5_enable true +#define ts_show_spi5_pins false +#define ts_show_spi6_enable true +#define ts_show_spi6_pins false +#define ts_show_staged_injection true +#define ts_show_start_button true +#define ts_show_starter_disable true +#define ts_show_startup_map_baro_grab true +#define ts_show_status_leds true +#define ts_show_strokes true +#define ts_show_sync_cam true +#define ts_show_tachometer true +#define ts_show_tcu false +#define ts_show_throttle_switch true +#define ts_show_tle8888 false +#define ts_show_top_level_can_menu true +#define ts_show_tps2 true +#define ts_show_tps2_error true +#define ts_show_tps_sent false +#define ts_show_trigger_advanced true +#define ts_show_trigger_comparator false +#define ts_show_trigger_overrides true +#define ts_show_trigger_pins true +#define ts_show_tunerstudio_port true +#define ts_show_vbatt true +#define ts_show_vehicle_speed_sensor true +#define ts_show_vehicle_weight false +#define ts_show_vr_threshold_2 false +#define ts_show_vr_threshold_all false +#define ts_show_vr_threshold_pins true +#define ts_show_vvt_output true +#define ts_show_vvt_output_pin true +#define ts_show_wastegate_sensor true +#define ts_show_wbo_canbus_index true +#define ts_show_wbo_canbus_set_index true +#define TS_SIGNATURE "rusEFI main.2024.11.13.z31-f7.1351942270" +#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 1824 +#define TS_TRIGGER_SCOPE_CHANNEL_1_NAME "Channel 1" +#define TS_TRIGGER_SCOPE_CHANNEL_2_NAME "Channel 2" +#define TS_TRIGGER_SCOPE_DISABLE 5 +#define TS_TRIGGER_SCOPE_ENABLE 4 +#define TS_TRIGGER_SCOPE_READ 6 +#define TsCalMode_EtbKd 5 +#define TsCalMode_EtbKi 4 +#define TsCalMode_EtbKp 3 +#define TsCalMode_None 0 +#define TsCalMode_PedalMax 13 +#define TsCalMode_PedalMin 12 +#define TsCalMode_Tps1Max 1 +#define TsCalMode_Tps1Min 2 +#define TsCalMode_Tps1SecondaryMax 6 +#define TsCalMode_Tps1SecondaryMin 7 +#define TsCalMode_Tps2Max 8 +#define TsCalMode_Tps2Min 9 +#define TsCalMode_Tps2SecondaryMax 10 +#define TsCalMode_Tps2SecondaryMin 11 +#define uart_device_e_auto_enum 0="UART_NONE",1="UART_DEVICE_1",2="UART_DEVICE_2",3="UART_DEVICE_3",4="UART_DEVICE_4" +#define uart_device_e_UART_DEVICE_1 1 +#define uart_device_e_UART_DEVICE_2 2 +#define uart_device_e_UART_DEVICE_3 3 +#define uart_device_e_UART_DEVICE_4 4 +#define uart_device_e_UART_NONE 0 +#define UiMode_auto_enum 0="FULL",1="INSTALLATION",2="TUNING" +#define UiMode_enum "Full", "INVALID", "Tuning" +#define UiMode_FULL 0 +#define UiMode_INSTALLATION 1 +#define UiMode_TUNING 2 +#define VBAT_INJECTOR_CURVE_SIZE 8 +#define VE_BLEND_COUNT 4 +#define VE_MENU_MAP_NAME "VE 3D view" +#define VE_MENU_NAME "VE" +#define ve_override_e_auto_enum 0="VE_None",1="VE_MAP",2="VE_TPS" +#define ve_override_e_enum "None", "MAP", "TPS" +#define ve_override_e_VE_MAP 1 +#define ve_override_e_VE_None 0 +#define ve_override_e_VE_TPS 2 +#define VE_TABLE_NAME "VE Table" +#define VEHICLE_INFO_SIZE 32 +#define VIN_NUMBER_SIZE 17 +#define VOLTAGE_1_BYTE_PACKING_DIV 0.02 +#define VR_THRESHOLD_COUNT 2 +#define vr_threshold_s_size 16 +#define VSS_FILTER_MAX 200 +#define VSS_FILTER_MIN 3 +#define VVT1_TARGET_NAME "VVT intake target" +#define vvt_mode_e_auto_enum 0="VVT_INACTIVE",8="VVT_BARRA_3_PLUS_1",5="VVT_BOSCH_QUICK_START",23="VVT_DEV",19="VVT_FORD_COYOTE",7="VVT_FORD_ST170",21="VVT_HONDA_CBR_600",16="VVT_HONDA_K_EXHAUST",10="VVT_HONDA_K_INTAKE",24="VVT_HR12DDR_IN",13="VVT_MAP_V_TWIN",22="VVT_MAZDA_L",15="VVT_MAZDA_SKYACTIV",3="VVT_MIATA_NB",12="VVT_MITSUBISHI_3A92",18="VVT_MITSUBISHI_4G63",4="VVT_MITSUBISHI_4G69",17="VVT_MITSUBISHI_4G9x",20="VVT_MITSUBISHI_6G72",14="VVT_MITSUBISHI_6G75",11="VVT_NISSAN_MR",9="VVT_NISSAN_VQ",1="VVT_SINGLE_TOOTH",2="VVT_TOYOTA_3_TOOTH",6="VVT_TOYOTA_4_1" +#define vvt_mode_e_enum "Inactive", "Single Tooth", "Toyota 3 Tooth", "Miata NB2", "Mitsu 4G69", "Bosch Quick Start", "4/1", "ST 170", "Ford Barra 3+1", "Nissan VQ", "Honda K Intake", "Nissan MR18", "Mitsu 3A92", "Sync by MAP", "Mitsu 6G75", "Mazda Skyactiv", "Honda K Exhaust", "Mitsubishi 4G92/93/94", "Mitsubishi 4G63", "Ford Coyote", "Mitsu 6G72", "Honda 600", "Mazda L", "Dev", "HR12DDR In", "vvt25", "vvt26" +#define vvt_mode_e_VVT_BARRA_3_PLUS_1 8 +#define vvt_mode_e_VVT_BOSCH_QUICK_START 5 +#define vvt_mode_e_VVT_DEV 23 +#define vvt_mode_e_VVT_FORD_COYOTE 19 +#define vvt_mode_e_VVT_FORD_ST170 7 +#define vvt_mode_e_VVT_HONDA_CBR_600 21 +#define vvt_mode_e_VVT_HONDA_K_EXHAUST 16 +#define vvt_mode_e_VVT_HONDA_K_INTAKE 10 +#define vvt_mode_e_VVT_HR12DDR_IN 24 +#define vvt_mode_e_VVT_INACTIVE 0 +#define vvt_mode_e_VVT_MAP_V_TWIN 13 +#define vvt_mode_e_VVT_MAZDA_L 22 +#define vvt_mode_e_VVT_MAZDA_SKYACTIV 15 +#define vvt_mode_e_VVT_MIATA_NB 3 +#define vvt_mode_e_VVT_MITSUBISHI_3A92 12 +#define vvt_mode_e_VVT_MITSUBISHI_4G63 18 +#define vvt_mode_e_VVT_MITSUBISHI_4G69 4 +#define vvt_mode_e_VVT_MITSUBISHI_4G9x 17 +#define vvt_mode_e_VVT_MITSUBISHI_6G72 20 +#define vvt_mode_e_VVT_MITSUBISHI_6G75 14 +#define vvt_mode_e_VVT_NISSAN_MR 11 +#define vvt_mode_e_VVT_NISSAN_VQ 9 +#define vvt_mode_e_VVT_SINGLE_TOOTH 1 +#define vvt_mode_e_VVT_TOYOTA_3_TOOTH 2 +#define vvt_mode_e_VVT_TOYOTA_4_1 6 +#define VVT_TABLE_SIZE 8 +#define VVT_TRACKING_LENGTH 4 +#define WARNING_BUFFER_SIZE 120 +#define WWAE_TABLE_SIZE 8 diff --git a/generated/controllers/generated/signature_z31-f7.h b/generated/controllers/generated/signature_z31-f7.h new file mode 100644 index 0000000..5a92545 --- /dev/null +++ b/generated/controllers/generated/signature_z31-f7.h @@ -0,0 +1,6 @@ +// +// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer +// + +#define SIGNATURE_HASH 1351942270 +#define TS_SIGNATURE "rusEFI main.2024.11.13.z31-f7.1351942270" diff --git a/generated/tunerstudio/generated/rusefi_z31-f7.ini b/generated/tunerstudio/generated/rusefi_z31-f7.ini new file mode 100644 index 0000000..e6d2684 --- /dev/null +++ b/generated/tunerstudio/generated/rusefi_z31-f7.ini @@ -0,0 +1,10004 @@ +; This is a TunerStudio project for the rusEFI.com engine management system +; +; This file has been generated by invoking gen_config.bat. +; The input files are +; tunerstudio.template.ini the common template +; rusefi_config.txt the project specific file +; +; In TunerStudio some fields have little question mark on the left of the name for additional field tips. +; Those tips are defined in ../integration/rusefi_config.txt +; +; For example +; +; float bias_resistor;Pull-up resistor value on your board;"Ohm" +; here 'bias_resistor' is internal field name and the text between semicolons is what produces the tooltip +; Note that '+' sign is required after first semicolon for tooltop to appear in TunerStudio +; +; +; field = "# blue text" +; field = "! red text" +; field = "normal text" +; +; see also https://www.tunerstudio.com/index.php/support/manuals/tsdevmanuals/137-ecu-definition-specification-aka-the-ini-document +; + +; this should stop TS from looking for the CAN ID in the 2nd byte location and allow the page reads to work correctly. +enable2ndByteCanID = false + +[SettingGroups] + ; the referenceName will over-ride previous, so if you are creating a + ; settingGroup with a reference name of lambdaSensor, it will replace the + ; setting group defined in the settingGroups.xml of the TunerStudio config + ; folder. If is is an undefined referenceName, it will be added. + ; keyword = referenceName, DisplayName +; see https://github.com/rusefi/rusefi/issues/6170 issue +; settingGroup = connectivityProfile, "Protocol Profile" +; settingOption = CONN_SLOW, "Slower / Wireless" +; settingOption = CONN_FAST, "High Speed / USB" + +[MegaTune] + ; https://rusefi.com/forum/viewtopic.php?p=36201#p36201 + signature = "rusEFI main.2024.11.13.z31-f7.1351942270" + +[TunerStudio] + queryCommand = "S" + versionInfo = "V" ; firmware version for title bar. + signature= "rusEFI main.2024.11.13.z31-f7.1351942270" ; signature is expected to be 7 or more characters. + + ; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C + useLegacyFTempUnits = false + ignoreMissingBitOptions = true + + ; Optimize comms for fast rusEFI ECUs + noCommReadDelay = true; + defaultRuntimeRecordPerSec = 100; +;#if CONN_SLOW +;#else + maxUnusedRuntimeRange = 1000; +;#endif + + ; Set default IP/port to our IP/port + defaultIpAddress = localhost + defaultIpPort = 29001 + +[Constants] +; new packet serial format with CRC + messageEnvelopeFormat = msEnvelope_1.0 + + endianness = little + nPages = 1 + + pageIdentifier = "\x00\x00" + pageReadCommand = "R%2o%2c" + burnCommand = "B" + pageValueWrite = "W%2o%v" + pageChunkWrite = "C%2o%2c%v" + crc32CheckCommand = "k%2o%2c" + retrieveConfigError = "e" + +;communication settings +; Milliseconds delay after burn command. See https://sourceforge.net/p/rusefi/tickets/77/ + pageActivationDelay = 500 +;e.g. put writeblocks off and add an interwrite delay + writeBlocks = on + interWriteDelay = 10 + blockReadTimeout = 3000; Milliseconds general timeout + + ; delayAfterPortOpen = 500 + + blockingFactor = 1024 ; max chunk size +;end communication settings + + ; name = bits, type, offset, bits + ; name = array, type, offset, shape, units, scale, translate, lo, hi, digits + ; name = scalar, type, offset, units, scale, translate, lo, hi, digits +#define gpio_list="NONE", "INVALID", "PA0", "PA1", "PA2", "PA3", "PA4", "PA5", "PA6", "PA7", "PA8", "PA9", "PA10", "PA11", "PA12", "PA13", "PA14", "PA15", "PB0", "PB1", "PB2", "PB3", "PB4", "PB5", "PB6", "PB7", "PB8", "PB9", "PB10", "PB11", "PB12", "PB13", "PB14", "PB15", "PC0", "PC1", "PC2", "PC3", "PC4", "PC5", "PC6", "PC7", "PC8", "PC9", "PC10", "PC11", "PC12", "PC13", "PC14", "PC15", "PD0", "PD1", "PD2", "PD3", "PD4", "PD5", "PD6", "PD7", "PD8", "PD9", "PD10", "PD11", "PD12", "PD13", "PD14", "PD15", "PE0", "PE1", "PE2", "PE3", "PE4", "PE5", "PE6", "PE7", "PE8", "PE9", "PE10", "PE11", "PE12", "PE13", "PE14", "PE15", "PF0", "PF1", "PF2", "PF3", "PF4", "PF5", "PF6", "PF7", "PF8", "PF9", "PF10", "PF11", "PF12", "PF13", "PF14", "PF15", "PG0", "PG1", "PG2", "PG3", "PG4", "PG5", "PG6", "PG7", "PG8", "PG9", "PG10", "PG11", "PG12", "PG13", "PG14", "PG15", "PH0", "PH1", "PH2", "PH3", "PH4", "PH5", "PH6", "PH7", "PH8", "PH9", "PH10", "PH11", "PH12", "PH13", "PH14", "PH15", "PI0", "PI1", "PI2", "PI3", "PI4", "PI5", "PI6", "PI7", "PI8", "PI9", "PI10", "PI11", "PI12", "PI13", "PI14", "PI15" +#define switch_input_pin_e_list="NONE","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","VR/Hall 1 (E2)","VR/Hall 2 (E3)","VR/Hall 3 (E4)" +#define output_pin_e_list="NONE","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","B14 Output" +#define brain_input_pin_e_list="NONE","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","VR/Hall 1 (E2)","VR/Hall 2 (E3)","VR/Hall 3 (E4)" +#define adc_channel_e_list="NONE","On-board Battery Sense (A0)","Analog Inputs 1 (A1)","Analog Inputs 2 (A2)","Analog Inputs 3 (A3)","Analog Inputs 4 (A4)","On-board MAP (A5)","Analog Inputs 6 (A6)","Analog Inputs 7 (A7)","On-board BARO (B0)","Analog Inputs 9 (B1)","Analog Inputs 10 (C0)","Primary On-board O2 (C1)","Secondary On-board O2 (C2)","Analog Inputs 13 (C3)","Analog Inputs 14 (C4)","Analog Inputs 15 (C5)" + +; CONFIG_DEFINITION_START +; this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt + +pageSize = 22960 +page = 1 +engineType = bits, U16, 0, [0:6], 0="DEFAULT_FRANKENSO",22="BMW_M52",50="BMW_M73_MRE",51="BMW_M73_MRE_SLAVE",38="DISCOVERY_PDM",2="DODGE_NEON_1995",46="DODGE_NEON_2003_CRANK",64="DODGE_RAM",61="EEPROM_BENCH_ENGINE",58="ETB_BENCH_ENGINE",21="ET_BOSCH_QUICK_START",24="ET_TEST_WITH_BOSCH_QUICK_START",55="ET_UNUSED_55",56="ET_UNUSED_56",105="FERRARI_F136",3="FORD_ASPIRE_1996",11="FORD_COYOTE",14="FORD_ESCORT_GT",7="FORD_INLINE_6_1995",40="FRANKENSO_BMW_M73_F",41="FRANKENSO_MIATA_NA6_MAP",59="FRANKENSO_TEST_33810",15="FUEL_BENCH",47="GM_LCV",98="GM_SBC",8="GY6_139QMB",6="HARLEY",84="HELLEN_121_NISSAN_4_CYL",72="HELLEN_121_NISSAN_6_CYL",85="HELLEN_121_NISSAN_8_CYL",87="HELLEN_121_NISSAN_ALMERA_N16",71="HELLEN_121_VAG_4_CYL",81="HELLEN_121_VAG_8_CYL",78="HELLEN_121_VAG_V6_CYL",79="HELLEN_121_VAG_VR6_CYL",36="HELLEN_128_MERCEDES_4_CYL",88="HELLEN_128_MERCEDES_6_CYL",89="HELLEN_128_MERCEDES_8_CYL",82="HELLEN_154_HYUNDAI_COUPE_BK1",95="HELLEN_154_HYUNDAI_COUPE_BK2",76="HELLEN_154_VAG",75="HELLEN_2CHAN_STIM_QC",74="HELLEN_4CHAN_STIM_QC",57="HELLEN_HONDA_BCM",43="HONDA_600",90="HONDA_K",66="HONDA_OBD1",91="HONDA_OBD2A",104="HYUNDAI_PB",60="L9779_BENCH_ENGINE",54="MAVERICK_X3",34="MAZDA_MIATA_NA6",80="MAZDA_MIATA_NA94",10="MAZDA_MIATA_NA96",83="MAZDA_MIATA_NB1",69="MAZDA_MIATA_NB2",86="MAZDA_MIATA_NB2_36",20="MAZDA_MIATA_NC",33="ME17_9_MISC",68="MERCEDES_M111",1="MIATA_PROTEUS_TCU",99="MINIMAL_PINS",12="MITSUBISHI_3A92",16="MITSUBISHI_4G93",31="MRE_BOARD_NEW_TEST",23="MRE_BODY_CONTROL",4="MRE_SECONDARY_CAN",37="MRE_SUBARU_EJ18",62="MRE_VW_B6",5="NISSAN_PRIMERA",35="POLARIS",9="POLARIS_RZR",30="PROTEUS_ANALOG_PWM_TEST",63="PROTEUS_BMW_M73",27="PROTEUS_GM_LS_4",25="PROTEUS_LUA_DEMO",103="PROTEUS_NISSAN_VQ35",42="PROTEUS_QC_TEST_BOARD",73="PROTEUS_STIM_QC",39="PROTEUS_VW_B6",29="SACHS",92="SIMULATOR_CONFIG",70="SUBARU_EG33",17="TCU_4R70W",100="TEST_100",101="TEST_101",18="TEST_33816",28="TEST_CRANK_ENGINE",48="TEST_DC_WASTEGATE_DISCOVERY",26="TEST_ENGINE",45="TEST_ENGINE_VVT",52="TEST_ISSUE_366_BOTH",53="TEST_ISSUE_366_RISE",93="TEST_ISSUE_6451",19="TEST_ROTARY",13="TOYOTA_1NZ_FE",44="TOYOTA_2JZ_GTE_VVTi",102="UNUSED102",49="UNUSED49",67="UNUSED67",94="UNUSED94",65="UNUSED_65",97="UNUSED_97",77="VAG_5_CYL",32="VW_ABA",96="WASTEGATE_PROTEUS_TEST" +startButtonSuppressOnStartUpMs = scalar, U16, 2, "", 1, 0, 0, 32000, 0 +sensorSnifferRpmThreshold = scalar, U16, 4, "RPM", 1, 0, 0, 10000, 0 +launchRpm = scalar, U16, 6, "rpm", 1, 0, 0, 20000, 0 +rpmHardLimit = scalar, U16, 8, "rpm", 1, 0, 0, 20000, 0 +engineSnifferRpmThreshold = scalar, U16, 10, "RPM", 1, 0, 0, 30000, 0 +multisparkMaxRpm = scalar, U08, 12, "rpm", 50.0, 0, 0, 3000, 0 +maxAcRpm = scalar, U08, 13, "rpm", 50.0, 0, 0, 10000, 0 +maxAcTps = scalar, U08, 14, "%", 1, 0, 0, 100, 0 +maxAcClt = scalar, U08, 15, "deg C", 1, 0, 0, 250, 0 +compressionRatio = scalar, F32, 16, "CR", 1, 0, 0, 300, 1 +wastegatePositionMin = scalar, U16, 20, "mv", 1, 0, 0, 5000, 0 +wastegatePositionMax = scalar, U16, 22, "mv", 1, 0, 0, 5000, 0 +idlePositionMin = scalar, U16, 24, "mv", 1, 0, 0, 5000, 0 +idlePositionMax = scalar, U16, 26, "mv", 1, 0, 0, 5000, 0 +mainRelayPin = bits, U16, 28, [0:8], $output_pin_e_list +sdCardCsPin = bits, U16, 30, [0:8], $gpio_list +canTxPin = bits, U16, 32, [0:8], $gpio_list +canRxPin = bits, U16, 34, [0:8], $gpio_list +torqueReductionTriggerPin = bits, U16, 36, [0:8], $switch_input_pin_e_list +launchFuelAdderPercent = scalar, S08, 38, "%", 1, 0, 0, 100, 0 +etbJamTimeout = scalar, U08, 39, "sec", 0.02, 0, 0, 5, 2 +tachOutputPin = bits, U16, 40, [0:8], $output_pin_e_list +tachOutputPinMode = bits, U08, 42, [0:1], "default", "default inverted", "open collector", "open collector inverted" +acIdleExtraOffset = scalar, U08, 43, "%", 1, 0, 0, 100, 0 +manIdlePosition = scalar, F32, 44, "%", 1, 0, 0, 100, 0 +multisparkMaxSparkingAngle = scalar, U08, 48, "deg", 1, 0, 0, 60, 0 +multisparkMaxExtraSparkCount = scalar, U08, 49, "count", 1, 0, 1, 5, 0 +vvtControlMinRpm = scalar, S16, 50, "RPM", 1, 0, 0, 3000, 0 +injector_flow = scalar, F32, 52, "", 1, 0, 0, 99999, 2 +injector_battLagCorrBins = array, F32, 56, [8], "volts", 1, 0, 0, 20, 2 +injector_battLagCorr = array, F32, 88, [8], "ms", 1, 0, 0, 50, 2 +injectorSecondary_flow = scalar, F32, 120, "", 1, 0, 0, 99999, 2 +injectorSecondary_battLagCorrBins = array, F32, 124, [8], "volts", 1, 0, 0, 20, 2 +injectorSecondary_battLagCorr = array, F32, 156, [8], "ms", 1, 0, 0, 50, 2 +isForcedInduction = bits, U32, 188, [0:0], "false", "true" +useFordRedundantTps = bits, U32, 188, [1:1], "false", "true" +enableKline = bits, U32, 188, [2:2], "false", "true" +overrideTriggerGaps = bits, U32, 188, [3:3], "false", "true" +enableFan1WithAc = bits, U32, 188, [4:4], "false", "true" +enableFan2WithAc = bits, U32, 188, [5:5], "false", "true" +disableFan1WhenStopped = bits, U32, 188, [6:6], "false", "true" +disableFan2WhenStopped = bits, U32, 188, [7:7], "false", "true" +enableTrailingSparks = bits, U32, 188, [8:8], "false", "true" +etb_use_two_wires = bits, U32, 188, [9:9], "false", "true" +isDoubleSolenoidIdle = bits, U32, 188, [10:10], "false", "true" +useEeprom = bits, U32, 188, [11:11], "false", "true" +useCicPidForIdle = bits, U32, 188, [12:12], "false", "true" +useTLE8888_cranking_hack = bits, U32, 188, [13:13], "false", "true" +kickStartCranking = bits, U32, 188, [14:14], "false", "true" +useSeparateIdleTablesForCrankingTaper = bits, U32, 188, [15:15], "false", "true" +launchControlEnabled = bits, U32, 188, [16:16], "false", "true" +doNotFilterTriggerEdgeNoise = bits, U32, 188, [17:17], "with filter", "without filter" +antiLagEnabled = bits, U32, 188, [18:18], "false", "true" +useRunningMathForCranking = bits, U32, 188, [19:19], "Fixed", "Fuel Map" +displayLogicLevelsInEngineSniffer = bits, U32, 188, [20:20], "false", "true" +useTLE8888_stepper = bits, U32, 188, [21:21], "false", "true" +usescriptTableForCanSniffingFiltering = bits, U32, 188, [22:22], "false", "true" +verboseCan = bits, U32, 188, [23:23], "Do not print", "Print all" +artificialTestMisfire = bits, U32, 188, [24:24], "No thank you", "Danger Mode" +useFordRedundantPps = bits, U32, 188, [25:25], "false", "true" +cltSensorPulldown = bits, U32, 188, [26:26], "false", "true" +iatSensorPulldown = bits, U32, 188, [27:27], "false", "true" +allowIdenticalPps = bits, U32, 188, [28:28], "false", "true" +overrideVvtTriggerGaps = bits, U32, 188, [29:29], "false", "true" +useSpiImu = bits, U32, 188, [30:30], "false", "true" +enableStagedInjection = bits, U32, 188, [31:31], "false", "true" +tpsMin = scalar, S16, 192, "ADC", 1, 0, 0, 1023, 0 +tpsMax = scalar, S16, 194, "ADC", 1, 0, 0, 1023, 0 +tpsErrorDetectionTooLow = scalar, S16, 196, "%", 1, 0, -10, 0, 0 +tpsErrorDetectionTooHigh = scalar, S16, 198, "%", 1, 0, 100, 110, 0 +cranking_baseFuel = scalar, F32, 200, "mg", 1, 0, 0, 500, 1 +cranking_rpm = scalar, S16, 204, "RPM", 1, 0, 0, 12000, 0 +ignitionDwellForCrankingMs = scalar, F32, 208, "ms", 1, 0, 0, 200, 1 +etbRevLimitStart = scalar, U16, 212, "rpm", 1, 0, 0, 15000, 0 +etbRevLimitRange = scalar, U16, 214, "rpm", 1, 0, 0, 2000, 0 +map_samplingAngleBins = array, F32, 216, [8], "", 1, 0, 0, 18000, 2 +map_samplingAngle = array, F32, 248, [8], "deg", 1, 0, -720, 720, 2 +map_samplingWindowBins = array, F32, 280, [8], "", 1, 0, 0, 18000, 2 +map_samplingWindow = array, F32, 312, [8], "deg", 1, 0, -720, 720, 2 +map_sensor_lowValue = scalar, F32, 344, "kpa", 1, 0, -400, 800, 2 +map_sensor_highValue = scalar, F32, 348, "kpa", 1, 0, -400, 800, 2 +map_sensor_type = bits, U08, 352, [0:4], "Custom", "DENSO183", "MPX4250", "HONDA3BAR", "NEON_2003", "22012AA090", "GM 3 Bar", "MPX4100", "Toyota 89420-02010", "MPX4250A", "Bosch 2.5", "Mazda1Bar", "GM 2 Bar", "GM 1 Bar", "MPXH6400", "MPXH6300", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +map_sensor_hwChannel = bits, U08, 353, [0:5], $adc_channel_e_list +clt_tempC_1 = scalar, F32, 356, "*C", 1, 0, -55, 200, 1 +clt_tempC_2 = scalar, F32, 360, "*C", 1, 0, -55, 200, 1 +clt_tempC_3 = scalar, F32, 364, "*C", 1, 0, -55, 200, 1 +clt_resistance_1 = scalar, F32, 368, "Ohm", 1, 0, 0, 1000000, 1 +clt_resistance_2 = scalar, F32, 372, "Ohm", 1, 0, 0, 1000000, 1 +clt_resistance_3 = scalar, F32, 376, "Ohm", 1, 0, 0, 1000000, 1 +clt_bias_resistor = scalar, F32, 380, "Ohm", 1, 0, 0, 200000, 1 +clt_adcChannel = bits, U08, 384, [0:5], $adc_channel_e_list +iat_tempC_1 = scalar, F32, 388, "*C", 1, 0, -55, 200, 1 +iat_tempC_2 = scalar, F32, 392, "*C", 1, 0, -55, 200, 1 +iat_tempC_3 = scalar, F32, 396, "*C", 1, 0, -55, 200, 1 +iat_resistance_1 = scalar, F32, 400, "Ohm", 1, 0, 0, 1000000, 1 +iat_resistance_2 = scalar, F32, 404, "Ohm", 1, 0, 0, 1000000, 1 +iat_resistance_3 = scalar, F32, 408, "Ohm", 1, 0, 0, 1000000, 1 +iat_bias_resistor = scalar, F32, 412, "Ohm", 1, 0, 0, 200000, 1 +iat_adcChannel = bits, U08, 416, [0:5], $adc_channel_e_list +launchTimingRetard = scalar, F32, 420, "deg", 1, 0, -180, 180, 2 +hip9011PrescalerAndSDO = scalar, S32, 424, "integer", 1, 0, 0, 32, 0 +alternator_iTermMin = scalar, S16, 428, "", 1, 0, -30000, 30000, 0 +alternator_iTermMax = scalar, S16, 430, "", 1, 0, -30000, 30000, 0 +displacement = scalar, U16, 432, "L", 0.001, 0, 0, 65, 3 +triggerSimulatorRpm = scalar, U16, 434, "RPM", 1, 0, 0, 30000, 0 +cylindersCount = scalar, U32, 436, "", 1, 0, 1, 12, 0 +firingOrder = bits, U08, 440, [0:6], "One Cylinder", "1-3-4-2", "1-2-4-3", "1-3-2-4", "1-5-3-6-2-4", "1-8-4-3-6-5-7-2", "1-2-4-5-3", "1-4-2-5-3-6", "1-2", "1-2-3-4-5-6", "1-2-3", "1-8-7-2-6-5-4-3", "1-5-4-2-6-3-7-8 Mustang", "1-6-3-2-5-4", "1-10-9-4-3-6-5-8-7_2", "1-7-5-11-3-9-6-12-2-8-4-10", "1-7-4-10-2-8-6-12-3-9-5-11", "1-4-3-2", "1-12-5-8-3-10-6-7-2-11-4-9", "1-2-7-8-4-5-6-3", "1-3-7-2-6-5-4-8 HO", "1-2-3-4-5-6-7-8-9", "INVALID", "1-2-3-4-5-6-7-8-9-10-11-12", "1-3-2", "1-2-3-4-5-6-7-8", "1-5-4-8-6-3-7-2", "1-4-3-6-2-5", "1-8-7-3-6-5-4-2", "1-6-2-4-3-5", "1-6-5-4-3-2", "1-4-5-2-3-6", "1-5-4-8-3-7-2-6 Voodoo", "1-6-5-10-2-7-3-8-4-9", "1-8-6-2-7-3-4-5 F136", "fo35", "fo36", "fo37", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +justATempTest = scalar, U08, 441, "", 1, 0, 0, 100, 0 +mapSyncThreshold = scalar, U08, 442, "kPa", 1, 0, 0, 50, 0 +torqueReductionIgnitionCut = scalar, S08, 443, "%", 1, 0, 0, 100, 0 +cylinderBore = scalar, F32, 444, "mm", 1, 0, 0, 2000, 2 +fuelAlgorithm = bits, U08, 448, [0:2], "Speed Density", "MAF Air Charge", "Alpha-N", "Lua", "INVALID", "INVALID", "INVALID", "INVALID" +ALSMaxTPS = scalar, U08, 449, "%", 1, 0, 0, 10, 0 +crankingInjectionMode = bits, U08, 450, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point" +injectionMode = bits, U08, 451, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point" +boostControlMinRpm = scalar, U16, 452, "", 1, 0, 0, 25000, 0 +boostControlMinTps = scalar, U08, 454, "", 1, 0, 0, 100, 0 +boostControlMinMap = scalar, U16, 456, "", 1, 0, 0, 1000, 0 +crankingTimingAngle = scalar, F32, 460, "deg", 1, 0, -30, 30, 0 +ignitionMode = bits, U08, 464, [0:1], "Single Coil", "Individual Coils", "Wasted Spark", "Two Distributors" +gapTrackingLengthOverride = scalar, S08, 465, "count", 1, 0, 1, 18, 0 +maxIdleVss = scalar, U08, 466, "kph", 1, 0, 0, 100, 0 +camDecoder2jzPrecision = scalar, U08, 467, "", 1, 0, 0, 100, 0 +minOilPressureAfterStart = scalar, U16, 468, "kPa", 1, 0, 0, 1000, 0 +timingMode = bits, U08, 470, [0:0], "dynamic", "fixed" +canNbcType = bits, U08, 471, [0:4], "None", "FIAT", "VAG", "MAZDA RX8", "BMW E46", "W202", "BMW E90", "Haltech", "VAG MQB", "Nissan VQ35", "Genesis Coupe", "Honda K", "AiM", "MS Simplified Broadcast", "type 14", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +fixedModeTiming = scalar, F32, 472, "RPM", 1, 0, 0, 3000, 0 +globalTriggerAngleOffset = scalar, F32, 476, "deg btdc", 1, 0, -720, 720, 0 +analogInputDividerCoefficient = scalar, F32, 480, "coef", 1, 0, 0.01, 10, 2 +vbattDividerCoeff = scalar, F32, 484, "coef", 1, 0, 0.01, 99, 2 +fanOnTemperature = scalar, F32, 488, "deg C", 1, 0, 0, 150, 0 +fanOffTemperature = scalar, F32, 492, "deg C", 1, 0, 0, 150, 0 +acrPin = bits, U16, 496, [0:8], $output_pin_e_list +driveWheelRevPerKm = scalar, F32, 500, "revs/km", 1, 0, 100, 1000, 1 +canSleepPeriodMs = scalar, S32, 504, "ms", 1, 0, 0, 1000, 2 +byFirmwareVersion = scalar, S32, 508, "index", 1, 0, 0, 300, 0 +tps1_1AdcChannel = bits, U08, 512, [0:5], $adc_channel_e_list +vbattAdcChannel = bits, U08, 513, [0:5], $adc_channel_e_list +fuelLevelSensor = bits, U08, 514, [0:5], $adc_channel_e_list +tps2_1AdcChannel = bits, U08, 515, [0:5], $adc_channel_e_list +idle_derivativeFilterLoss = scalar, F32, 516, "x", 1, 0, -1000000, 1000000, 4 +trailingSparkAngle = scalar, S32, 520, "angle", 1, 0, 0, 720, 0 +trigger_type = bits, U32, 524, [0:6], "custom toothed wheel", "Ford Aspire", "Dodge Neon 1995", "Miata NA", "INVALID", "GM_7X", "Daihatsu 3 cylinder", "Mazda SOHC 4", "60-2", "36-1", "Mercedes Two Segment", "Single Tooth", "EZ30", "INVALID", "Dodge Neon 2003", "Mazda DOHC 1+4", "1+1", "INVALID", "Half Moon", "Dodge Ram 1+16", "60-2 Wrong Polarity", "Benelli Tre", "Dodge Stratus", "36_2_2_2", "Nissan Primera", "dev 2JZ 3/34 simulator", "Rover K", "GM 24x 5 degree", "Honda CBR 600 Cam", "INVALID", "Honda CBR 600 custom", "3-1 skipped", "Dodge Neon 2003 crank", "Miata NB", "INVALID", "INVALID", "Subaru 7+6", "Jeep 18-2-2-2", "12crank/24cam", "Dodge Neon 1995 crank only", "Jeep XJ 4 cyl", "FiatIAQ_P8", "Mazda Z5", "INVALID", "Renix 44-2-2", "Renix 66-2-2-2", "Honda K 12+1", "INVALID", "36-2", "Subaru SVX", "Suzuki K6A", "Subaru 7 without 6", "INVALID", "INVALID", "GM 60-2-2-2", "Skoda Favorit", "Barra 3+1 Cam", "Kawa KX450F", "Nissan VQ35", "INVALID", "Nissan VQ30", "Nissan QR25", "INVALID", "Subaru SVX Crank 1", "Subaru SVX Cam VVT", "Ford PIP", "Suzuki G13B", "Honda K 4+1", "Nissan MR18 Crank", "32-2", "36-2-1", "36-2-1-1", "3-0", "INVALID", "GM 24x 3 degree", "60-2-2 F3R", "Mitsu 4G63 Crank", "x2 30 Deg camshaft BTDC", "INVALID", "Mitsu 6G72 Cam", "6-0", "Daihatsu 4 cylinder", "INVALID", "dev", "Nissan HR", "Arctic Cat", "HR12 in", "HR12 ex", "trg88", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +trigger_customTotalToothCount = scalar, S32, 528, "number", 1, 0, 1, 300, 0 +trigger_customSkippedToothCount = scalar, S32, 532, "number", 1, 0, 0, 300, 0 +airByRpmTaper = scalar, F32, 536, "%", 1, 0, 0, 50, 1 +hip9011SpiDevice = bits, U08, 540, [0:2], "Off", "SPI1", "SPI2", "SPI3", "SPI4", "SPI5", "SPI6", "INVALID" +boostControlSafeDutyCycle = scalar, U08, 541, "%", 1, 0, 0, 100, 0 +mafAdcChannel = bits, U08, 542, [0:5], $adc_channel_e_list +acrRevolutions = scalar, U08, 543, "", 1, 0, 0, 100, 0 +calibrationBirthday = scalar, S32, 544, "", 1, 0, 0, 100, 0 +adcVcc = scalar, F32, 548, "volts", 1, 0, 0, 6, 3 +mapCamDetectionAnglePosition = scalar, F32, 552, "Deg", 1, 0, 0, 360, 0 +camInputs1 = bits, U16, 556, [0:8], $brain_input_pin_e_list +camInputs2 = bits, U16, 558, [0:8], $brain_input_pin_e_list +camInputs3 = bits, U16, 560, [0:8], $brain_input_pin_e_list +camInputs4 = bits, U16, 562, [0:8], $brain_input_pin_e_list +afr_hwChannel = bits, U08, 564, [0:5], $adc_channel_e_list +afr_hwChannel2 = bits, U08, 565, [0:5], $adc_channel_e_list +afr_v1 = scalar, F32, 568, "volts", 1, 0, 0, 10, 2 +afr_value1 = scalar, F32, 572, "AFR", 1, 0, 0, 1000, 2 +afr_v2 = scalar, F32, 576, "volts", 1, 0, 0, 10, 2 +afr_value2 = scalar, F32, 580, "AFR", 1, 0, 0, 1000, 2 +throttlePedalPositionAdcChannel = bits, U08, 584, [0:5], $adc_channel_e_list +etbSplit = scalar, U08, 585, "%", 0.1, 0, 0, 5, 1 +tle6240_cs = bits, U16, 586, [0:8], $gpio_list +tle6240_csPinMode = bits, U08, 588, [0:1], "default", "default inverted", "open collector", "open collector inverted" +mc33810_csPinMode = bits, U08, 589, [0:1], "default", "default inverted", "open collector", "open collector inverted" +throttlePedalUpPin = bits, U16, 590, [0:8], $switch_input_pin_e_list +baroSensor_lowValue = scalar, F32, 592, "kpa", 1, 0, -400, 800, 2 +baroSensor_highValue = scalar, F32, 596, "kpa", 1, 0, -400, 800, 2 +baroSensor_type = bits, U08, 600, [0:4], "Custom", "DENSO183", "MPX4250", "HONDA3BAR", "NEON_2003", "22012AA090", "GM 3 Bar", "MPX4100", "Toyota 89420-02010", "MPX4250A", "Bosch 2.5", "Mazda1Bar", "GM 2 Bar", "GM 1 Bar", "MPXH6400", "MPXH6300", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +baroSensor_hwChannel = bits, U08, 601, [0:5], $adc_channel_e_list +idle_solenoidFrequency = scalar, S32, 604, "Hz", 1, 0, 0, 3000, 0 +idle_solenoidPin = bits, U16, 608, [0:8], $output_pin_e_list +idle_stepperDirectionPin = bits, U16, 610, [0:8], $gpio_list +idle_stepperStepPin = bits, U16, 612, [0:8], $gpio_list +idle_solenoidPinMode = bits, U08, 614, [0:1], "default", "default inverted", "open collector", "open collector inverted" +knockRetardAggression = scalar, U08, 616, "%", 0.1, 0, 0, 20, 1 +knockRetardReapplyRate = scalar, U08, 617, "deg/s", 0.1, 0, 0, 10, 1 +engineSyncCam = bits, S08, 618, [0:1], "Intake First Bank", "Exhaust First Bank", "Intake Second Bank", "Exhaust Second Bank" +sdCardCsPinMode = bits, U08, 619, [0:1], "default", "default inverted", "open collector", "open collector inverted" +vssGearRatio = scalar, U16, 620, "ratio", 0.001, 0, 0, 60, 3 +vssFilterReciprocal = scalar, U08, 622, "", 1, 0, 3, 200 0 +vssToothCount = scalar, U08, 623, "count", 1, 0, 1, 100, 0 +idleVeOverrideMode = bits, U08, 624, [0:1], "None", "MAP", "TPS", "INVALID" +l9779_cs = bits, U16, 626, [0:8], $gpio_list +injectionPins1 = bits, U16, 628, [0:8], $output_pin_e_list +injectionPins2 = bits, U16, 630, [0:8], $output_pin_e_list +injectionPins3 = bits, U16, 632, [0:8], $output_pin_e_list +injectionPins4 = bits, U16, 634, [0:8], $output_pin_e_list +injectionPins5 = bits, U16, 636, [0:8], $output_pin_e_list +injectionPins6 = bits, U16, 638, [0:8], $output_pin_e_list +injectionPins7 = bits, U16, 640, [0:8], $output_pin_e_list +injectionPins8 = bits, U16, 642, [0:8], $output_pin_e_list +injectionPins9 = bits, U16, 644, [0:8], $output_pin_e_list +injectionPins10 = bits, U16, 646, [0:8], $output_pin_e_list +injectionPins11 = bits, U16, 648, [0:8], $output_pin_e_list +injectionPins12 = bits, U16, 650, [0:8], $output_pin_e_list +ignitionPins1 = bits, U16, 652, [0:8], $output_pin_e_list +ignitionPins2 = bits, U16, 654, [0:8], $output_pin_e_list +ignitionPins3 = bits, U16, 656, [0:8], $output_pin_e_list +ignitionPins4 = bits, U16, 658, [0:8], $output_pin_e_list +ignitionPins5 = bits, U16, 660, [0:8], $output_pin_e_list +ignitionPins6 = bits, U16, 662, [0:8], $output_pin_e_list +ignitionPins7 = bits, U16, 664, [0:8], $output_pin_e_list +ignitionPins8 = bits, U16, 666, [0:8], $output_pin_e_list +ignitionPins9 = bits, U16, 668, [0:8], $output_pin_e_list +ignitionPins10 = bits, U16, 670, [0:8], $output_pin_e_list +ignitionPins11 = bits, U16, 672, [0:8], $output_pin_e_list +ignitionPins12 = bits, U16, 674, [0:8], $output_pin_e_list +injectionPinMode = bits, U08, 676, [0:1], "default", "default inverted", "open collector", "open collector inverted" +ignitionPinMode = bits, U08, 677, [0:1], "default", "default inverted", "open collector", "open collector inverted" +fuelPumpPin = bits, U16, 678, [0:8], $output_pin_e_list +fuelPumpPinMode = bits, U08, 680, [0:1], "default", "default inverted", "open collector", "open collector inverted" +gapVvtTrackingLengthOverride = scalar, S08, 681, "count", 1, 0, 1, 4, 0 +malfunctionIndicatorPin = bits, U16, 682, [0:8], $output_pin_e_list +malfunctionIndicatorPinMode = bits, U08, 684, [0:1], "default", "default inverted", "open collector", "open collector inverted" +fanPinMode = bits, U08, 685, [0:1], "default", "default inverted", "open collector", "open collector inverted" +fanPin = bits, U16, 686, [0:8], $output_pin_e_list +clutchDownPin = bits, U16, 688, [0:8], $switch_input_pin_e_list +alternatorControlPin = bits, U16, 690, [0:8], $output_pin_e_list +alternatorControlPinMode = bits, U08, 692, [0:1], "default", "default inverted", "open collector", "open collector inverted" +clutchDownPinMode = bits, U08, 693, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +digitalPotentiometerChipSelect1 = bits, U16, 694, [0:8], $gpio_list +digitalPotentiometerChipSelect2 = bits, U16, 696, [0:8], $gpio_list +digitalPotentiometerChipSelect3 = bits, U16, 698, [0:8], $gpio_list +digitalPotentiometerChipSelect4 = bits, U16, 700, [0:8], $gpio_list +electronicThrottlePin1Mode = bits, U08, 702, [0:1], "default", "default inverted", "open collector", "open collector inverted" +max31855spiDevice = bits, U08, 703, [0:2], "Off", "SPI1", "SPI2", "SPI3", "SPI4", "SPI5", "SPI6", "INVALID" +debugTriggerSync = bits, U16, 704, [0:8], $gpio_list +digitalPotentiometerSpiDevice = bits, U08, 706, [0:2], "Off", "SPI1", "SPI2", "SPI3", "SPI4", "SPI5", "SPI6", "INVALID" +brakePedalPinMode = bits, U08, 707, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +mc33972_cs = bits, U16, 708, [0:8], $gpio_list +mc33972_csPinMode = bits, U08, 710, [0:1], "default", "default inverted", "open collector", "open collector inverted" +auxFastSensor1_adcChannel = bits, U08, 711, [0:5], $adc_channel_e_list +tps1_2AdcChannel = bits, U08, 712, [0:5], $adc_channel_e_list +tps2_2AdcChannel = bits, U08, 713, [0:5], $adc_channel_e_list +throttlePedalPositionSecondAdcChannel = bits, U08, 714, [0:5], $adc_channel_e_list +afr_type = bits, S08, 715, [0:2], "BPSX", "Innovate", "14Point7", "INVALID", "PLX", "Custom", "AEM", "INVALID" +mc33810_cs1 = bits, U16, 716, [0:8], $gpio_list +idle_antiwindupFreq = scalar, F32, 720, "x", 1, 0, -1000000, 1000000, 4 +triggerInputPins1 = bits, U16, 724, [0:8], $brain_input_pin_e_list +triggerInputPins2 = bits, U16, 726, [0:8], $brain_input_pin_e_list +mc33_t_min_boost = scalar, U16, 728, "us", 1, 0, 0, 10000, 0 +hip9011CsPinMode = bits, U08, 730, [0:1], "default", "default inverted", "open collector", "open collector inverted" +throttlePedalUpPinMode = bits, U08, 731, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +finalGearRatio = scalar, U16, 732, "ratio", 0.01, 0, 0, 10, 2 +tcuInputSpeedSensorPin = bits, U16, 734, [0:8], $brain_input_pin_e_list +tcuInputSpeedSensorTeeth = scalar, U08, 736, "", 1, 0, 0, 100, 0 +triggerSimulatorPins1 = bits, U16, 738, [0:8], $gpio_list +triggerSimulatorPins2 = bits, U16, 740, [0:8], $gpio_list +fordInjectorSmallPulseSlope = scalar, U16, 742, "g/s", 0.001, 0, 0, 65, 3 +triggerSimulatorPinModes1 = bits, U08, 744, [0:1], "default", "default inverted", "open collector", "open collector inverted" +triggerSimulatorPinModes2 = bits, U08, 745, [0:1], "default", "default inverted", "open collector", "open collector inverted" +maf2AdcChannel = bits, U08, 746, [0:5], $adc_channel_e_list +o2heaterPin = bits, U16, 748, [0:8], $output_pin_e_list +o2heaterPinModeTodO = bits, U08, 750, [0:1], "default", "default inverted", "open collector", "open collector inverted" +lambdaProtectionMinRpm = scalar, U08, 751, "RPM", 100.0, 0, 0, 25000, 0 +lambdaProtectionMinLoad = scalar, U08, 752, "%", 10.0, 0, 0, 1000, 0 +is_enabled_spi_1 = bits, U32, 756, [0:0], "false", "true" +is_enabled_spi_2 = bits, U32, 756, [1:1], "false", "true" +is_enabled_spi_3 = bits, U32, 756, [2:2], "false", "true" +isSdCardEnabled = bits, U32, 756, [3:3], "false", "true" +rusefiVerbose29b = bits, U32, 756, [4:4], "11 bit", "29 bit" +rethrowHardFault = bits, U32, 756, [5:5], "false", "true" +isHip9011Enabled = bits, U32, 756, [6:6], "false", "true" +requireFootOnBrakeToCrank = bits, U32, 756, [7:7], "false", "true" +verboseQuad = bits, U32, 756, [8:8], "false", "true" +useStepperIdle = bits, U32, 756, [9:9], "false", "true" +enabledStep1Limiter = bits, U32, 756, [10:10], "false", "true" +useTpicAdvancedMode = bits, U32, 756, [11:11], "false", "true" +lambdaProtectionEnable = bits, U32, 756, [12:12], "false", "true" +verboseTLE8888 = bits, U32, 756, [13:13], "false", "true" +enableVerboseCanTx = bits, U32, 756, [14:14], "false", "true" +externalRusEfiGdiModule = bits, U32, 756, [15:15], "false", "true" +flipWboChannels = bits, U32, 756, [16:16], "false", "true" +measureMapOnlyInOneCylinder = bits, U32, 756, [17:17], "false", "true" +stepperForceParkingEveryRestart = bits, U32, 756, [18:18], "false", "true" +isFasterEngineSpinUpEnabled = bits, U32, 756, [19:19], "false", "true" +coastingFuelCutEnabled = bits, U32, 756, [20:20], "false", "true" +useIacTableForCoasting = bits, U32, 756, [21:21], "false", "true" +useNoiselessTriggerDecoder = bits, U32, 756, [22:22], "false", "true" +useIdleTimingPidControl = bits, U32, 756, [23:23], "false", "true" +disableEtbWhenEngineStopped = bits, U32, 756, [24:24], "false", "true" +is_enabled_spi_4 = bits, U32, 756, [25:25], "false", "true" +pauseEtbControl = bits, U32, 756, [26:26], "false", "true" +tpsTpsPercentMode = bits, U32, 756, [27:27], "ms adder", "percent adder" +verboseKLine = bits, U32, 756, [28:28], "false", "true" +idleIncrementalPidCic = bits, U32, 756, [29:29], "false", "true" +enableAemXSeries = bits, U32, 756, [30:30], "false", "true" +unused32nd = bits, U32, 756, [31:31], "false", "true" +logicAnalyzerPins1 = bits, U16, 760, [0:8], $brain_input_pin_e_list +logicAnalyzerPins2 = bits, U16, 762, [0:8], $brain_input_pin_e_list +logicAnalyzerPins3 = bits, U16, 764, [0:8], $brain_input_pin_e_list +logicAnalyzerPins4 = bits, U16, 766, [0:8], $brain_input_pin_e_list +mainRelayPinMode = bits, U08, 768, [0:1], "default", "default inverted", "open collector", "open collector inverted" +hip9011CsPin = bits, U16, 770, [0:8], $gpio_list +hip9011IntHoldPin = bits, U16, 772, [0:8], $gpio_list +hip9011IntHoldPinMode = bits, U08, 774, [0:1], "default", "default inverted", "open collector", "open collector inverted" +verboseCanBaseAddress = scalar, U32, 776, "", 1, 0, 0, 536870911, 0 +mc33_hvolt = scalar, U08, 780, "v", 1, 0, 40, 70, 0 +minimumBoostClosedLoopMap = scalar, U16, 782, "kPa", 1, 0, 0, 1000, 0 +initialIgnitionCutPercent = scalar, S08, 784, "%", 1, 0, 0, 100, 0 +finalIgnitionCutPercentBeforeLaunch = scalar, S08, 785, "%", 1, 0, 0, 100, 0 +boostOpenLoopYAxis = bits, U08, 786, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +l9779spiDevice = bits, U08, 787, [0:2], "Off", "SPI1", "SPI2", "SPI3", "SPI4", "SPI5", "SPI6", "INVALID" +imuType = bits, U08, 788, [0:4], "None", "VAG", "MM5.10", "type 3", "type 4", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +vehicleWeight = scalar, U16, 790, "kg", 1, 0, 0, 10000, 0 +idlePidRpmUpperLimit = scalar, S16, 792, "RPM", 1, 0, 0, 500, 0 +applyNonlinearBelowPulse = scalar, U16, 794, "ms", 0.001, 0, 0, 30, 3 +lps25BaroSensorScl = bits, U16, 796, [0:8], $gpio_list +lps25BaroSensorSda = bits, U16, 798, [0:8], $gpio_list +vehicleSpeedSensorInputPin = bits, U16, 800, [0:8], $brain_input_pin_e_list +clutchUpPin = bits, U16, 802, [0:8], $switch_input_pin_e_list +injectorNonlinearMode = bits, U08, 804, [0:1], "None", "Polynomial", "Ford (dual slope)", "INVALID" +clutchUpPinMode = bits, U08, 805, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +max31855_cs1 = bits, U16, 806, [0:8], $gpio_list +max31855_cs2 = bits, U16, 808, [0:8], $gpio_list +max31855_cs3 = bits, U16, 810, [0:8], $gpio_list +max31855_cs4 = bits, U16, 812, [0:8], $gpio_list +max31855_cs5 = bits, U16, 814, [0:8], $gpio_list +max31855_cs6 = bits, U16, 816, [0:8], $gpio_list +max31855_cs7 = bits, U16, 818, [0:8], $gpio_list +max31855_cs8 = bits, U16, 820, [0:8], $gpio_list +flexSensorPin = bits, U16, 822, [0:8], $brain_input_pin_e_list +torqueReductionArmingRpm = scalar, U16, 824, "rpm", 1, 0, 0, 20000, 0 +stepperDirectionPinMode = bits, U08, 826, [0:1], "default", "default inverted", "open collector", "open collector inverted" +mc33972spiDevice = bits, U08, 827, [0:2], "Off", "SPI1", "SPI2", "SPI3", "SPI4", "SPI5", "SPI6", "INVALID" +stoichRatioSecondary = scalar, U08, 828, ":1", 0.1, 0, 5, 25, 1 +etbMaximumPosition = scalar, U08, 829, "%", 1, 0, 70, 100, 0 +sdCardLogFrequency = scalar, U16, 830, "hz", 1, 0, 1, 250, 0 +idlePositionChannel = bits, U08, 832, [0:5], $adc_channel_e_list +launchCorrectionsEndRpm = scalar, U16, 834, "", 1, 0, 0, 32000, 0 +starterRelayDisablePin = bits, U16, 836, [0:8], $output_pin_e_list +starterRelayDisablePinMode = bits, U08, 838, [0:1], "default", "default inverted", "open collector", "open collector inverted" +secondSolenoidPin = bits, U16, 840, [0:8], $output_pin_e_list +startStopButtonPin = bits, U16, 842, [0:8], $switch_input_pin_e_list +lambdaProtectionRestoreRpm = scalar, U08, 844, "RPM", 100.0, 0, 0, 25000, 0 +acRelayPinMode = bits, U08, 845, [0:1], "default", "default inverted", "open collector", "open collector inverted" +mapMinBufferLength = scalar, S32, 848, "count", 1, 0, 1, 24, 0 +idlePidDeactivationTpsThreshold = scalar, S16, 852, "%", 1, 0, 0, 50, 0 +stepperParkingExtraSteps = scalar, S16, 854, "%", 1, 0, 0, 3000, 0 +tps1SecondaryMin = scalar, U16, 856, "ADC", 1, 0, 0, 1000, 0 +tps1SecondaryMax = scalar, U16, 858, "ADC", 1, 0, 0, 1000, 0 +antiLagRpmTreshold = scalar, S16, 860, "rpm", 1, 0, 0, 20000, 0 +startCrankingDuration = scalar, U16, 862, "Seconds", 1, 0, 0, 30, 0 +triggerErrorPin = bits, U16, 864, [0:8], $gpio_list +triggerErrorPinMode = bits, U08, 866, [0:1], "default", "default inverted", "open collector", "open collector inverted" +acRelayPin = bits, U16, 868, [0:8], $output_pin_e_list +lambdaProtectionMinTps = scalar, U08, 870, "%", 1, 0, 0, 100, 0 +lambdaProtectionTimeout = scalar, U08, 871, "s", 0.1, 0, 0, 10, 1 +scriptSetting1 = scalar, F32, 872, "", 1, 0, 0, 18000, 2 +scriptSetting2 = scalar, F32, 876, "", 1, 0, 0, 18000, 2 +scriptSetting3 = scalar, F32, 880, "", 1, 0, 0, 18000, 2 +scriptSetting4 = scalar, F32, 884, "", 1, 0, 0, 18000, 2 +scriptSetting5 = scalar, F32, 888, "", 1, 0, 0, 18000, 2 +scriptSetting6 = scalar, F32, 892, "", 1, 0, 0, 18000, 2 +scriptSetting7 = scalar, F32, 896, "", 1, 0, 0, 18000, 2 +scriptSetting8 = scalar, F32, 900, "", 1, 0, 0, 18000, 2 +spi1mosiPin = bits, U16, 904, [0:8], $gpio_list +spi1misoPin = bits, U16, 906, [0:8], $gpio_list +spi1sckPin = bits, U16, 908, [0:8], $gpio_list +spi2mosiPin = bits, U16, 910, [0:8], $gpio_list +spi2misoPin = bits, U16, 912, [0:8], $gpio_list +spi2sckPin = bits, U16, 914, [0:8], $gpio_list +spi3mosiPin = bits, U16, 916, [0:8], $gpio_list +spi3misoPin = bits, U16, 918, [0:8], $gpio_list +spi3sckPin = bits, U16, 920, [0:8], $gpio_list +cdmInputPin = bits, U16, 922, [0:8], $gpio_list +consoleUartDevice = bits, U08, 924, [0:1], "Off", "UART1", "UART2", "UART3" +sensorChartMode = bits, S08, 925, [0:2], "none", "trigger", "INVALID", "RPM ACCEL", "DETAILED RPM", "Fast Aux1", "INVALID", "INVALID" +mafSensorType = bits, S08, 926, [0:1], "v0", "v1", "v2", "v3" +clutchUpPinInverted = bits, U32, 928, [0:0], "Normal", "Inverted" +clutchDownPinInverted = bits, U32, 928, [1:1], "Normal", "Inverted" +useHbridgesToDriveIdleStepper = bits, U32, 928, [2:2], "false", "true" +multisparkEnable = bits, U32, 928, [3:3], "false", "true" +enableLaunchRetard = bits, U32, 928, [4:4], "false", "true" +canInputBCM = bits, U32, 928, [5:5], "false", "true" +consumeObdSensors = bits, U32, 928, [6:6], "false", "true" +enableCanVss = bits, U32, 928, [7:7], "false", "true" +suppressWboWorkaround7048 = bits, U32, 928, [8:8], "false", "true" +showHumanReadableWarning = bits, U32, 928, [9:9], "false", "true" +stftIgnoreErrorMagnitude = bits, U32, 928, [10:10], "false", "true" +vvtBooleanForVerySpecialCases = bits, U32, 928, [11:11], "false", "true" +enableSoftwareKnock = bits, U32, 928, [12:12], "false", "true" +verboseVVTDecoding = bits, U32, 928, [13:13], "false", "true" +invertCamVVTSignal = bits, U32, 928, [14:14], "Rising", "Falling" +alphaNUseIat = bits, U32, 928, [15:15], "false", "true" +knockBankCyl1 = bits, U32, 928, [16:16], "Channel 1", "Channel 2" +knockBankCyl2 = bits, U32, 928, [17:17], "Channel 1", "Channel 2" +knockBankCyl3 = bits, U32, 928, [18:18], "Channel 1", "Channel 2" +knockBankCyl4 = bits, U32, 928, [19:19], "Channel 1", "Channel 2" +knockBankCyl5 = bits, U32, 928, [20:20], "Channel 1", "Channel 2" +knockBankCyl6 = bits, U32, 928, [21:21], "Channel 1", "Channel 2" +knockBankCyl7 = bits, U32, 928, [22:22], "Channel 1", "Channel 2" +knockBankCyl8 = bits, U32, 928, [23:23], "Channel 1", "Channel 2" +knockBankCyl9 = bits, U32, 928, [24:24], "Channel 1", "Channel 2" +knockBankCyl10 = bits, U32, 928, [25:25], "Channel 1", "Channel 2" +knockBankCyl11 = bits, U32, 928, [26:26], "Channel 1", "Channel 2" +knockBankCyl12 = bits, U32, 928, [27:27], "Channel 1", "Channel 2" +tcuEnabled = bits, U32, 928, [28:28], "false", "true" +canBroadcastUseChannelTwo = bits, U32, 928, [29:29], "first", "second" +useRawOutputToDriveIdleStepper = bits, U32, 928, [30:30], "false", "true" +verboseCan2 = bits, U32, 928, [31:31], "Do not print", "Print all" +etbIo1_directionPin1 = bits, U16, 932, [0:8], $gpio_list +etbIo1_directionPin2 = bits, U16, 934, [0:8], $gpio_list +etbIo1_controlPin = bits, U16, 936, [0:8], $gpio_list +etbIo1_disablePin = bits, U16, 938, [0:8], $gpio_list +etbIo2_directionPin1 = bits, U16, 940, [0:8], $gpio_list +etbIo2_directionPin2 = bits, U16, 942, [0:8], $gpio_list +etbIo2_controlPin = bits, U16, 944, [0:8], $gpio_list +etbIo2_disablePin = bits, U16, 946, [0:8], $gpio_list +boostControlPin = bits, U16, 948, [0:8], $output_pin_e_list +boostControlPinMode = bits, U08, 950, [0:1], "default", "default inverted", "open collector", "open collector inverted" +ALSActivatePin = bits, U16, 952, [0:8], $switch_input_pin_e_list +launchActivatePin = bits, U16, 954, [0:8], $switch_input_pin_e_list +boostPid_pFactor = scalar, F32, 956, "", 1, 0, -10000, 10000, 4 +boostPid_iFactor = scalar, F32, 960, "", 1, 0, -10000, 10000, 4 +boostPid_dFactor = scalar, F32, 964, "", 1, 0, -10000, 10000, 4 +boostPid_offset = scalar, S16, 968, "", 1, 0, -1000, 1000, 0 +boostPid_periodMs = scalar, S16, 970, "ms", 1, 0, 0, 3000, 0 +boostPid_minValue = scalar, S16, 972, "", 1, 0, -30000, 30000, 0 +boostPid_maxValue = scalar, S16, 974, "", 1, 0, -30000, 30000, 0 +boostType = bits, U08, 976, [0:0], "Open Loop", "Open + Closed Loop" +ignitionKeyDigitalPinMode = bits, U08, 977, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +ignitionKeyDigitalPin = bits, U16, 978, [0:8], $gpio_list +boostPwmFrequency = scalar, S32, 980, "Hz", 1, 0, 0, 3000, 0 +launchActivationMode = bits, S08, 984, [0:1], "Launch Button", "Clutch Down Switch", "Speed Based", "Brake Pedal" +antiLagActivationMode = bits, S08, 985, [0:0], "Switch Input", "Always Active" +tpsAccelLookback = scalar, U08, 986, "sec", 0.05, 0, 0, 5, 2 +noFuelTrimAfterDfcoTime = scalar, U08, 987, "sec", 0.1, 0, 0, 10, 1 +launchSpeedThreshold = scalar, S32, 988, "Kph", 1, 0, 0, 300, 0 +launchRpmWindow = scalar, S32, 992, "RPM", 1, 0, 0, 8000, 0 +triggerEventsTimeoutMs = scalar, F32, 996, "ms", 1, 0, 0, 3000, 3 +mapExpAverageAlpha = scalar, F32, 1000, "", 1, 0, 0, 1, 3 +magicNumberAvailableForDevTricks = scalar, F32, 1004, "", 1, 0, 0, 100, 0 +turbochargerFilter = scalar, F32, 1008, "", 1, 0, 0, 100, 0 +launchTpsThreshold = scalar, S32, 1012, "", 1, 0, 0, 20000, 0 +launchActivateDelay = scalar, F32, 1016, "", 1, 0, 0, 20000, 0 +stft_maxIdleRegionRpm = scalar, U08, 1020, "RPM", 50.0, 0, 0, 12000, 0 +stft_maxOverrunLoad = scalar, U16, 1022, "load", 1, 0, 0, 250, 0 +stft_minPowerLoad = scalar, U16, 1024, "load", 1, 0, 0, 250, 0 +stft_deadband = scalar, U08, 1026, "%", 0.1, 0, 0, 3, 1 +stft_minClt = scalar, S08, 1027, "C", 1, 0, -20, 100, 0 +stft_minAfr = scalar, U08, 1028, "afr", 0.1, 0, 10, 20, 1 +stft_maxAfr = scalar, U08, 1029, "afr", 0.1, 0, 10, 20, 1 +stft_startupDelay = scalar, U08, 1030, "seconds", 1, 0, 0, 250, 0 +stft_cellCfgs1_maxAdd = scalar, S08, 1032, "%", 1, 0, 0, 25, 0 +stft_cellCfgs1_maxRemove = scalar, S08, 1033, "%", 1, 0, -25, 0, 0 +stft_cellCfgs1_timeConstant = scalar, U16, 1034, "sec", 0.1, 0, 0.1, 100, 2 +stft_cellCfgs2_maxAdd = scalar, S08, 1036, "%", 1, 0, 0, 25, 0 +stft_cellCfgs2_maxRemove = scalar, S08, 1037, "%", 1, 0, -25, 0, 0 +stft_cellCfgs2_timeConstant = scalar, U16, 1038, "sec", 0.1, 0, 0.1, 100, 2 +stft_cellCfgs3_maxAdd = scalar, S08, 1040, "%", 1, 0, 0, 25, 0 +stft_cellCfgs3_maxRemove = scalar, S08, 1041, "%", 1, 0, -25, 0, 0 +stft_cellCfgs3_timeConstant = scalar, U16, 1042, "sec", 0.1, 0, 0.1, 100, 2 +stft_cellCfgs4_maxAdd = scalar, S08, 1044, "%", 1, 0, 0, 25, 0 +stft_cellCfgs4_maxRemove = scalar, S08, 1045, "%", 1, 0, -25, 0, 0 +stft_cellCfgs4_timeConstant = scalar, U16, 1046, "sec", 0.1, 0, 0.1, 100, 2 +stepperDcIo1_directionPin1 = bits, U16, 1048, [0:8], $gpio_list +stepperDcIo1_directionPin2 = bits, U16, 1050, [0:8], $gpio_list +stepperDcIo1_controlPin = bits, U16, 1052, [0:8], $gpio_list +stepperDcIo1_disablePin = bits, U16, 1054, [0:8], $gpio_list +stepperDcIo2_directionPin1 = bits, U16, 1056, [0:8], $gpio_list +stepperDcIo2_directionPin2 = bits, U16, 1058, [0:8], $gpio_list +stepperDcIo2_controlPin = bits, U16, 1060, [0:8], $gpio_list +stepperDcIo2_disablePin = bits, U16, 1062, [0:8], $gpio_list +engineMake = string, ASCII, 1064, 32 +engineCode = string, ASCII, 1096, 32 +vehicleName = string, ASCII, 1128, 32 +tcu_solenoid1 = bits, U16, 1160, [0:8], $output_pin_e_list +tcu_solenoid2 = bits, U16, 1162, [0:8], $output_pin_e_list +tcu_solenoid3 = bits, U16, 1164, [0:8], $output_pin_e_list +tcu_solenoid4 = bits, U16, 1166, [0:8], $output_pin_e_list +tcu_solenoid5 = bits, U16, 1168, [0:8], $output_pin_e_list +tcu_solenoid6 = bits, U16, 1170, [0:8], $output_pin_e_list +etbFunctions1 = bits, U08, 1172, [0:2], "None", "Throttle 1", "Throttle 2", "Idle Valve", "Wastegate", "INVALID", "INVALID", "INVALID" +etbFunctions2 = bits, U08, 1173, [0:2], "None", "Throttle 1", "Throttle 2", "Idle Valve", "Wastegate", "INVALID", "INVALID", "INVALID" +drv8860spiDevice = bits, U08, 1174, [0:2], "Off", "SPI1", "SPI2", "SPI3", "SPI4", "SPI5", "SPI6", "INVALID" +drv8860_cs = bits, U16, 1176, [0:8], $gpio_list +drv8860_csPinMode = bits, U08, 1178, [0:1], "default", "default inverted", "open collector", "open collector inverted" +drv8860_miso = bits, U16, 1180, [0:8], $gpio_list +luaOutputPins1 = bits, U16, 1182, [0:8], $output_pin_e_list +luaOutputPins2 = bits, U16, 1184, [0:8], $output_pin_e_list +luaOutputPins3 = bits, U16, 1186, [0:8], $output_pin_e_list +luaOutputPins4 = bits, U16, 1188, [0:8], $output_pin_e_list +luaOutputPins5 = bits, U16, 1190, [0:8], $output_pin_e_list +luaOutputPins6 = bits, U16, 1192, [0:8], $output_pin_e_list +luaOutputPins7 = bits, U16, 1194, [0:8], $output_pin_e_list +luaOutputPins8 = bits, U16, 1196, [0:8], $output_pin_e_list +vvtOffsets1 = scalar, F32, 1200, "value", 1, 0, -720, 1000, 1 +vvtOffsets2 = scalar, F32, 1204, "value", 1, 0, -720, 1000, 1 +vvtOffsets3 = scalar, F32, 1208, "value", 1, 0, -720, 1000, 1 +vvtOffsets4 = scalar, F32, 1212, "value", 1, 0, -720, 1000, 1 +vrThreshold1_rpmBins = array, U08, 1216, [6], "rpm", 50.0, 0, 0, 12000, 0 +vrThreshold1_values = array, U08, 1222, [6], "volts", 0.01, 0, 0, 2.5, 2 +vrThreshold1_pin = bits, U16, 1228, [0:8], $gpio_list +vrThreshold2_rpmBins = array, U08, 1232, [6], "rpm", 50.0, 0, 0, 12000, 0 +vrThreshold2_values = array, U08, 1238, [6], "volts", 0.01, 0, 0, 2.5, 2 +vrThreshold2_pin = bits, U16, 1244, [0:8], $gpio_list +gpPwmNote1 = string, ASCII, 1248, 16 +gpPwmNote2 = string, ASCII, 1264, 16 +gpPwmNote3 = string, ASCII, 1280, 16 +gpPwmNote4 = string, ASCII, 1296, 16 +tps2SecondaryMin = scalar, U16, 1312, "ADC", 1, 0, 0, 1000, 0 +tps2SecondaryMax = scalar, U16, 1314, "ADC", 1, 0, 0, 1000, 0 +widebandOnSecondBus = bits, U32, 1316, [0:0], "1", "2" +fuelClosedLoopCorrectionEnabled = bits, U32, 1316, [1:1], "false", "true" +oddFireEngine = bits, U32, 1316, [2:2], "false", "true" +alwaysWriteSdCard = bits, U32, 1316, [3:3], "false", "true" +knockDetectionUseDoubleFrequency = bits, U32, 1316, [4:4], "first harmonic", "second harmonic" +yesUnderstandLocking = bits, U32, 1316, [5:5], "no", "yes" +silentTriggerError = bits, U32, 1316, [6:6], "false", "true" +useLinearCltSensor = bits, U32, 1316, [7:7], "false", "true" +canReadEnabled = bits, U32, 1316, [8:8], "false", "true" +canWriteEnabled = bits, U32, 1316, [9:9], "false", "true" +useLinearIatSensor = bits, U32, 1316, [10:10], "false", "true" +enableOilPressureProtect = bits, U32, 1316, [11:11], "false", "true" +tachPulseDurationAsDutyCycle = bits, U32, 1316, [12:12], "Constant time", "Duty cycle" +isAlternatorControlEnabled = bits, U32, 1316, [13:13], "false", "true" +invertPrimaryTriggerSignal = bits, U32, 1316, [14:14], "Rising", "Falling" +invertSecondaryTriggerSignal = bits, U32, 1316, [15:15], "Rising", "Falling" +cutFuelOnHardLimit = bits, U32, 1316, [16:16], "no", "yes" +cutSparkOnHardLimit = bits, U32, 1316, [17:17], "no", "yes" +launchFuelCutEnable = bits, U32, 1316, [18:18], "false", "true" +launchSparkCutEnable = bits, U32, 1316, [19:19], "false", "true" +torqueReductionEnabled = bits, U32, 1316, [20:20], "false", "true" +torqueReductionTriggerPinInverted = bits, U32, 1316, [21:21], "false", "true" +limitTorqueReductionTime = bits, U32, 1316, [22:22], "false", "true" +verboseIsoTp = bits, U32, 1316, [23:23], "false", "true" +engineSnifferFocusOnInputs = bits, U32, 1316, [24:24], "false", "true" +launchActivateInverted = bits, U32, 1316, [25:25], "false", "true" +twoStroke = bits, U32, 1316, [26:26], "Four Stroke", "Two Stroke" +skippedWheelOnCam = bits, U32, 1316, [27:27], "On crankshaft", "On camshaft" +hipOutputChannel = bits, U08, 1320, [0:5], $adc_channel_e_list +acSwitch = bits, U16, 1322, [0:8], $switch_input_pin_e_list +vRefAdcChannel = bits, U08, 1324, [0:5], $adc_channel_e_list +etbNeutralPosition = scalar, U08, 1325, "%", 1, 0, 0, 100, 0 +idleMode = bits, U08, 1326, [0:0], "Open Loop + Closed Loop", "Open Loop" +isInjectionEnabled = bits, U32, 1328, [0:0], "false", "true" +isIgnitionEnabled = bits, U32, 1328, [1:1], "false", "true" +isCylinderCleanupEnabled = bits, U32, 1328, [2:2], "false", "true" +complexWallModel = bits, U32, 1328, [3:3], "Basic (constants)", "Advanced (tables)" +alwaysInstantRpm = bits, U32, 1328, [4:4], "false", "true" +isMapAveragingEnabled = bits, U32, 1328, [5:5], "false", "true" +overrideCrankingIacSetting = bits, U32, 1328, [6:6], "false", "true" +useSeparateAdvanceForIdle = bits, U32, 1328, [7:7], "false", "true" +isWaveAnalyzerEnabled = bits, U32, 1328, [8:8], "false", "true" +useSeparateVeForIdle = bits, U32, 1328, [9:9], "false", "true" +verboseTriggerSynchDetails = bits, U32, 1328, [10:10], "false", "true" +cutFuelInAcr = bits, U32, 1328, [11:11], "false", "true" +hondaK = bits, U32, 1328, [12:12], "false", "true" +twoWireBatchIgnition = bits, U32, 1328, [13:13], "false", "true" +useFixedBaroCorrFromMap = bits, U32, 1328, [14:14], "false", "true" +useSeparateAdvanceForCranking = bits, U32, 1328, [15:15], "Fixed (auto taper)", "Table" +useAdvanceCorrectionsForCranking = bits, U32, 1328, [16:16], "false", "true" +flexCranking = bits, U32, 1328, [17:17], "false", "true" +useIacPidMultTable = bits, U32, 1328, [18:18], "false", "true" +isBoostControlEnabled = bits, U32, 1328, [19:19], "false", "true" +launchSmoothRetard = bits, U32, 1328, [20:20], "false", "true" +isPhaseSyncRequiredForIgnition = bits, U32, 1328, [21:21], "false", "true" +useCltBasedRpmLimit = bits, U32, 1328, [22:22], "no", "yes" +forceO2Heating = bits, U32, 1328, [23:23], "no", "yes" +invertVvtControlIntake = bits, U32, 1328, [24:24], "advance", "retard" +invertVvtControlExhaust = bits, U32, 1328, [25:25], "advance", "retard" +useBiQuadOnAuxSpeedSensors = bits, U32, 1328, [26:26], "false", "true" +sdTriggerLog = bits, U32, 1328, [27:27], "normal", "trigger" +ALSActivateInverted = bits, U32, 1328, [28:28], "false", "true" +stepper_dc_use_two_wires = bits, U32, 1328, [29:29], "false", "true" +watchOutForLinearTime = bits, U32, 1328, [30:30], "false", "true" +engineChartSize = scalar, U32, 1332, "count", 1, 0, 0, 300, 0 +turboSpeedSensorMultiplier = scalar, F32, 1336, "mult", 1, 0, 0, 7000, 3 +camInputsDebug1 = bits, U16, 1340, [0:8], $gpio_list +camInputsDebug2 = bits, U16, 1342, [0:8], $gpio_list +camInputsDebug3 = bits, U16, 1344, [0:8], $gpio_list +camInputsDebug4 = bits, U16, 1346, [0:8], $gpio_list +acIdleRpmTarget = scalar, S16, 1348, "RPM", 1, 0, 0, 2000, 0 +warningPeriod = scalar, S16, 1350, "seconds", 1, 0, 0, 60, 0 +knockDetectionWindowStart = scalar, F32, 1352, "angle", 1, 0, -1000, 1000, 2 +knockDetectionWindowEnd = scalar, F32, 1356, "angle", 1, 0, -1000, 1000, 2 +idleStepperReactionTime = scalar, F32, 1360, "ms", 1, 0, 1, 300, 0 +idleStepperTotalSteps = scalar, S32, 1364, "count", 1, 0, 5, 3000, 0 +torqueReductionArmingApp = scalar, S32, 1368, "", 1, 0, 0, 20000, 0 +tachPulseDuractionMs = scalar, F32, 1372, "", 1, 0, 0, 100, 2 +wwaeTau = scalar, F32, 1376, "Seconds", 1, 0, 0, 3, 2 +alternatorControl_pFactor = scalar, F32, 1380, "", 1, 0, -10000, 10000, 4 +alternatorControl_iFactor = scalar, F32, 1384, "", 1, 0, -10000, 10000, 4 +alternatorControl_dFactor = scalar, F32, 1388, "", 1, 0, -10000, 10000, 4 +alternatorControl_offset = scalar, S16, 1392, "", 1, 0, -1000, 1000, 0 +alternatorControl_periodMs = scalar, S16, 1394, "ms", 1, 0, 0, 3000, 0 +alternatorControl_minValue = scalar, S16, 1396, "", 1, 0, -30000, 30000, 0 +alternatorControl_maxValue = scalar, S16, 1398, "", 1, 0, -30000, 30000, 0 +etb_pFactor = scalar, F32, 1400, "", 1, 0, -10000, 10000, 4 +etb_iFactor = scalar, F32, 1404, "", 1, 0, -10000, 10000, 4 +etb_dFactor = scalar, F32, 1408, "", 1, 0, -10000, 10000, 4 +etb_offset = scalar, S16, 1412, "", 1, 0, -1000, 1000, 0 +etb_periodMs = scalar, S16, 1414, "ms", 1, 0, 0, 3000, 0 +etb_minValue = scalar, S16, 1416, "", 1, 0, -30000, 30000, 0 +etb_maxValue = scalar, S16, 1418, "", 1, 0, -30000, 30000, 0 +triggerInputDebugPins1 = bits, U16, 1420, [0:8], $gpio_list +triggerInputDebugPins2 = bits, U16, 1422, [0:8], $gpio_list +airTaperRpmRange = scalar, S16, 1424, "RPM", 1, 0, 0, 1500, 0 +turboSpeedSensorInputPin = bits, U16, 1426, [0:8], $brain_input_pin_e_list +tps2Min = scalar, S16, 1428, "ADC", 1, 0, 0, 1023, 0 +tps2Max = scalar, S16, 1430, "ADC", 1, 0, 0, 1023, 0 +starterControlPin = bits, U16, 1432, [0:8], $output_pin_e_list +startStopButtonMode = bits, U08, 1434, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +mc33816_flag0 = bits, U16, 1436, [0:8], $gpio_list +tachPulsePerRev = scalar, U08, 1438, "Pulse", 1, 0, 1, 255, 0 +mapErrorDetectionTooLow = scalar, F32, 1440, "kPa", 1, 0, -100, 100, 2 +mapErrorDetectionTooHigh = scalar, F32, 1444, "kPa", 1, 0, -100, 800, 2 +multisparkSparkDuration = scalar, U16, 1448, "ms", 0.001, 0, 0, 3, 2 +multisparkDwell = scalar, U16, 1450, "ms", 0.001, 0, 0, 3, 2 +idleRpmPid_pFactor = scalar, F32, 1452, "", 1, 0, -10000, 10000, 4 +idleRpmPid_iFactor = scalar, F32, 1456, "", 1, 0, -10000, 10000, 4 +idleRpmPid_dFactor = scalar, F32, 1460, "", 1, 0, -10000, 10000, 4 +idleRpmPid_offset = scalar, S16, 1464, "", 1, 0, -1000, 1000, 0 +idleRpmPid_periodMs = scalar, S16, 1466, "ms", 1, 0, 0, 3000, 0 +idleRpmPid_minValue = scalar, S16, 1468, "", 1, 0, -30000, 30000, 0 +idleRpmPid_maxValue = scalar, S16, 1470, "", 1, 0, -30000, 30000, 0 +wwaeBeta = scalar, F32, 1472, "Fraction", 1, 0, 0, 1, 2 +binarySerialTxPin = bits, U16, 1476, [0:8], $gpio_list +binarySerialRxPin = bits, U16, 1478, [0:8], $gpio_list +auxValves1 = bits, U16, 1480, [0:8], $gpio_list +auxValves2 = bits, U16, 1482, [0:8], $gpio_list +tcuUpshiftButtonPin = bits, U16, 1484, [0:8], $switch_input_pin_e_list +tcuDownshiftButtonPin = bits, U16, 1486, [0:8], $switch_input_pin_e_list +throttlePedalUpVoltage = scalar, F32, 1488, "voltage", 1, 0, -6, 6, 2 +throttlePedalWOTVoltage = scalar, F32, 1492, "voltage", 1, 0, -6, 6, 2 +startUpFuelPumpDuration = scalar, S16, 1496, "seconds", 1, 0, 0, 6000, 0 +idlePidRpmDeadZone = scalar, S16, 1498, "RPM", 1, 0, 0, 800, 0 +torqueReductionTime = scalar, F32, 1500, "ms", 1, 0, 1, 2000, 0 +mc33810DisableRecoveryMode = bits, U32, 1504, [0:0], "false", "true" +mc33810Gpgd0Mode = bits, U32, 1504, [1:1], "false", "true" +mc33810Gpgd1Mode = bits, U32, 1504, [2:2], "false", "true" +mc33810Gpgd2Mode = bits, U32, 1504, [3:3], "false", "true" +mc33810Gpgd3Mode = bits, U32, 1504, [4:4], "false", "true" +enableExtendedCanBroadcast = bits, U32, 1504, [5:5], "false", "true" +luaCanRxWorkaround = bits, U32, 1504, [6:6], "false", "true" +flexSensorInverted = bits, U32, 1504, [7:7], "Normal", "Inverted" +useHardSkipInTraction = bits, U32, 1504, [8:8], "false", "true" +useAuxSpeedForSlipRatio = bits, U32, 1504, [9:9], "false", "true" +useVssAsSecondWheelSpeed = bits, U32, 1504, [10:10], "false", "true" +is_enabled_spi_5 = bits, U32, 1504, [11:11], "false", "true" +is_enabled_spi_6 = bits, U32, 1504, [12:12], "false", "true" +enableAemXSeriesEgt = bits, U32, 1504, [13:13], "false", "true" +startRequestPinInverted = bits, U32, 1504, [14:14], "Normal", "Inverted" +tcu_rangeSensorPulldown = bits, U32, 1504, [15:15], "false", "true" +brakePedalPinInverted = bits, U32, 1504, [16:16], "Normal", "Inverted" +devBit0 = bits, U32, 1504, [17:17], "false", "true" +devBit1 = bits, U32, 1504, [18:18], "false", "true" +devBit2 = bits, U32, 1504, [19:19], "false", "true" +devBit3 = bits, U32, 1504, [20:20], "false", "true" +devBit4 = bits, U32, 1504, [21:21], "false", "true" +devBit5 = bits, U32, 1504, [22:22], "false", "true" +devBit6 = bits, U32, 1504, [23:23], "false", "true" +devBit7 = bits, U32, 1504, [24:24], "false", "true" +invertExhaustCamVVTSignal = bits, U32, 1504, [25:25], "Rising", "Falling" +enableKnockSpectrogram = bits, U32, 1504, [26:26], "false", "true" +enableKnockSpectrogramFilter = bits, U32, 1504, [27:27], "false", "true" +afterCrankingIACtaperDuration = scalar, S16, 1508, "cycles", 1, 0, 0, 5000, 0 +iacByTpsTaper = scalar, S16, 1510, "percent", 1, 0, 0, 500, 0 +accelerometerCsPin = bits, U16, 1512, [0:8], $gpio_list +coastingFuelCutVssLow = scalar, U08, 1514, "kph", 1, 0, 0, 255, 0 +coastingFuelCutVssHigh = scalar, U08, 1515, "kph", 1, 0, 0, 255, 0 +tpsAccelEnrichmentThreshold = scalar, F32, 1516, "roc", 1, 0, 0, 200, 1 +auxSpeedSensorInputPin1 = bits, U16, 1520, [0:8], $brain_input_pin_e_list +auxSpeedSensorInputPin2 = bits, U16, 1522, [0:8], $brain_input_pin_e_list +totalGearsCount = scalar, U08, 1524, "", 1, 0, 1, 10, 0 +injectionTimingMode = bits, U08, 1525, [0:1], "End of injection", "Start of injection", "Center of injection", "INVALID" +debugMode = bits, U08, 1526, [0:5], "INVALID", "TPS acceleration enrichment", "INVALID", "Stepper Idle Control", "Engine Load accl enrich", "Trigger Counters", "Soft Spark Cut", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "SD card", "sr5", "Knock", "INVALID", "Electronic Throttle", "Executor", "Bench Test / TS commands", "INVALID", "Analog inputs #1", "INSTANT_RPM", "INVALID", "Status", "INVALID", "INVALID", "MAP", "Metrics", "INVALID", "Ion Sense", "TLE8888", "Analog inputs #2", "Dwell Metric", "INVALID", "INVALID", "Boost Control", "INVALID", "INVALID", "ETB Autotune", "Composite Log", "INVALID", "INVALID", "INVALID", "Dyno_View", "Logic_Analyzer", "INVALID", "TCU", "Lua", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +fan1ExtraIdle = scalar, U08, 1527, "%", 1, 0, 0, 100, 0 +uartConsoleSerialSpeed = scalar, U32, 1528, "BPs", 1, 0, 0, 1000000, 0 +tpsDecelEnleanmentThreshold = scalar, F32, 1532, "roc", 1, 0, 0, 200, 1 +tpsDecelEnleanmentMultiplier = scalar, F32, 1536, "coeff", 1, 0, 0, 200, 2 +torqueReductionIgnitionRetard = scalar, F32, 1540, "deg", 1, 0, -180, 180, 2 +throttlePedalSecondaryUpVoltage = scalar, F32, 1544, "voltage", 1, 0, -6, 6, 2 +throttlePedalSecondaryWOTVoltage = scalar, F32, 1548, "voltage", 1, 0, -6, 6, 2 +canBaudRate = bits, U08, 1552, [0:2], "50kbps", "83.33kbps", "100kbps", "125kbps", "250kbps", "500kbps", "1Mbps", "INVALID" +veOverrideMode = bits, U08, 1553, [0:1], "None", "MAP", "TPS", "INVALID" +can2BaudRate = bits, U08, 1554, [0:2], "50kbps", "83.33kbps", "100kbps", "125kbps", "250kbps", "500kbps", "1Mbps", "INVALID" +afrOverrideMode = bits, U08, 1555, [0:2], "None", "MAP", "TPS", "Acc Pedal", "Cyl Filling %", "INVALID", "INVALID", "INVALID" +mc33_hpfp_i_peak = scalar, U08, 1556, "A", 0.1, 0, 0, 25, 1 +mc33_hpfp_i_hold = scalar, U08, 1557, "A", 0.1, 0, 0, 25, 1 +mc33_hpfp_i_hold_off = scalar, U08, 1558, "us", 1, 0, 0, 255, 0 +mc33_hpfp_max_hold = scalar, U08, 1559, "ms", 1, 0, 0, 255, 0 +stepperDcInvertedPins = bits, U32, 1560, [0:0], "false", "true" +canOpenBLT = bits, U32, 1560, [1:1], "false", "true" +can2OpenBLT = bits, U32, 1560, [2:2], "false", "true" +injectorFlowAsMassFlow = bits, U32, 1560, [3:3], "volumetric flow", "mass flow" +boardUseCanTerminator = bits, U32, 1560, [4:4], "false", "true" +kLineDoHondaSend = bits, U32, 1560, [5:5], "false", "true" +can1ListenMode = bits, U32, 1560, [6:6], "false", "true" +can2ListenMode = bits, U32, 1560, [7:7], "false", "true" +camDecoder2jzPosition = scalar, U08, 1564, "", 1, 0, 0, 100, 0 +mc33810maxDwellTimer = bits, U08, 1565, [0:2], "2 mS", "4 mS", "8 mS", "16 mS", "32 mS", "64 mS", "INVALID", "INVALID" +benchTestOnTime = scalar, U16, 1566, "ms", 0.01, 0, 0, 500, 2 +lambdaProtectionRestoreTps = scalar, U08, 1568, "%", 1, 0, 0, 100, 0 +lambdaProtectionRestoreLoad = scalar, U08, 1569, "%", 10.0, 0, 0, 1000, 0 +launchActivatePinMode = bits, U08, 1570, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +can2TxPin = bits, U16, 1572, [0:8], $gpio_list +can2RxPin = bits, U16, 1574, [0:8], $gpio_list +starterControlPinMode = bits, U08, 1576, [0:1], "default", "default inverted", "open collector", "open collector inverted" +wastegatePositionSensor = bits, U08, 1577, [0:5], $adc_channel_e_list +ignOverrideMode = bits, U08, 1578, [0:2], "None", "MAP", "TPS", "Acc Pedal", "Cyl Filling %", "INVALID", "INVALID", "INVALID" +injectorPressureType = bits, U08, 1579, [0:0], "Low", "High" +hpfpValvePin = bits, U16, 1580, [0:8], $output_pin_e_list +hpfpValvePinMode = bits, U08, 1582, [0:1], "default", "default inverted", "open collector", "open collector inverted" +boostCutPressure = scalar, F32, 1584, "kPa (absolute)", 1, 0, 0, 1000, 0 +tchargeBins = array, U08, 1588, [16], "kg/h", 5.0, 0, 0, 1200, 0 +tchargeValues = array, U08, 1604, [16], "ratio", 0.01, 0, 0, 1, 2 +fixedTiming = scalar, F32, 1620, "deg", 1, 0, -720, 720, 2 +mapLowValueVoltage = scalar, F32, 1624, "v", 1, 0, 0, 10, 2 +mapHighValueVoltage = scalar, F32, 1628, "v", 1, 0, 0, 10, 2 +egoValueShift = scalar, F32, 1632, "value", 1, 0, -10, 10, 2 +vvtPins1 = bits, U16, 1636, [0:8], $output_pin_e_list +vvtPins2 = bits, U16, 1638, [0:8], $output_pin_e_list +vvtPins3 = bits, U16, 1640, [0:8], $output_pin_e_list +vvtPins4 = bits, U16, 1642, [0:8], $output_pin_e_list +crankingIACposition = scalar, S32, 1644, "percent", 1, 0, -100, 100, 0 +tChargeMinRpmMinTps = scalar, F32, 1648, "", 1, 0, 0, 3, 4 +tChargeMinRpmMaxTps = scalar, F32, 1652, "", 1, 0, 0, 3, 4 +tChargeMaxRpmMinTps = scalar, F32, 1656, "", 1, 0, 0, 3, 4 +tChargeMaxRpmMaxTps = scalar, F32, 1660, "", 1, 0, 0, 3, 4 +vvtOutputFrequency = scalar, U16, 1664, "Hz", 1, 0, 0, 3000, 0 +minimumIgnitionTiming = scalar, S08, 1666, "deg BTDC", 1, 0, -90, 90, 0 +maximumIgnitionTiming = scalar, S08, 1667, "deg BTDC", 1, 0, -90, 90, 0 +alternatorPwmFrequency = scalar, S32, 1668, "Hz", 1, 0, 0, 3000, 0 +vvtMode1 = bits, U08, 1672, [0:5], "Inactive", "Single Tooth", "Toyota 3 Tooth", "Miata NB2", "Mitsu 4G69", "Bosch Quick Start", "4/1", "ST 170", "Ford Barra 3+1", "Nissan VQ", "Honda K Intake", "Nissan MR18", "Mitsu 3A92", "Sync by MAP", "Mitsu 6G75", "Mazda Skyactiv", "Honda K Exhaust", "Mitsubishi 4G92/93/94", "Mitsubishi 4G63", "Ford Coyote", "Mitsu 6G72", "Honda 600", "Mazda L", "Dev", "HR12DDR In", "vvt25", "vvt26", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +vvtMode2 = bits, U08, 1673, [0:5], "Inactive", "Single Tooth", "Toyota 3 Tooth", "Miata NB2", "Mitsu 4G69", "Bosch Quick Start", "4/1", "ST 170", "Ford Barra 3+1", "Nissan VQ", "Honda K Intake", "Nissan MR18", "Mitsu 3A92", "Sync by MAP", "Mitsu 6G75", "Mazda Skyactiv", "Honda K Exhaust", "Mitsubishi 4G92/93/94", "Mitsubishi 4G63", "Ford Coyote", "Mitsu 6G72", "Honda 600", "Mazda L", "Dev", "HR12DDR In", "vvt25", "vvt26", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +fan2ExtraIdle = scalar, U08, 1674, "%", 1, 0, 0, 100, 0 +primingDelay = scalar, U08, 1675, "sec", 0.01, 0, 0, 1, 2 +auxAnalogInputs1 = bits, U08, 1676, [0:5], $adc_channel_e_list +auxAnalogInputs2 = bits, U08, 1677, [0:5], $adc_channel_e_list +auxAnalogInputs3 = bits, U08, 1678, [0:5], $adc_channel_e_list +auxAnalogInputs4 = bits, U08, 1679, [0:5], $adc_channel_e_list +auxAnalogInputs5 = bits, U08, 1680, [0:5], $adc_channel_e_list +auxAnalogInputs6 = bits, U08, 1681, [0:5], $adc_channel_e_list +auxAnalogInputs7 = bits, U08, 1682, [0:5], $adc_channel_e_list +auxAnalogInputs8 = bits, U08, 1683, [0:5], $adc_channel_e_list +trailingCoilPins1 = bits, U16, 1684, [0:8], $output_pin_e_list +trailingCoilPins2 = bits, U16, 1686, [0:8], $output_pin_e_list +trailingCoilPins3 = bits, U16, 1688, [0:8], $output_pin_e_list +trailingCoilPins4 = bits, U16, 1690, [0:8], $output_pin_e_list +trailingCoilPins5 = bits, U16, 1692, [0:8], $output_pin_e_list +trailingCoilPins6 = bits, U16, 1694, [0:8], $output_pin_e_list +trailingCoilPins7 = bits, U16, 1696, [0:8], $output_pin_e_list +trailingCoilPins8 = bits, U16, 1698, [0:8], $output_pin_e_list +trailingCoilPins9 = bits, U16, 1700, [0:8], $output_pin_e_list +trailingCoilPins10 = bits, U16, 1702, [0:8], $output_pin_e_list +trailingCoilPins11 = bits, U16, 1704, [0:8], $output_pin_e_list +trailingCoilPins12 = bits, U16, 1706, [0:8], $output_pin_e_list +tle8888mode = bits, U08, 1708, [0:1], "Auto", "SemiAuto", "Manual", "Hall" +accelerometerCsPinMode = bits, U08, 1709, [0:1], "default", "default inverted", "open collector", "open collector inverted" +injectorCompensationMode = bits, U08, 1710, [0:1], "None", "Fixed rail pressure", "Sensed Rail Pressure", "INVALID" +fan2PinMode = bits, U08, 1711, [0:1], "default", "default inverted", "open collector", "open collector inverted" +fuelReferencePressure = scalar, F32, 1712, "kPa", 1, 0, 50, 700000, 0 +auxTempSensor1_tempC_1 = scalar, F32, 1716, "*C", 1, 0, -55, 200, 1 +auxTempSensor1_tempC_2 = scalar, F32, 1720, "*C", 1, 0, -55, 200, 1 +auxTempSensor1_tempC_3 = scalar, F32, 1724, "*C", 1, 0, -55, 200, 1 +auxTempSensor1_resistance_1 = scalar, F32, 1728, "Ohm", 1, 0, 0, 1000000, 1 +auxTempSensor1_resistance_2 = scalar, F32, 1732, "Ohm", 1, 0, 0, 1000000, 1 +auxTempSensor1_resistance_3 = scalar, F32, 1736, "Ohm", 1, 0, 0, 1000000, 1 +auxTempSensor1_bias_resistor = scalar, F32, 1740, "Ohm", 1, 0, 0, 200000, 1 +auxTempSensor1_adcChannel = bits, U08, 1744, [0:5], $adc_channel_e_list +auxTempSensor2_tempC_1 = scalar, F32, 1748, "*C", 1, 0, -55, 200, 1 +auxTempSensor2_tempC_2 = scalar, F32, 1752, "*C", 1, 0, -55, 200, 1 +auxTempSensor2_tempC_3 = scalar, F32, 1756, "*C", 1, 0, -55, 200, 1 +auxTempSensor2_resistance_1 = scalar, F32, 1760, "Ohm", 1, 0, 0, 1000000, 1 +auxTempSensor2_resistance_2 = scalar, F32, 1764, "Ohm", 1, 0, 0, 1000000, 1 +auxTempSensor2_resistance_3 = scalar, F32, 1768, "Ohm", 1, 0, 0, 1000000, 1 +auxTempSensor2_bias_resistor = scalar, F32, 1772, "Ohm", 1, 0, 0, 200000, 1 +auxTempSensor2_adcChannel = bits, U08, 1776, [0:5], $adc_channel_e_list +knockSamplingDuration = scalar, S16, 1780, "Deg", 1, 0, 0, 720, 0 +etbFreq = scalar, S16, 1782, "Hz", 1, 0, 0, 3000, 0 +etbWastegatePid_pFactor = scalar, F32, 1784, "", 1, 0, -10000, 10000, 4 +etbWastegatePid_iFactor = scalar, F32, 1788, "", 1, 0, -10000, 10000, 4 +etbWastegatePid_dFactor = scalar, F32, 1792, "", 1, 0, -10000, 10000, 4 +etbWastegatePid_offset = scalar, S16, 1796, "", 1, 0, -1000, 1000, 0 +etbWastegatePid_periodMs = scalar, S16, 1798, "ms", 1, 0, 0, 3000, 0 +etbWastegatePid_minValue = scalar, S16, 1800, "", 1, 0, -30000, 30000, 0 +etbWastegatePid_maxValue = scalar, S16, 1802, "", 1, 0, -30000, 30000, 0 +stepperNumMicroSteps = bits, U08, 1804, [0:3], "Full-Step (Default)", "INVALID", "Half-Step", "INVALID", "1/4 Micro-Step", "INVALID", "INVALID", "INVALID", "1/8 Micro-Step", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +stepperMinDutyCycle = scalar, U08, 1805, "%", 1, 0, 0, 100, 0 +stepperMaxDutyCycle = scalar, U08, 1806, "%", 1, 0, 0, 100, 0 +sdCardSpiDevice = bits, U08, 1807, [0:2], "Off", "SPI1", "SPI2", "SPI3", "SPI4", "SPI5", "SPI6", "INVALID" +timing_offset_cylinder1 = scalar, F32, 1808, "deg", 1, 0, -720, 720, 1 +timing_offset_cylinder2 = scalar, F32, 1812, "deg", 1, 0, -720, 720, 1 +timing_offset_cylinder3 = scalar, F32, 1816, "deg", 1, 0, -720, 720, 1 +timing_offset_cylinder4 = scalar, F32, 1820, "deg", 1, 0, -720, 720, 1 +timing_offset_cylinder5 = scalar, F32, 1824, "deg", 1, 0, -720, 720, 1 +timing_offset_cylinder6 = scalar, F32, 1828, "deg", 1, 0, -720, 720, 1 +timing_offset_cylinder7 = scalar, F32, 1832, "deg", 1, 0, -720, 720, 1 +timing_offset_cylinder8 = scalar, F32, 1836, "deg", 1, 0, -720, 720, 1 +timing_offset_cylinder9 = scalar, F32, 1840, "deg", 1, 0, -720, 720, 1 +timing_offset_cylinder10 = scalar, F32, 1844, "deg", 1, 0, -720, 720, 1 +timing_offset_cylinder11 = scalar, F32, 1848, "deg", 1, 0, -720, 720, 1 +timing_offset_cylinder12 = scalar, F32, 1852, "deg", 1, 0, -720, 720, 1 +idlePidActivationTime = scalar, F32, 1856, "seconds", 1, 0, 0, 60, 1 +spi1SckMode = bits, U08, 1860, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi1MosiMode = bits, U08, 1861, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi1MisoMode = bits, U08, 1862, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi2SckMode = bits, U08, 1863, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi2MosiMode = bits, U08, 1864, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi2MisoMode = bits, U08, 1865, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi3SckMode = bits, U08, 1866, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi3MosiMode = bits, U08, 1867, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi3MisoMode = bits, U08, 1868, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +stepperEnablePinMode = bits, U08, 1869, [0:1], "default", "default inverted", "open collector", "open collector inverted" +mc33816_rstb = bits, U16, 1870, [0:8], $gpio_list +mc33816_driven = bits, U16, 1872, [0:8], $gpio_list +brakePedalPin = bits, U16, 1874, [0:8], $switch_input_pin_e_list +auxPid1_pFactor = scalar, F32, 1876, "", 1, 0, -10000, 10000, 4 +auxPid1_iFactor = scalar, F32, 1880, "", 1, 0, -10000, 10000, 4 +auxPid1_dFactor = scalar, F32, 1884, "", 1, 0, -10000, 10000, 4 +auxPid1_offset = scalar, S16, 1888, "", 1, 0, -1000, 1000, 0 +auxPid1_periodMs = scalar, S16, 1890, "ms", 1, 0, 0, 3000, 0 +auxPid1_minValue = scalar, S16, 1892, "", 1, 0, -30000, 30000, 0 +auxPid1_maxValue = scalar, S16, 1894, "", 1, 0, -30000, 30000, 0 +auxPid2_pFactor = scalar, F32, 1896, "", 1, 0, -10000, 10000, 4 +auxPid2_iFactor = scalar, F32, 1900, "", 1, 0, -10000, 10000, 4 +auxPid2_dFactor = scalar, F32, 1904, "", 1, 0, -10000, 10000, 4 +auxPid2_offset = scalar, S16, 1908, "", 1, 0, -1000, 1000, 0 +auxPid2_periodMs = scalar, S16, 1910, "ms", 1, 0, 0, 3000, 0 +auxPid2_minValue = scalar, S16, 1912, "", 1, 0, -30000, 30000, 0 +auxPid2_maxValue = scalar, S16, 1914, "", 1, 0, -30000, 30000, 0 +injectorCorrectionPolynomial1 = scalar, F32, 1916, "", 1, 0, -1000, 1000, 4 +injectorCorrectionPolynomial2 = scalar, F32, 1920, "", 1, 0, -1000, 1000, 4 +injectorCorrectionPolynomial3 = scalar, F32, 1924, "", 1, 0, -1000, 1000, 4 +injectorCorrectionPolynomial4 = scalar, F32, 1928, "", 1, 0, -1000, 1000, 4 +injectorCorrectionPolynomial5 = scalar, F32, 1932, "", 1, 0, -1000, 1000, 4 +injectorCorrectionPolynomial6 = scalar, F32, 1936, "", 1, 0, -1000, 1000, 4 +injectorCorrectionPolynomial7 = scalar, F32, 1940, "", 1, 0, -1000, 1000, 4 +injectorCorrectionPolynomial8 = scalar, F32, 1944, "", 1, 0, -1000, 1000, 4 +primeBins = array, S08, 1948, [8], "C", 1, 0, -40, 250, 0 +oilPressure_hwChannel = bits, U08, 1956, [0:5], $adc_channel_e_list +oilPressure_v1 = scalar, F32, 1960, "volts", 1, 0, 0, 10, 2 +oilPressure_value1 = scalar, F32, 1964, "", 1, 0, -100000, 1000000, 2 +oilPressure_v2 = scalar, F32, 1968, "volts", 1, 0, 0, 10, 2 +oilPressure_value2 = scalar, F32, 1972, "", 1, 0, -100000, 1000000, 2 +accelerometerSpiDevice = bits, U08, 1976, [0:2], "Off", "SPI1", "SPI2", "SPI3", "SPI4", "SPI5", "SPI6", "INVALID" +fan2Pin = bits, U16, 1978, [0:8], $output_pin_e_list +fan2OnTemperature = scalar, U08, 1980, "deg C", 1, 0, 0, 150, 0 +fan2OffTemperature = scalar, U08, 1981, "deg C", 1, 0, 0, 150, 0 +stepperEnablePin = bits, U16, 1982, [0:8], $gpio_list +tle8888_cs = bits, U16, 1984, [0:8], $gpio_list +tle8888_csPinMode = bits, U08, 1986, [0:1], "default", "default inverted", "open collector", "open collector inverted" +mc33816_cs = bits, U16, 1988, [0:8], $gpio_list +auxFrequencyFilter = scalar, F32, 1992, "hz", 1, 0, 0, 100, 1 +sentInputPins1 = bits, U16, 1996, [0:8], "NONE", "INVALID", "PA0", "PA1", "PA2", "PA3", "PA4", "PA5", "PA6", "PA7", "PA8", "PA9", "PA10", "PA11", "PA12", "PA13", "PA14", "PA15", "PB0", "PB1", "PB2", "PB3", "PB4", "PB5", "PB6", "PB7", "PB8", "PB9", "PB10", "PB11", "PB12", "PB13", "PB14", "PB15", "PC0", "PC1", "PC2", "PC3", "PC4", "PC5", "PC6", "PC7", "PC8", "PC9", "PC10", "PC11", "PC12", "PC13", "PC14", "PC15", "PD0", "PD1", "PD2", "PD3", "PD4", "PD5", "PD6", "PD7", "PD8", "PD9", "PD10", "PD11", "PD12", "PD13", "PD14", "PD15", "PE0", "PE1", "PE2", "PE3", "PE4", "PE5", "PE6", "PE7", "PE8", "PE9", "PE10", "PE11", "PE12", "PE13", "PE14", "PE15", "PF0", "PF1", "PF2", "PF3", "PF4", "PF5", "PF6", "PF7", "PF8", "PF9", "PF10", "PF11", "PF12", "PF13", "PF14", "PF15", "PG0", "PG1", "PG2", "PG3", "PG4", "PG5", "PG6", "PG7", "PG8", "PG9", "PG10", "PG11", "PG12", "PG13", "PG14", "PG15", "PH0", "PH1", "PH2", "PH3", "PH4", "PH5", "PH6", "PH7", "PH8", "PH9", "PH10", "PH11", "PH12", "PH13", "PH14", "PH15", "PI0", "PI1", "PI2", "PI3", "PI4", "PI5", "PI6", "PI7", "PI8", "PI9", "PI10", "PI11", "PI12", "PI13", "PI14", "PI15", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +coastingFuelCutRpmHigh = scalar, S16, 1998, "rpm", 1, 0, 0, 5000, 0 +coastingFuelCutRpmLow = scalar, S16, 2000, "rpm", 1, 0, 0, 5000, 0 +coastingFuelCutTps = scalar, S16, 2002, "%", 1, 0, 0, 20, 0 +coastingFuelCutClt = scalar, S16, 2004, "C", 1, 0, -100, 250, 0 +pidExtraForLowRpm = scalar, S16, 2006, "%", 1, 0, 0, 100, 0 +coastingFuelCutMap = scalar, S16, 2008, "kPa", 1, 0, 0, 1000, 0 +highPressureFuel_hwChannel = bits, U08, 2012, [0:5], $adc_channel_e_list +highPressureFuel_v1 = scalar, F32, 2016, "volts", 1, 0, 0, 10, 2 +highPressureFuel_value1 = scalar, F32, 2020, "", 1, 0, -100000, 1000000, 2 +highPressureFuel_v2 = scalar, F32, 2024, "volts", 1, 0, 0, 10, 2 +highPressureFuel_value2 = scalar, F32, 2028, "", 1, 0, -100000, 1000000, 2 +lowPressureFuel_hwChannel = bits, U08, 2032, [0:5], $adc_channel_e_list +lowPressureFuel_v1 = scalar, F32, 2036, "volts", 1, 0, 0, 10, 2 +lowPressureFuel_value1 = scalar, F32, 2040, "", 1, 0, -100000, 1000000, 2 +lowPressureFuel_v2 = scalar, F32, 2044, "volts", 1, 0, 0, 10, 2 +lowPressureFuel_value2 = scalar, F32, 2048, "", 1, 0, -100000, 1000000, 2 +scriptCurveName1 = string, ASCII, 2052, 16 +scriptCurveName2 = string, ASCII, 2068, 16 +scriptCurveName3 = string, ASCII, 2084, 16 +scriptCurveName4 = string, ASCII, 2100, 16 +scriptCurveName5 = string, ASCII, 2116, 16 +scriptCurveName6 = string, ASCII, 2132, 16 +scriptTableName1 = string, ASCII, 2148, 16 +scriptTableName2 = string, ASCII, 2164, 16 +scriptTableName3 = string, ASCII, 2180, 16 +scriptTableName4 = string, ASCII, 2196, 16 +scriptSettingName1 = string, ASCII, 2212, 16 +scriptSettingName2 = string, ASCII, 2228, 16 +scriptSettingName3 = string, ASCII, 2244, 16 +scriptSettingName4 = string, ASCII, 2260, 16 +scriptSettingName5 = string, ASCII, 2276, 16 +scriptSettingName6 = string, ASCII, 2292, 16 +scriptSettingName7 = string, ASCII, 2308, 16 +scriptSettingName8 = string, ASCII, 2324, 16 +tChargeAirCoefMin = scalar, F32, 2340, "", 1, 0, 0, 1, 3 +tChargeAirCoefMax = scalar, F32, 2344, "", 1, 0, 0, 1, 3 +tChargeAirFlowMax = scalar, F32, 2348, "kg/h", 1, 0, 0, 1000, 1 +tChargeAirIncrLimit = scalar, F32, 2352, "deg/sec", 1, 0, 0, 100, 1 +tChargeAirDecrLimit = scalar, F32, 2356, "deg/sec", 1, 0, 0, 100, 1 +hip9011Gain = scalar, F32, 2360, "", 1, 0, 0, 100, 2 +etb_iTermMin = scalar, S16, 2364, "", 1, 0, -30000, 30000, 0 +etb_iTermMax = scalar, S16, 2366, "", 1, 0, -30000, 30000, 0 +idleTimingPid_pFactor = scalar, F32, 2368, "", 1, 0, -10000, 10000, 4 +idleTimingPid_iFactor = scalar, F32, 2372, "", 1, 0, -10000, 10000, 4 +idleTimingPid_dFactor = scalar, F32, 2376, "", 1, 0, -10000, 10000, 4 +idleTimingPid_offset = scalar, S16, 2380, "", 1, 0, -1000, 1000, 0 +idleTimingPid_periodMs = scalar, S16, 2382, "ms", 1, 0, 0, 3000, 0 +idleTimingPid_minValue = scalar, S16, 2384, "", 1, 0, -30000, 30000, 0 +idleTimingPid_maxValue = scalar, S16, 2386, "", 1, 0, -30000, 30000, 0 +idleTimingSoftEntryTime = scalar, F32, 2388, "", 1, 0, 0, 100, 1 +torqueReductionTriggerPinMode = bits, U08, 2392, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +torqueReductionActivationMode = bits, S08, 2393, [0:0], "Torque Reduction Button", "Launch Button" +tpsAccelFractionPeriod = scalar, S16, 2394, "cycles", 1, 0, 0, 500, 0 +tpsAccelFractionDivisor = scalar, F32, 2396, "coef", 1, 0, 1, 100, 2 +tle8888spiDevice = bits, U08, 2400, [0:2], "Off", "SPI1", "SPI2", "SPI3", "SPI4", "SPI5", "SPI6", "INVALID" +mc33816spiDevice = bits, U08, 2401, [0:2], "Off", "SPI1", "SPI2", "SPI3", "SPI4", "SPI5", "SPI6", "INVALID" +idlerpmpid_iTermMin = scalar, S16, 2402, "", 1, 0, -30000, 30000, 0 +tle6240spiDevice = bits, U08, 2404, [0:2], "Off", "SPI1", "SPI2", "SPI3", "SPI4", "SPI5", "SPI6", "INVALID" +stoichRatioPrimary = scalar, U08, 2405, ":1", 0.1, 0, 5, 25, 1 +idlerpmpid_iTermMax = scalar, S16, 2406, "", 1, 0, -30000, 30000, 0 +etbIdleThrottleRange = scalar, F32, 2408, "%", 1, 0, 0, 15, 0 +cylinderBankSelect1 = scalar, U08, 2412, "", 1, 1, 1, 2, 0 +cylinderBankSelect2 = scalar, U08, 2413, "", 1, 1, 1, 2, 0 +cylinderBankSelect3 = scalar, U08, 2414, "", 1, 1, 1, 2, 0 +cylinderBankSelect4 = scalar, U08, 2415, "", 1, 1, 1, 2, 0 +cylinderBankSelect5 = scalar, U08, 2416, "", 1, 1, 1, 2, 0 +cylinderBankSelect6 = scalar, U08, 2417, "", 1, 1, 1, 2, 0 +cylinderBankSelect7 = scalar, U08, 2418, "", 1, 1, 1, 2, 0 +cylinderBankSelect8 = scalar, U08, 2419, "", 1, 1, 1, 2, 0 +cylinderBankSelect9 = scalar, U08, 2420, "", 1, 1, 1, 2, 0 +cylinderBankSelect10 = scalar, U08, 2421, "", 1, 1, 1, 2, 0 +cylinderBankSelect11 = scalar, U08, 2422, "", 1, 1, 1, 2, 0 +cylinderBankSelect12 = scalar, U08, 2423, "", 1, 1, 1, 2, 0 +primeValues = array, U08, 2424, [8], "mg", 5.0, 0, 0, 1250, 0 +triggerCompCenterVolt = scalar, U08, 2432, "V", 0.02, 0, 0, 5.1, 2 +triggerCompHystMin = scalar, U08, 2433, "V", 0.02, 0, 0, 5.1, 2 +triggerCompHystMax = scalar, U08, 2434, "V", 0.02, 0, 0, 5.1, 2 +triggerCompSensorSatRpm = scalar, U08, 2435, "RPM", 50.0, 0, 0, 12000, 0 +tractionControlSlipBins = array, U16, 2436, [6], "ratio", 0.01, 0, 0, 999, 2 +tractionControlSpeedBins = array, U08, 2448, [6], "RPM", 1, 0, 0, 250, 0 +disableFan1AtSpeed = scalar, S08, 2454, "", 1, 0, 0, 100, 0 +disableFan2AtSpeed = scalar, S08, 2455, "", 1, 0, 0, 100, 0 +canVssNbcType = bits, U08, 2456, [0:2], "BMW_e46", "W202", "BMW E8x/E9x MK60e5", "Nissan 350", "Hyundai PB", "Honda Civic9", "INVALID", "INVALID" +gppwm1_pin = bits, U16, 2460, [0:8], $output_pin_e_list +gppwm1_dutyIfError = scalar, U08, 2462, "%", 1, 0, 0, 100, 0 +gppwm1_pwmFrequency = scalar, U16, 2464, "hz", 1, 0, 0, 500, 0 +gppwm1_onAboveDuty = scalar, U08, 2466, "%", 1, 0, 0, 100, 0 +gppwm1_offBelowDuty = scalar, U08, 2467, "%", 1, 0, 0, 100, 0 +gppwm1_loadAxis = bits, U08, 2468, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +gppwm1_rpmAxis = bits, U08, 2469, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +gppwm1_loadBins = array, S16, 2470, [8], "", 0.5, 0, -1000, 10000, 1 +gppwm1_rpmBins = array, S16, 2486, [8], "", 1, 0, -30000, 30000, 0 +gppwm1_table = array, U08, 2502, [8x8], "duty", 0.5, 0, 0, 100, 1 +gppwm2_pin = bits, U16, 2568, [0:8], $output_pin_e_list +gppwm2_dutyIfError = scalar, U08, 2570, "%", 1, 0, 0, 100, 0 +gppwm2_pwmFrequency = scalar, U16, 2572, "hz", 1, 0, 0, 500, 0 +gppwm2_onAboveDuty = scalar, U08, 2574, "%", 1, 0, 0, 100, 0 +gppwm2_offBelowDuty = scalar, U08, 2575, "%", 1, 0, 0, 100, 0 +gppwm2_loadAxis = bits, U08, 2576, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +gppwm2_rpmAxis = bits, U08, 2577, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +gppwm2_loadBins = array, S16, 2578, [8], "", 0.5, 0, -1000, 10000, 1 +gppwm2_rpmBins = array, S16, 2594, [8], "", 1, 0, -30000, 30000, 0 +gppwm2_table = array, U08, 2610, [8x8], "duty", 0.5, 0, 0, 100, 1 +gppwm3_pin = bits, U16, 2676, [0:8], $output_pin_e_list +gppwm3_dutyIfError = scalar, U08, 2678, "%", 1, 0, 0, 100, 0 +gppwm3_pwmFrequency = scalar, U16, 2680, "hz", 1, 0, 0, 500, 0 +gppwm3_onAboveDuty = scalar, U08, 2682, "%", 1, 0, 0, 100, 0 +gppwm3_offBelowDuty = scalar, U08, 2683, "%", 1, 0, 0, 100, 0 +gppwm3_loadAxis = bits, U08, 2684, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +gppwm3_rpmAxis = bits, U08, 2685, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +gppwm3_loadBins = array, S16, 2686, [8], "", 0.5, 0, -1000, 10000, 1 +gppwm3_rpmBins = array, S16, 2702, [8], "", 1, 0, -30000, 30000, 0 +gppwm3_table = array, U08, 2718, [8x8], "duty", 0.5, 0, 0, 100, 1 +gppwm4_pin = bits, U16, 2784, [0:8], $output_pin_e_list +gppwm4_dutyIfError = scalar, U08, 2786, "%", 1, 0, 0, 100, 0 +gppwm4_pwmFrequency = scalar, U16, 2788, "hz", 1, 0, 0, 500, 0 +gppwm4_onAboveDuty = scalar, U08, 2790, "%", 1, 0, 0, 100, 0 +gppwm4_offBelowDuty = scalar, U08, 2791, "%", 1, 0, 0, 100, 0 +gppwm4_loadAxis = bits, U08, 2792, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +gppwm4_rpmAxis = bits, U08, 2793, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +gppwm4_loadBins = array, S16, 2794, [8], "", 0.5, 0, -1000, 10000, 1 +gppwm4_rpmBins = array, S16, 2810, [8], "", 1, 0, -30000, 30000, 0 +gppwm4_table = array, U08, 2826, [8x8], "duty", 0.5, 0, 0, 100, 1 +mc33_i_boost = scalar, U16, 2892, "mA", 1, 0, 1000, 25000, 0 +mc33_i_peak = scalar, U16, 2894, "mA", 1, 0, 1000, 20000, 0 +mc33_i_hold = scalar, U16, 2896, "mA", 1, 0, 1000, 20000, 0 +mc33_t_max_boost = scalar, U16, 2898, "us", 1, 0, 0, 10000, 0 +mc33_t_peak_off = scalar, U16, 2900, "us", 1, 0, 0, 10000, 0 +mc33_t_peak_tot = scalar, U16, 2902, "us", 1, 0, 0, 10000, 0 +mc33_t_bypass = scalar, U16, 2904, "us", 1, 0, 0, 10000, 0 +mc33_t_hold_off = scalar, U16, 2906, "us", 1, 0, 0, 10000, 0 +mc33_t_hold_tot = scalar, U16, 2908, "us", 1, 0, 0, 10000, 0 +tcuUpshiftButtonPinMode = bits, U08, 2910, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +tcuDownshiftButtonPinMode = bits, U08, 2911, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +acSwitchMode = bits, U08, 2912, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +tcu_solenoid_mode1 = bits, U08, 2913, [0:1], "default", "default inverted", "open collector", "open collector inverted" +tcu_solenoid_mode2 = bits, U08, 2914, [0:1], "default", "default inverted", "open collector", "open collector inverted" +tcu_solenoid_mode3 = bits, U08, 2915, [0:1], "default", "default inverted", "open collector", "open collector inverted" +tcu_solenoid_mode4 = bits, U08, 2916, [0:1], "default", "default inverted", "open collector", "open collector inverted" +tcu_solenoid_mode5 = bits, U08, 2917, [0:1], "default", "default inverted", "open collector", "open collector inverted" +tcu_solenoid_mode6 = bits, U08, 2918, [0:1], "default", "default inverted", "open collector", "open collector inverted" +triggerGapOverrideFrom1 = scalar, F32, 2920, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom2 = scalar, F32, 2924, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom3 = scalar, F32, 2928, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom4 = scalar, F32, 2932, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom5 = scalar, F32, 2936, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom6 = scalar, F32, 2940, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom7 = scalar, F32, 2944, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom8 = scalar, F32, 2948, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom9 = scalar, F32, 2952, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom10 = scalar, F32, 2956, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom11 = scalar, F32, 2960, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom12 = scalar, F32, 2964, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom13 = scalar, F32, 2968, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom14 = scalar, F32, 2972, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom15 = scalar, F32, 2976, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom16 = scalar, F32, 2980, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom17 = scalar, F32, 2984, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideFrom18 = scalar, F32, 2988, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo1 = scalar, F32, 2992, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo2 = scalar, F32, 2996, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo3 = scalar, F32, 3000, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo4 = scalar, F32, 3004, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo5 = scalar, F32, 3008, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo6 = scalar, F32, 3012, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo7 = scalar, F32, 3016, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo8 = scalar, F32, 3020, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo9 = scalar, F32, 3024, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo10 = scalar, F32, 3028, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo11 = scalar, F32, 3032, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo12 = scalar, F32, 3036, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo13 = scalar, F32, 3040, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo14 = scalar, F32, 3044, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo15 = scalar, F32, 3048, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo16 = scalar, F32, 3052, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo17 = scalar, F32, 3056, "ratio", 1, 0, 0, 20, 3 +triggerGapOverrideTo18 = scalar, F32, 3060, "ratio", 1, 0, 0, 20, 3 +maxCamPhaseResolveRpm = scalar, U08, 3064, "rpm", 50.0, 0, 0, 12500, 0 +dfcoDelay = scalar, U08, 3065, "sec", 0.1, 0, 0, 10, 1 +acDelay = scalar, U08, 3066, "sec", 0.1, 0, 0, 10, 1 +tChargeMode = bits, U08, 3067, [0:1], "RPM+TPS (Default)", "Air Mass Interpolation", "Table", "INVALID" +fordInjectorSmallPulseBreakPoint = scalar, U16, 3068, "mg", 0.001, 0, 0, 65, 3 +etbJamDetectThreshold = scalar, U08, 3070, "%", 1, 0, 0, 50, 0 +hpfpCamLobes = scalar, U08, 3071, "lobes/cam", 1, 0, 0, 255, 0 +hpfpCam = bits, U08, 3072, [0:2], "NONE", "Intake 1", "Exhaust 1", "Intake 2", "Exhaust 2", "INVALID", "INVALID", "INVALID" +acLowRpmLimit = scalar, S08, 3073, "RPM", 10.0, 0, 0, 1200, 0 +hpfpMinAngle = scalar, U08, 3074, "deg", 1, 0, 0, 255, 0 +hpfpPumpVolume = scalar, U16, 3076, "cc", 0.001, 0, 0, 65, 3 +hpfpActivationAngle = scalar, U08, 3078, "deg", 1, 0, 0, 255, 0 +issFilterReciprocal = scalar, U08, 3079, "", 1, 0, 0, 255, 0 +hpfpPidP = scalar, U16, 3080, "%/kPa", 0.001, 0, 0, 65, 3 +hpfpPidI = scalar, U16, 3082, "%/kPa/lobe", 1.0E-5, 0, 0, 0.65, 5 +hpfpTargetDecay = scalar, U16, 3084, "kPa/s", 1, 0, 0, 65000, 0 +stepper_raw_output1 = bits, U16, 3086, [0:8], $output_pin_e_list +stepper_raw_output2 = bits, U16, 3088, [0:8], $output_pin_e_list +stepper_raw_output3 = bits, U16, 3090, [0:8], $output_pin_e_list +stepper_raw_output4 = bits, U16, 3092, [0:8], $output_pin_e_list +gearRatio1 = scalar, U16, 3094, "ratio", 0.01, 0, 0, 30, 2 +gearRatio2 = scalar, U16, 3096, "ratio", 0.01, 0, 0, 30, 2 +gearRatio3 = scalar, U16, 3098, "ratio", 0.01, 0, 0, 30, 2 +gearRatio4 = scalar, U16, 3100, "ratio", 0.01, 0, 0, 30, 2 +gearRatio5 = scalar, U16, 3102, "ratio", 0.01, 0, 0, 30, 2 +gearRatio6 = scalar, U16, 3104, "ratio", 0.01, 0, 0, 30, 2 +gearRatio7 = scalar, U16, 3106, "ratio", 0.01, 0, 0, 30, 2 +gearRatio8 = scalar, U16, 3108, "ratio", 0.01, 0, 0, 30, 2 +gearRatio9 = scalar, U16, 3110, "ratio", 0.01, 0, 0, 30, 2 +gearRatio10 = scalar, U16, 3112, "ratio", 0.01, 0, 0, 30, 2 +vvtActivationDelayMs = scalar, U16, 3114, "ms", 1, 0, 0, 65000, 0 +torqueTable = array, U08, 3116, [6x6], "Nm", 10.0, 0, 0, 255, 0 +torqueRpmBins = array, U16, 3152, [6], "RPM", 1, 0, 0, 65000, 0 +torqueLoadBins = array, U16, 3164, [6], "Load", 1, 0, 0, 65000, 0 +gearControllerMode = bits, U08, 3176, [0:1], "None", "Button Shift", "Automatic", "Generic" +transmissionControllerMode = bits, U08, 3177, [0:1], "None", "Simple Transmission", "Generic 4-Speed", "GM 4L6X" +acrDisablePhase = scalar, U16, 3178, "deg", 1, 0, 0, 720, 0 +auxLinear1_hwChannel = bits, U08, 3180, [0:5], $adc_channel_e_list +auxLinear1_v1 = scalar, F32, 3184, "volts", 1, 0, 0, 10, 2 +auxLinear1_value1 = scalar, F32, 3188, "", 1, 0, -100000, 1000000, 2 +auxLinear1_v2 = scalar, F32, 3192, "volts", 1, 0, 0, 10, 2 +auxLinear1_value2 = scalar, F32, 3196, "", 1, 0, -100000, 1000000, 2 +auxLinear2_hwChannel = bits, U08, 3200, [0:5], $adc_channel_e_list +auxLinear2_v1 = scalar, F32, 3204, "volts", 1, 0, 0, 10, 2 +auxLinear2_value1 = scalar, F32, 3208, "", 1, 0, -100000, 1000000, 2 +auxLinear2_v2 = scalar, F32, 3212, "volts", 1, 0, 0, 10, 2 +auxLinear2_value2 = scalar, F32, 3216, "", 1, 0, -100000, 1000000, 2 +tcu_tcc_onoff_solenoid = bits, U16, 3220, [0:8], $output_pin_e_list +tcu_tcc_onoff_solenoid_mode = bits, U08, 3222, [0:1], "default", "default inverted", "open collector", "open collector inverted" +tcu_tcc_pwm_solenoid = bits, U16, 3224, [0:8], $output_pin_e_list +tcu_tcc_pwm_solenoid_mode = bits, U08, 3226, [0:1], "default", "default inverted", "open collector", "open collector inverted" +tcu_tcc_pwm_solenoid_freq = scalar, U16, 3228, "Hz", 1, 0, 0, 3000, 0 +tcu_pc_solenoid_pin = bits, U16, 3230, [0:8], $output_pin_e_list +tcu_pc_solenoid_pin_mode = bits, U08, 3232, [0:1], "default", "default inverted", "open collector", "open collector inverted" +tcu_pc_solenoid_freq = scalar, U16, 3234, "Hz", 1, 0, 0, 3000, 0 +tcu_32_solenoid_pin = bits, U16, 3236, [0:8], $output_pin_e_list +tcu_32_solenoid_pin_mode = bits, U08, 3238, [0:1], "default", "default inverted", "open collector", "open collector inverted" +tcu_32_solenoid_freq = scalar, U16, 3240, "Hz", 1, 0, 0, 3000, 0 +acrPin2 = bits, U16, 3242, [0:8], $output_pin_e_list +etbMinimumPosition = scalar, U08, 3244, "%", 0.1, 0, 0, 10, 1 +tuneHidingKey = scalar, U16, 3246, "", 1, 0, 0, 20000, 0 +vinNumber = string, ASCII, 3248, 17 +highSpeedOffsets = array, U16, 3266, [32], "", 1, 0.00000,0.00,65535, 0, noMsqSave +fuelPressureSensorMode = bits, U08, 3330, [0:1], "Absolute", "Gauge", "Differential", "INVALID" +luaDigitalInputPins1 = bits, U16, 3332, [0:8], $switch_input_pin_e_list +luaDigitalInputPins2 = bits, U16, 3334, [0:8], $switch_input_pin_e_list +luaDigitalInputPins3 = bits, U16, 3336, [0:8], $switch_input_pin_e_list +luaDigitalInputPins4 = bits, U16, 3338, [0:8], $switch_input_pin_e_list +luaDigitalInputPins5 = bits, U16, 3340, [0:8], $switch_input_pin_e_list +luaDigitalInputPins6 = bits, U16, 3342, [0:8], $switch_input_pin_e_list +luaDigitalInputPins7 = bits, U16, 3344, [0:8], $switch_input_pin_e_list +luaDigitalInputPins8 = bits, U16, 3346, [0:8], $switch_input_pin_e_list +ALSMinRPM = scalar, S16, 3348, "rpm", 1, 0, 0, 20000, 0 +ALSMaxRPM = scalar, S16, 3350, "rpm", 1, 0, 0, 20000, 0 +ALSMaxDuration = scalar, S16, 3352, "sec", 1, 0, 0, 10, 0 +ALSMinCLT = scalar, S08, 3354, "C", 1, 0, 0, 90, 0 +ALSMaxCLT = scalar, S08, 3355, "C", 1, 0, 0, 105, 0 +alsMinTimeBetween = scalar, U08, 3356, "", 1, 0, 0, 20000, 0 +alsEtbPosition = scalar, U08, 3357, "", 1, 0, 0, 20000, 0 +acRelayAlternatorDutyAdder = scalar, U08, 3358, "%", 1, 0, 0, 100, 0 +sentEtbType = bits, S08, 3359, [0:1], "None", "GM type 1", "Ford type 1", "Custom" +customSentTpsMin = scalar, U16, 3360, "", 1, 0, 0, 32000, 0 +ALSIdleAdd = scalar, S32, 3364, "%", 1, 0, 0, 100, 2 +ALSEtbAdd = scalar, S32, 3368, "%", 1, 0, 0, 100, 2 +ALSSkipRatio = scalar, F32, 3372, "", 1, 0, 0, 1, 1 +acPressureEnableHyst = scalar, U08, 3376, "kPa (absolute)", 0.5, 0, 0, 125, 1 +ALSActivatePinMode = bits, U08, 3377, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +tpsSecondaryMaximum = scalar, U08, 3378, "%", 0.5, 0, 0, 100, 1 +ppsSecondaryMaximum = scalar, U08, 3379, "%", 0.5, 0, 0, 100, 1 +luaDigitalInputPinModes1 = bits, U08, 3380, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +luaDigitalInputPinModes2 = bits, U08, 3381, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +luaDigitalInputPinModes3 = bits, U08, 3382, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +luaDigitalInputPinModes4 = bits, U08, 3383, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +luaDigitalInputPinModes5 = bits, U08, 3384, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +luaDigitalInputPinModes6 = bits, U08, 3385, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +luaDigitalInputPinModes7 = bits, U08, 3386, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +luaDigitalInputPinModes8 = bits, U08, 3387, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +customSentTpsMax = scalar, U16, 3388, "", 1, 0, 0, 32000, 0 +kLineBaudRate = scalar, U16, 3390, "", 1, 0, 0, 32000, 0 +canGpioType = bits, S08, 3392, [0:1], "None", "DRT protocol", "MS protocol", "INVALID" +uiMode = bits, S08, 3393, [0:1], "Full", "INVALID", "Tuning", "INVALID" +hpfpPeakPos = scalar, S16, 3394, "deg", 1, 0, -719, 719, 0 +kLinePeriodUs = scalar, S16, 3396, "us", 1, 0, 0, 30000, 0 +rpmSoftLimitWindowSize = scalar, U08, 3398, "RPM", 10.0, 0, 0, 2500, 0 +rpmSoftLimitTimingRetard = scalar, U08, 3399, "deg", 0.2, 0, 0, 50, 1 +rpmSoftLimitFuelAdded = scalar, U08, 3400, "%", 0.2, 0, 0, 50, 1 +rpmHardLimitHyst = scalar, U08, 3401, "RPM", 10.0, 0, 0, 2500, 0 +benchTestOffTime = scalar, U16, 3402, "ms", 0.1, 0, 0, 2000, 1 +boostCutPressureHyst = scalar, U08, 3404, "kPa (absolute)", 0.5, 0, 0, 125, 1 +gearBasedOpenLoopBoostAdder = array, S08, 3405, [10], "%", 0.5, 0, -63, 63, 1 +benchTestCount = scalar, U32, 3416, "", 1, 0, 0, 10000000, 0 +iacByTpsHoldTime = scalar, U08, 3420, "seconds", 0.1, 0, 0, 25, 1 +iacByTpsDecayTime = scalar, U08, 3421, "seconds", 0.1, 0, 0, 25, 1 +tcu_rangeInput1 = bits, U16, 3422, [0:8], $switch_input_pin_e_list +tcu_rangeInput2 = bits, U16, 3424, [0:8], $switch_input_pin_e_list +tcu_rangeInput3 = bits, U16, 3426, [0:8], $switch_input_pin_e_list +tcu_rangeInput4 = bits, U16, 3428, [0:8], $switch_input_pin_e_list +tcu_rangeInput5 = bits, U16, 3430, [0:8], $switch_input_pin_e_list +tcu_rangeInput6 = bits, U16, 3432, [0:8], $switch_input_pin_e_list +tcu_rangeInputMode1 = bits, U08, 3434, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +tcu_rangeInputMode2 = bits, U08, 3435, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +tcu_rangeInputMode3 = bits, U08, 3436, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +tcu_rangeInputMode4 = bits, U08, 3437, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +tcu_rangeInputMode5 = bits, U08, 3438, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +tcu_rangeInputMode6 = bits, U08, 3439, [0:1], "DEFAULT", "PULLUP", "PULLDOWN", "INVALID" +canVssScaling = scalar, U16, 3440, "ratio", 1.0E-4, 0, 0.5, 1.5, 4 +oilTempSensor_tempC_1 = scalar, F32, 3444, "*C", 1, 0, -55, 200, 1 +oilTempSensor_tempC_2 = scalar, F32, 3448, "*C", 1, 0, -55, 200, 1 +oilTempSensor_tempC_3 = scalar, F32, 3452, "*C", 1, 0, -55, 200, 1 +oilTempSensor_resistance_1 = scalar, F32, 3456, "Ohm", 1, 0, 0, 1000000, 1 +oilTempSensor_resistance_2 = scalar, F32, 3460, "Ohm", 1, 0, 0, 1000000, 1 +oilTempSensor_resistance_3 = scalar, F32, 3464, "Ohm", 1, 0, 0, 1000000, 1 +oilTempSensor_bias_resistor = scalar, F32, 3468, "Ohm", 1, 0, 0, 200000, 1 +oilTempSensor_adcChannel = bits, U08, 3472, [0:5], $adc_channel_e_list +fuelTempSensor_tempC_1 = scalar, F32, 3476, "*C", 1, 0, -55, 200, 1 +fuelTempSensor_tempC_2 = scalar, F32, 3480, "*C", 1, 0, -55, 200, 1 +fuelTempSensor_tempC_3 = scalar, F32, 3484, "*C", 1, 0, -55, 200, 1 +fuelTempSensor_resistance_1 = scalar, F32, 3488, "Ohm", 1, 0, 0, 1000000, 1 +fuelTempSensor_resistance_2 = scalar, F32, 3492, "Ohm", 1, 0, 0, 1000000, 1 +fuelTempSensor_resistance_3 = scalar, F32, 3496, "Ohm", 1, 0, 0, 1000000, 1 +fuelTempSensor_bias_resistor = scalar, F32, 3500, "Ohm", 1, 0, 0, 200000, 1 +fuelTempSensor_adcChannel = bits, U08, 3504, [0:5], $adc_channel_e_list +ambientTempSensor_tempC_1 = scalar, F32, 3508, "*C", 1, 0, -55, 200, 1 +ambientTempSensor_tempC_2 = scalar, F32, 3512, "*C", 1, 0, -55, 200, 1 +ambientTempSensor_tempC_3 = scalar, F32, 3516, "*C", 1, 0, -55, 200, 1 +ambientTempSensor_resistance_1 = scalar, F32, 3520, "Ohm", 1, 0, 0, 1000000, 1 +ambientTempSensor_resistance_2 = scalar, F32, 3524, "Ohm", 1, 0, 0, 1000000, 1 +ambientTempSensor_resistance_3 = scalar, F32, 3528, "Ohm", 1, 0, 0, 1000000, 1 +ambientTempSensor_bias_resistor = scalar, F32, 3532, "Ohm", 1, 0, 0, 200000, 1 +ambientTempSensor_adcChannel = bits, U08, 3536, [0:5], $adc_channel_e_list +compressorDischargeTemperature_tempC_1 = scalar, F32, 3540, "*C", 1, 0, -55, 200, 1 +compressorDischargeTemperature_tempC_2 = scalar, F32, 3544, "*C", 1, 0, -55, 200, 1 +compressorDischargeTemperature_tempC_3 = scalar, F32, 3548, "*C", 1, 0, -55, 200, 1 +compressorDischargeTemperature_resistance_1 = scalar, F32, 3552, "Ohm", 1, 0, 0, 1000000, 1 +compressorDischargeTemperature_resistance_2 = scalar, F32, 3556, "Ohm", 1, 0, 0, 1000000, 1 +compressorDischargeTemperature_resistance_3 = scalar, F32, 3560, "Ohm", 1, 0, 0, 1000000, 1 +compressorDischargeTemperature_bias_resistor = scalar, F32, 3564, "Ohm", 1, 0, 0, 200000, 1 +compressorDischargeTemperature_adcChannel = bits, U08, 3568, [0:5], $adc_channel_e_list +throttleInletPressureChannel = bits, U08, 3572, [0:5], $adc_channel_e_list +compressorDischargePressureChannel = bits, U08, 3573, [0:5], $adc_channel_e_list +dacOutputPins1 = bits, U16, 3574, [0:8], $gpio_list +dacOutputPins2 = bits, U16, 3576, [0:8], $gpio_list +speedometerOutputPin = bits, U16, 3578, [0:8], $output_pin_e_list +speedometerPulsePerKm = scalar, U16, 3580, "", 1, 0, 0, 65000, 0 +simulatorCamPosition1 = scalar, U08, 3582, "", 1, 0, 0, 100, 0 +simulatorCamPosition2 = scalar, U08, 3583, "", 1, 0, 0, 100, 0 +simulatorCamPosition3 = scalar, U08, 3584, "", 1, 0, 0, 100, 0 +simulatorCamPosition4 = scalar, U08, 3585, "", 1, 0, 0, 100, 0 +ignKeyAdcChannel = bits, U08, 3586, [0:5], $adc_channel_e_list +spi6MisoMode = bits, U08, 3587, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +triggerVVTGapOverrideFrom1 = scalar, F32, 3588, "ratio", 1, 0, 0, 20, 3 +triggerVVTGapOverrideFrom2 = scalar, F32, 3592, "ratio", 1, 0, 0, 20, 3 +triggerVVTGapOverrideFrom3 = scalar, F32, 3596, "ratio", 1, 0, 0, 20, 3 +triggerVVTGapOverrideFrom4 = scalar, F32, 3600, "ratio", 1, 0, 0, 20, 3 +triggerVVTGapOverrideTo1 = scalar, F32, 3604, "ratio", 1, 0, 0, 20, 3 +triggerVVTGapOverrideTo2 = scalar, F32, 3608, "ratio", 1, 0, 0, 20, 3 +triggerVVTGapOverrideTo3 = scalar, F32, 3612, "ratio", 1, 0, 0, 20, 3 +triggerVVTGapOverrideTo4 = scalar, F32, 3616, "ratio", 1, 0, 0, 20, 3 +tractionControlEtbDrop = array, S08, 3620, [6x6], "%", 1, 0, -100, 0, 0 +maxInjectorDutyInstant = scalar, U08, 3656, "%", 1, 0, 50, 200, 0 +maxInjectorDutySustained = scalar, U08, 3657, "%", 1, 0, 50, 120, 0 +maxInjectorDutySustainedTimeout = scalar, U08, 3658, "sec", 0.1, 0, 0, 5, 1 +injectionPinsStage21 = bits, U16, 3660, [0:8], $output_pin_e_list +injectionPinsStage22 = bits, U16, 3662, [0:8], $output_pin_e_list +injectionPinsStage23 = bits, U16, 3664, [0:8], $output_pin_e_list +injectionPinsStage24 = bits, U16, 3666, [0:8], $output_pin_e_list +injectionPinsStage25 = bits, U16, 3668, [0:8], $output_pin_e_list +injectionPinsStage26 = bits, U16, 3670, [0:8], $output_pin_e_list +injectionPinsStage27 = bits, U16, 3672, [0:8], $output_pin_e_list +injectionPinsStage28 = bits, U16, 3674, [0:8], $output_pin_e_list +injectionPinsStage29 = bits, U16, 3676, [0:8], $output_pin_e_list +injectionPinsStage210 = bits, U16, 3678, [0:8], $output_pin_e_list +injectionPinsStage211 = bits, U16, 3680, [0:8], $output_pin_e_list +injectionPinsStage212 = bits, U16, 3682, [0:8], $output_pin_e_list +tractionControlTimingDrop = array, S08, 3684, [6x6], "Deg", 1, 0, -100, 100, 0 +tractionControlIgnitionSkip = array, S08, 3720, [6x6], "%", 1, 0, 0, 100, 0 +auxSpeed1Multiplier = scalar, F32, 3756, "", 1, 0, 0, 100, 0 +brakeMeanEffectivePressureDifferential = scalar, F32, 3760, "", 1, 0, 0, 100, 0 +spi4mosiPin = bits, U16, 3764, [0:8], $gpio_list +spi4misoPin = bits, U16, 3766, [0:8], $gpio_list +spi4sckPin = bits, U16, 3768, [0:8], $gpio_list +spi5mosiPin = bits, U16, 3770, [0:8], $gpio_list +spi5misoPin = bits, U16, 3772, [0:8], $gpio_list +spi5sckPin = bits, U16, 3774, [0:8], $gpio_list +spi6mosiPin = bits, U16, 3776, [0:8], $gpio_list +spi6misoPin = bits, U16, 3778, [0:8], $gpio_list +spi6sckPin = bits, U16, 3780, [0:8], $gpio_list +spi4SckMode = bits, U08, 3782, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi4MosiMode = bits, U08, 3783, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi4MisoMode = bits, U08, 3784, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi5SckMode = bits, U08, 3785, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi5MosiMode = bits, U08, 3786, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi5MisoMode = bits, U08, 3787, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi6SckMode = bits, U08, 3788, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +spi6MosiMode = bits, U08, 3789, [0:6], "default", "INVALID", "INVALID", "INVALID", "opendrain", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLUP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "PULLDOWN", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" +tunerStudioSerialSpeed = scalar, U32, 3792, "BPs", 1, 0, 0, 1000000, 0 +camSimulatorPin = bits, U16, 3796, [0:8], $gpio_list +camSimulatorPinMode = bits, U08, 3798, [0:1], "default", "default inverted", "open collector", "open collector inverted" +anotherCiTest = scalar, S32, 3800, "", 1, 0, 0, 100, 0 +device_uid1 = scalar, U32, 3804, "", 1, 0, 0, 100, 0 +device_uid2 = scalar, U32, 3808, "", 1, 0, 0, 100, 0 +device_uid3 = scalar, U32, 3812, "", 1, 0, 0, 100, 0 +tcu_rangeAnalogInput1 = bits, U08, 3816, [0:5], $adc_channel_e_list +tcu_rangeAnalogInput2 = bits, U08, 3817, [0:5], $adc_channel_e_list +tcu_rangeAnalogInput3 = bits, U08, 3818, [0:5], $adc_channel_e_list +tcu_rangeAnalogInput4 = bits, U08, 3819, [0:5], $adc_channel_e_list +tcu_rangeAnalogInput5 = bits, U08, 3820, [0:5], $adc_channel_e_list +tcu_rangeAnalogInput6 = bits, U08, 3821, [0:5], $adc_channel_e_list +tcu_rangeSensorBiasResistor = scalar, F32, 3824, "Ohm", 1, 0, 0, 200000, 1 +msIoBox0_id = bits, U08, 3828, [0:1], "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)" +msIoBox0_vss = bits, U08, 3829, [0:1], "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)" +mc33810Nomi = scalar, U08, 3832, "A", 0.25, 0, 3.00, 10.75, 2 +mc33810Maxi = scalar, U08, 3833, "A", 1, 0, 6, 21, 0 +acPressure_hwChannel = bits, U08, 3836, [0:5], $adc_channel_e_list +acPressure_v1 = scalar, F32, 3840, "volts", 1, 0, 0, 10, 2 +acPressure_value1 = scalar, F32, 3844, "", 1, 0, -100000, 1000000, 2 +acPressure_v2 = scalar, F32, 3848, "volts", 1, 0, 0, 10, 2 +acPressure_value2 = scalar, F32, 3852, "", 1, 0, -100000, 1000000, 2 +minAcPressure = scalar, U16, 3856, "kPa", 1, 0, 0, 500, 0 +maxAcPressure = scalar, U16, 3858, "kPa", 1, 0, 0, 500, 0 +minimumOilPressureTimeout = scalar, U08, 3860, "sec", 0.1, 0, 0, 5, 1 +auxLinear3_hwChannel = bits, U08, 3864, [0:5], $adc_channel_e_list +auxLinear3_v1 = scalar, F32, 3868, "volts", 1, 0, 0, 10, 2 +auxLinear3_value1 = scalar, F32, 3872, "", 1, 0, -100000, 1000000, 2 +auxLinear3_v2 = scalar, F32, 3876, "volts", 1, 0, 0, 10, 2 +auxLinear3_value2 = scalar, F32, 3880, "", 1, 0, -100000, 1000000, 2 +auxLinear4_hwChannel = bits, U08, 3884, [0:5], $adc_channel_e_list +auxLinear4_v1 = scalar, F32, 3888, "volts", 1, 0, 0, 10, 2 +auxLinear4_value1 = scalar, F32, 3892, "", 1, 0, -100000, 1000000, 2 +auxLinear4_v2 = scalar, F32, 3896, "volts", 1, 0, 0, 10, 2 +auxLinear4_value2 = scalar, F32, 3900, "", 1, 0, -100000, 1000000, 2 +knockSuppressMinTps = scalar, U08, 3904, "%", 1, 0, 0, 100, 1 +knockFuelTrimAggression = scalar, U08, 3905, "%", 0.1, 0, 0, 20, 1 +knockFuelTrimReapplyRate = scalar, U08, 3906, "1%/s", 0.1, 0, 0, 10, 1 +knockFuelTrim = scalar, U08, 3907, "%", 1, 0, 0, 30, 1 +knockSpectrumSensitivity = scalar, F32, 3908, "sense", 1, 0, 0, 1, 2 +knockFrequency = scalar, F32, 3912, "Hz", 1, 0, 0, 20000, 2 +unusedOftenChangesDuringFirmwareUpdate = array, U08, 3916, [116], "units", 1, 0, 0, 1, 0 +postCrankingFactor = array, F32, 4032, [6x6], "mult", 1, 0, 1, 3, 2 +postCrankingDurationBins = array, F32, 4176, [6], "count", 1, 0, 0, 1000, 0 +postCrankingCLTBins = array, S16, 4200, [6], "C", 1, 0, -100, 250, 0 +etbBiasBins = array, F32, 4212, [8], "target TPS position", 1, 0, 0, 100, 0 +etbBiasValues = array, F32, 4244, [8], "ETB duty cycle bias", 1, 0, -100, 100, 2 +iacPidMultTable = array, U08, 4276, [8x8], "%", 0.05, 0, 0, 10, 2 +iacPidMultLoadBins = array, U08, 4340, [8], "Load", 1, 0, 0, 500, 2 +iacPidMultRpmBins = array, U08, 4348, [8], "RPM", 10.0, 0, 0, 2500, 0 +sparkDwellRpmBins = array, U16, 4356, [8], "RPM", 1, 0, 0, 25000, 0 +sparkDwellValues = array, U16, 4372, [8], "ms", 0.01, 0, 0, 30, 2 +cltIdleRpmBins = array, S08, 4388, [16], "C", 2.0, 0, -40, 250, 0 +cltIdleRpm = array, U08, 4404, [16], "RPM", 20.0, 0, 0, 5000, 0 +cltTimingBins = array, F32, 4420, [8], "C", 1, 0, -100, 250, 1 +cltTimingExtra = array, F32, 4452, [8], "degree", 1, 0, -400, 400, 0 +scriptCurve1Bins = array, F32, 4484, [16], "x", 1, 0, -10000, 10000, 3 +scriptCurve1 = array, F32, 4548, [16], "y", 1, 0, -10000, 10000, 3 +scriptCurve2Bins = array, F32, 4612, [16], "x", 1, 0, -10000, 10000, 3 +scriptCurve2 = array, F32, 4676, [16], "y", 1, 0, -10000, 10000, 3 +scriptCurve3Bins = array, F32, 4740, [8], "x", 1, 0, -10000, 10000, 3 +scriptCurve3 = array, F32, 4772, [8], "y", 1, 0, -10000, 10000, 3 +scriptCurve4Bins = array, F32, 4804, [8], "x", 1, 0, -10000, 10000, 3 +scriptCurve4 = array, F32, 4836, [8], "y", 1, 0, -10000, 10000, 3 +scriptCurve5Bins = array, F32, 4868, [8], "x", 1, 0, -10000, 10000, 3 +scriptCurve5 = array, F32, 4900, [8], "y", 1, 0, -10000, 10000, 3 +scriptCurve6Bins = array, F32, 4932, [8], "x", 1, 0, -10000, 10000, 3 +scriptCurve6 = array, F32, 4964, [8], "y", 1, 0, -10000, 10000, 3 +baroCorrPressureBins = array, F32, 4996, [4], "kPa", 1, 0, 0, 120, 2 +baroCorrRpmBins = array, F32, 5012, [4], "RPM", 1, 0, 0, 18000, 0 +baroCorrTable = array, F32, 5028, [4x4], "ratio", 1, 0, 0, 2, 2 +crankingTpsCoef = array, F32, 5092, [8], "Ratio", 1, 0, 0, 700, 2 +crankingTpsBins = array, F32, 5124, [8], "%", 1, 0, 0, 100, 2 +crankingAdvanceBins = array, U16, 5156, [4], "RPM", 1, 0, 0, 25000, 0 +crankingAdvance = array, S16, 5164, [4], "deg", 0.01, 0, -20, 90, 2 +iacCoastingRpmBins = array, U08, 5172, [16], "RPM", 100.0, 0, 0, 25000, 0 +iacCoasting = array, U08, 5188, [16], "%", 0.5, 0, 0, 100, 1 +warning_message = string, ASCII, 5204, 120 +boostTableOpenLoop = array, U08, 5324, [8x8], "", 0.5, 0, 0, 100, 1 +boostRpmBins = array, U08, 5388, [8], "RPM", 100.0, 0, 0, 25000, 0 +boostTableClosedLoop = array, U08, 5396, [8x8], "", 2.0, 0, 0, 3000, 0 +boostLoadBins = array, U08, 5460, [8], "", 1, 0, 0, 1000, 0 +pedalToTpsTable = array, U08, 5468, [8x8], "%", 1, 0, 0, 100, 0 +pedalToTpsPedalBins = array, U08, 5532, [8], "%", 1, 0, 0, 120, 0 +pedalToTpsRpmBins = array, U08, 5540, [8], "RPM", 100.0, 0, 0, 25000, 0 +cltCrankingCorrBins = array, F32, 5548, [8], "C", 1, 0, -100, 250, 2 +cltCrankingCorr = array, F32, 5580, [8], "%", 1, 0, 0, 500, 2 +idleAdvanceBins = array, U08, 5612, [8], "RPM", 50.0, 0, 0, 12000, 0 +idleAdvance = array, F32, 5620, [8], "deg", 1, 0, -20, 90, 1 +idleVeRpmBins = array, U08, 5652, [4], "RPM", 10.0, 0, 0, 2500, 0 +idleVeLoadBins = array, U08, 5656, [4], "load", 1, 0, 0, 100, 0 +idleVeTable = array, U16, 5660, [4x4], "%", 0.1, 0, 0, 999, 1 +luaScript = string, ASCII, 5692, 8000 +cltFuelCorrBins = array, F32, 13692, [16], "C", 1, 0, -100, 250, 2 +cltFuelCorr = array, F32, 13756, [16], "ratio", 1, 0, 0, 5, 2 +iatFuelCorrBins = array, F32, 13820, [16], "C", 1, 0, -100, 250, 2 +iatFuelCorr = array, F32, 13884, [16], "ratio", 1, 0, 0, 5, 2 +crankingFuelCoef = array, F32, 13948, [8], "ratio", 1, 0, 0, 50, 2 +crankingFuelBins = array, F32, 13980, [8], "C", 1, 0, -80, 250, 2 +crankingCycleBins = array, F32, 14012, [8], "counter", 1, 0, -80, 170, 0 +crankingCycleFuelCltBins = array, S16, 14044, [4], "C", 1, 0, -100, 250, 2 +crankingCycleFuelCoef = array, F32, 14052, [8x4], "mult", 1, 0, 0, 5, 2 +cltIdleCorrBins = array, F32, 14180, [16], "C", 1, 0, -100, 250, 2 +cltIdleCorr = array, F32, 14244, [16], "ratio", 1, 0, 0, 10, 2 +mafDecoding = array, F32, 14308, [32], "kg/hour", 1, 0, -500, 4000, 2 +mafDecodingBins = array, F32, 14436, [32], "V", 1, 0, -5, 150, 2 +ignitionIatCorrTable = array, S08, 14564, [8x8], "deg", 0.1, 0, -25, 25, 1 +ignitionIatCorrTempBins = array, S08, 14628, [8], "C", 1, 0, -40, 120, 0 +ignitionIatCorrLoadBins = array, U08, 14636, [8], "Load", 5.0, 0, 0, 1000, 0 +injectionPhase = array, S16, 14644, [16x16], "deg", 1, 0, -720, 720, 0 +injPhaseLoadBins = array, U16, 15156, [16], "Load", 1, 0, 0, 1000, 0 +injPhaseRpmBins = array, U16, 15188, [16], "RPM", 1, 0, 0, 18000, 0 +tcuSolenoidTable = array, U08, 15220, [10x6], "onoff", 1, 0, 0, 1, 0 +mapEstimateTable = array, U16, 15280, [16x16], "kPa", 0.01, 0, 0, 1000, 2 +mapEstimateTpsBins = array, U16, 15792, [16], "% TPS", 0.01, 0, 0, 100, 1 +mapEstimateRpmBins = array, U16, 15824, [16], "RPM", 1, 0, 0, 18000, 0 +vvtTable1 = array, S08, 15856, [8x8], "value", 1, 0, -125, 125, 0 +vvtTable1LoadBins = array, U16, 15920, [8], "L", 1, 0, 0, 1000, 0 +vvtTable1RpmBins = array, U16, 15936, [8], "RPM", 1, 0, 0, 18000, 0 +vvtTable2 = array, S08, 15952, [8x8], "value", 1, 0, -125, 125, 0 +vvtTable2LoadBins = array, U16, 16016, [8], "L", 1, 0, 0, 1000, 0 +vvtTable2RpmBins = array, U16, 16032, [8], "RPM", 1, 0, 0, 18000, 0 +ignitionTable = array, S16, 16048, [16x16], "deg", 0.1, 0, -20, 90, 1 +ignitionLoadBins = array, U16, 16560, [16], "Load", 1, 0, 0, 1000, 0 +ignitionRpmBins = array, U16, 16592, [16], "RPM", 1, 0, 0, 18000, 0 +veTable = array, U16, 16624, [16x16], "%", 0.1, 0, 0, 999, 1 +veLoadBins = array, U16, 17136, [16], {bitStringValue(fuelUnits, fuelAlgorithm) }, 1, 0, 0, 1000, 0 +veRpmBins = array, U16, 17168, [16], "RPM", 1, 0, 0, 18000, 0 +#if LAMBDA +lambdaTable = array, U08, 17200, [16x16], "lambda", 0.006802721088435374, 0, 0.6, 1.5, 2 +#else +lambdaTable = array, U08, 17200, [16x16], "afr", 0.1, 0, 0, 25, 1 +#endif +lambdaLoadBins = array, U16, 17456, [16], "", 1, 0, 0, 1000, 0 +lambdaRpmBins = array, U16, 17488, [16], "RPM", 1, 0, 0, 18000, 0 +tpsTpsAccelTable = array, F32, 17520, [8x8], "value", 1, 0, 0, 30000, 2 +tpsTpsAccelFromRpmBins = array, F32, 17776, [8], "from", 1, 0, 0, 30000, 2 +tpsTpsAccelToRpmBins = array, F32, 17808, [8], "to", 1, 0, 0, 25500, 2 +scriptTable1 = array, F32, 17840, [8x8], "value", 1, 0, -100000, 100000, 2 +scriptTable1LoadBins = array, S16, 18096, [8], "L", 1, 0, -32000, 32000, 0 +scriptTable1RpmBins = array, S16, 18112, [8], "RPM", 1, 0, -32000, 32000, 0 +scriptTable2 = array, F32, 18128, [8x8], "value", 1, 0, -100000, 100000, 2 +scriptTable2LoadBins = array, S16, 18384, [8], "L", 1, 0, -32000, 32000, 0 +scriptTable2RpmBins = array, S16, 18400, [8], "RPM", 1, 0, -32000, 32000, 0 +scriptTable3 = array, U08, 18416, [8x8], "value", 1, 0, 0, 255, 0 +scriptTable3LoadBins = array, S16, 18480, [8], "L", 1, 0, -32000, 32000, 0 +scriptTable3RpmBins = array, S16, 18496, [8], "RPM", 1, 0, -32000, 32000, 0 +scriptTable4 = array, U08, 18512, [10x8], "value", 1, 0, 0, 255, 0 +scriptTable4LoadBins = array, S16, 18592, [8], "L", 1, 0, -32000, 32000, 0 +scriptTable4RpmBins = array, S16, 18608, [10], "RPM", 1, 0, -32000, 32000, 0 +ignTrimLoadBins = array, U16, 18628, [4], "", 1, 0, 0, 1000, 0 +ignTrimRpmBins = array, U16, 18636, [4], "rpm", 1, 0, 0, 20000, 0 +ignTrims1_table = array, S08, 18644, [4x4], "", 0.2, 0, -25, 25, 1 +ignTrims2_table = array, S08, 18660, [4x4], "", 0.2, 0, -25, 25, 1 +ignTrims3_table = array, S08, 18676, [4x4], "", 0.2, 0, -25, 25, 1 +ignTrims4_table = array, S08, 18692, [4x4], "", 0.2, 0, -25, 25, 1 +ignTrims5_table = array, S08, 18708, [4x4], "", 0.2, 0, -25, 25, 1 +ignTrims6_table = array, S08, 18724, [4x4], "", 0.2, 0, -25, 25, 1 +ignTrims7_table = array, S08, 18740, [4x4], "", 0.2, 0, -25, 25, 1 +ignTrims8_table = array, S08, 18756, [4x4], "", 0.2, 0, -25, 25, 1 +ignTrims9_table = array, S08, 18772, [4x4], "", 0.2, 0, -25, 25, 1 +ignTrims10_table = array, S08, 18788, [4x4], "", 0.2, 0, -25, 25, 1 +ignTrims11_table = array, S08, 18804, [4x4], "", 0.2, 0, -25, 25, 1 +ignTrims12_table = array, S08, 18820, [4x4], "", 0.2, 0, -25, 25, 1 +fuelTrimLoadBins = array, U16, 18836, [4], "", 1, 0, 0, 1000, 0 +fuelTrimRpmBins = array, U16, 18844, [4], "rpm", 1, 0, 0, 20000, 0 +fuelTrims1_table = array, S08, 18852, [4x4], "", 0.2, 0, -25, 25, 1 +fuelTrims2_table = array, S08, 18868, [4x4], "", 0.2, 0, -25, 25, 1 +fuelTrims3_table = array, S08, 18884, [4x4], "", 0.2, 0, -25, 25, 1 +fuelTrims4_table = array, S08, 18900, [4x4], "", 0.2, 0, -25, 25, 1 +fuelTrims5_table = array, S08, 18916, [4x4], "", 0.2, 0, -25, 25, 1 +fuelTrims6_table = array, S08, 18932, [4x4], "", 0.2, 0, -25, 25, 1 +fuelTrims7_table = array, S08, 18948, [4x4], "", 0.2, 0, -25, 25, 1 +fuelTrims8_table = array, S08, 18964, [4x4], "", 0.2, 0, -25, 25, 1 +fuelTrims9_table = array, S08, 18980, [4x4], "", 0.2, 0, -25, 25, 1 +fuelTrims10_table = array, S08, 18996, [4x4], "", 0.2, 0, -25, 25, 1 +fuelTrims11_table = array, S08, 19012, [4x4], "", 0.2, 0, -25, 25, 1 +fuelTrims12_table = array, S08, 19028, [4x4], "", 0.2, 0, -25, 25, 1 +crankingFuelCoefE100 = array, U16, 19044, [8], "ratio", 0.01, 0, 0, 50, 2 +tcu_pcAirmassBins = array, U08, 19060, [8], "Airmass", 5.0, 0, 0, 1200, 0 +tcu_pcValsR = array, U08, 19068, [8], "%", 1, 0, 0, 255, 0 +tcu_pcValsN = array, U08, 19076, [8], "%", 1, 0, 0, 255, 0 +tcu_pcVals1 = array, U08, 19084, [8], "%", 1, 0, 0, 255, 0 +tcu_pcVals2 = array, U08, 19092, [8], "%", 1, 0, 0, 255, 0 +tcu_pcVals3 = array, U08, 19100, [8], "%", 1, 0, 0, 255, 0 +tcu_pcVals4 = array, U08, 19108, [8], "%", 1, 0, 0, 255, 0 +tcu_pcVals12 = array, U08, 19116, [8], "%", 1, 0, 0, 255, 0 +tcu_pcVals23 = array, U08, 19124, [8], "%", 1, 0, 0, 255, 0 +tcu_pcVals34 = array, U08, 19132, [8], "%", 1, 0, 0, 255, 0 +tcu_pcVals21 = array, U08, 19140, [8], "%", 1, 0, 0, 255, 0 +tcu_pcVals32 = array, U08, 19148, [8], "%", 1, 0, 0, 255, 0 +tcu_pcVals43 = array, U08, 19156, [8], "%", 1, 0, 0, 255, 0 +tcu_tccTpsBins = array, U08, 19164, [8], "TPS", 1, 0, 0, 255, 0 +tcu_tccLockSpeed = array, U08, 19172, [8], "MPH", 1, 0, 0, 255, 0 +tcu_tccUnlockSpeed = array, U08, 19180, [8], "MPH", 1, 0, 0, 255, 0 +tcu_32SpeedBins = array, U08, 19188, [8], "KPH", 1, 0, 0, 255, 0 +tcu_32Vals = array, U08, 19196, [8], "%", 1, 0, 0, 255, 0 +throttle2TrimTable = array, S08, 19204, [6x6], "%", 0.1, 0, -10, 10, 1 +throttle2TrimTpsBins = array, U08, 19240, [6], "%", 1, 0, 0, 120, 0 +throttle2TrimRpmBins = array, U08, 19246, [6], "RPM", 100.0, 0, 0, 25000, 0 +maxKnockRetardTable = array, U08, 19252, [6x6], "deg", 0.25, 0, 0, 30, 2 +maxKnockRetardLoadBins = array, U08, 19288, [6], "%", 1, 0, 0, 250, 0 +maxKnockRetardRpmBins = array, U08, 19294, [6], "RPM", 100.0, 0, 0, 25000, 0 +ALSTimingRetardTable = array, S16, 19300, [4x4], "deg", 0.1, 0, -60, 0, 1 +alsIgnRetardLoadBins = array, U16, 19332, [4], "TPS", 1, 0, 0, 100, 0 +alsIgnRetardrpmBins = array, U16, 19340, [4], "RPM", 1, 0, 0, 25000, 0 +ALSFuelAdjustment = array, S16, 19348, [4x4], "percent", 0.1, 0, 0, 50, 1 +alsFuelAdjustmentLoadBins = array, U16, 19380, [4], "TPS", 1, 0, 0, 100, 0 +alsFuelAdjustmentrpmBins = array, U16, 19388, [4], "RPM", 1, 0, 0, 25000, 0 +ALSIgnSkipTable = array, S16, 19396, [4x4], "ratio", 10.0, 0, 0, 50, 1 +alsIgnSkipLoadBins = array, U16, 19428, [4], "TPS", 1, 0, 0, 100, 0 +alsIgnSkiprpmBins = array, U16, 19436, [4], "RPM", 1, 0, 0, 25000, 0 +ignBlends1_table = array, S16, 19444, [8x8], "", 0.1, 0, -100, 100, 1 +ignBlends1_loadBins = array, U16, 19572, [8], "Load", 1, 0, 0, 1000, 0 +ignBlends1_rpmBins = array, U16, 19588, [8], "RPM", 1, 0, 0, 18000, 0 +ignBlends1_blendParameter = bits, U08, 19604, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +ignBlends1_yAxisOverride = bits, U08, 19605, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +ignBlends1_blendBins = array, S16, 19606, [8], "", 0.1, 0, -1000, 1000, 1 +ignBlends1_blendValues = array, U08, 19622, [8], "%", 0.5, 0, 0, 100, 1 +ignBlends2_table = array, S16, 19632, [8x8], "", 0.1, 0, -100, 100, 1 +ignBlends2_loadBins = array, U16, 19760, [8], "Load", 1, 0, 0, 1000, 0 +ignBlends2_rpmBins = array, U16, 19776, [8], "RPM", 1, 0, 0, 18000, 0 +ignBlends2_blendParameter = bits, U08, 19792, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +ignBlends2_yAxisOverride = bits, U08, 19793, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +ignBlends2_blendBins = array, S16, 19794, [8], "", 0.1, 0, -1000, 1000, 1 +ignBlends2_blendValues = array, U08, 19810, [8], "%", 0.5, 0, 0, 100, 1 +ignBlends3_table = array, S16, 19820, [8x8], "", 0.1, 0, -100, 100, 1 +ignBlends3_loadBins = array, U16, 19948, [8], "Load", 1, 0, 0, 1000, 0 +ignBlends3_rpmBins = array, U16, 19964, [8], "RPM", 1, 0, 0, 18000, 0 +ignBlends3_blendParameter = bits, U08, 19980, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +ignBlends3_yAxisOverride = bits, U08, 19981, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +ignBlends3_blendBins = array, S16, 19982, [8], "", 0.1, 0, -1000, 1000, 1 +ignBlends3_blendValues = array, U08, 19998, [8], "%", 0.5, 0, 0, 100, 1 +ignBlends4_table = array, S16, 20008, [8x8], "", 0.1, 0, -100, 100, 1 +ignBlends4_loadBins = array, U16, 20136, [8], "Load", 1, 0, 0, 1000, 0 +ignBlends4_rpmBins = array, U16, 20152, [8], "RPM", 1, 0, 0, 18000, 0 +ignBlends4_blendParameter = bits, U08, 20168, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +ignBlends4_yAxisOverride = bits, U08, 20169, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +ignBlends4_blendBins = array, S16, 20170, [8], "", 0.1, 0, -1000, 1000, 1 +ignBlends4_blendValues = array, U08, 20186, [8], "%", 0.5, 0, 0, 100, 1 +veBlends1_table = array, S16, 20196, [8x8], "", 0.1, 0, -100, 100, 1 +veBlends1_loadBins = array, U16, 20324, [8], "Load", 1, 0, 0, 1000, 0 +veBlends1_rpmBins = array, U16, 20340, [8], "RPM", 1, 0, 0, 18000, 0 +veBlends1_blendParameter = bits, U08, 20356, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +veBlends1_yAxisOverride = bits, U08, 20357, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +veBlends1_blendBins = array, S16, 20358, [8], "", 0.1, 0, -1000, 1000, 1 +veBlends1_blendValues = array, U08, 20374, [8], "%", 0.5, 0, 0, 100, 1 +veBlends2_table = array, S16, 20384, [8x8], "", 0.1, 0, -100, 100, 1 +veBlends2_loadBins = array, U16, 20512, [8], "Load", 1, 0, 0, 1000, 0 +veBlends2_rpmBins = array, U16, 20528, [8], "RPM", 1, 0, 0, 18000, 0 +veBlends2_blendParameter = bits, U08, 20544, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +veBlends2_yAxisOverride = bits, U08, 20545, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +veBlends2_blendBins = array, S16, 20546, [8], "", 0.1, 0, -1000, 1000, 1 +veBlends2_blendValues = array, U08, 20562, [8], "%", 0.5, 0, 0, 100, 1 +veBlends3_table = array, S16, 20572, [8x8], "", 0.1, 0, -100, 100, 1 +veBlends3_loadBins = array, U16, 20700, [8], "Load", 1, 0, 0, 1000, 0 +veBlends3_rpmBins = array, U16, 20716, [8], "RPM", 1, 0, 0, 18000, 0 +veBlends3_blendParameter = bits, U08, 20732, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +veBlends3_yAxisOverride = bits, U08, 20733, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +veBlends3_blendBins = array, S16, 20734, [8], "", 0.1, 0, -1000, 1000, 1 +veBlends3_blendValues = array, U08, 20750, [8], "%", 0.5, 0, 0, 100, 1 +veBlends4_table = array, S16, 20760, [8x8], "", 0.1, 0, -100, 100, 1 +veBlends4_loadBins = array, U16, 20888, [8], "Load", 1, 0, 0, 1000, 0 +veBlends4_rpmBins = array, U16, 20904, [8], "RPM", 1, 0, 0, 18000, 0 +veBlends4_blendParameter = bits, U08, 20920, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +veBlends4_yAxisOverride = bits, U08, 20921, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +veBlends4_blendBins = array, S16, 20922, [8], "", 0.1, 0, -1000, 1000, 1 +veBlends4_blendValues = array, U08, 20938, [8], "%", 0.5, 0, 0, 100, 1 +throttleEstimateEffectiveAreaBins = array, U16, 20948, [12], "%", 0.1, 0, 0, 100, 1 +throttleEstimateEffectiveAreaValues = array, U16, 20972, [12], "g/s", 0.1, 0, 0, 6500, 1 +boostOpenLoopBlends1_table = array, S16, 20996, [8x8], "", 0.1, 0, -100, 100, 1 +boostOpenLoopBlends1_loadBins = array, U16, 21124, [8], "Load", 1, 0, 0, 1000, 0 +boostOpenLoopBlends1_rpmBins = array, U16, 21140, [8], "RPM", 1, 0, 0, 18000, 0 +boostOpenLoopBlends1_blendParameter = bits, U08, 21156, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +boostOpenLoopBlends1_yAxisOverride = bits, U08, 21157, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +boostOpenLoopBlends1_blendBins = array, S16, 21158, [8], "", 0.1, 0, -1000, 1000, 1 +boostOpenLoopBlends1_blendValues = array, U08, 21174, [8], "%", 0.5, 0, 0, 100, 1 +boostOpenLoopBlends2_table = array, S16, 21184, [8x8], "", 0.1, 0, -100, 100, 1 +boostOpenLoopBlends2_loadBins = array, U16, 21312, [8], "Load", 1, 0, 0, 1000, 0 +boostOpenLoopBlends2_rpmBins = array, U16, 21328, [8], "RPM", 1, 0, 0, 18000, 0 +boostOpenLoopBlends2_blendParameter = bits, U08, 21344, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +boostOpenLoopBlends2_yAxisOverride = bits, U08, 21345, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +boostOpenLoopBlends2_blendBins = array, S16, 21346, [8], "", 0.1, 0, -1000, 1000, 1 +boostOpenLoopBlends2_blendValues = array, U08, 21362, [8], "%", 0.5, 0, 0, 100, 1 +boostClosedLoopBlends1_table = array, S16, 21372, [8x8], "", 0.1, 0, -100, 100, 1 +boostClosedLoopBlends1_loadBins = array, U16, 21500, [8], "Load", 1, 0, 0, 1000, 0 +boostClosedLoopBlends1_rpmBins = array, U16, 21516, [8], "RPM", 1, 0, 0, 18000, 0 +boostClosedLoopBlends1_blendParameter = bits, U08, 21532, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +boostClosedLoopBlends1_yAxisOverride = bits, U08, 21533, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +boostClosedLoopBlends1_blendBins = array, S16, 21534, [8], "", 0.1, 0, -1000, 1000, 1 +boostClosedLoopBlends1_blendValues = array, U08, 21550, [8], "%", 0.5, 0, 0, 100, 1 +boostClosedLoopBlends2_table = array, S16, 21560, [8x8], "", 0.1, 0, -100, 100, 1 +boostClosedLoopBlends2_loadBins = array, U16, 21688, [8], "Load", 1, 0, 0, 1000, 0 +boostClosedLoopBlends2_rpmBins = array, U16, 21704, [8], "RPM", 1, 0, 0, 18000, 0 +boostClosedLoopBlends2_blendParameter = bits, U08, 21720, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +boostClosedLoopBlends2_yAxisOverride = bits, U08, 21721, [0:4], "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2", "Aux Linear 3", "Aux Linear 4", "Vehicle speed" +boostClosedLoopBlends2_blendBins = array, S16, 21722, [8], "", 0.1, 0, -1000, 1000, 1 +boostClosedLoopBlends2_blendValues = array, U08, 21738, [8], "%", 0.5, 0, 0, 100, 1 +tcu_rangeP = array, F32, 21748, [6], "level", 1, 0, 0, 200000, 0 +tcu_rangeR = array, F32, 21772, [6], "level", 1, 0, 0, 200000, 0 +tcu_rangeN = array, F32, 21796, [6], "level", 1, 0, 0, 200000, 0 +tcu_rangeD = array, F32, 21820, [6], "level", 1, 0, 0, 200000, 0 +tcu_rangeM = array, F32, 21844, [6], "level", 1, 0, 0, 200000, 0 +tcu_rangeM3 = array, F32, 21868, [6], "level", 1, 0, 0, 200000, 0 +tcu_rangeM2 = array, F32, 21892, [6], "level", 1, 0, 0, 200000, 0 +tcu_rangeM1 = array, F32, 21916, [6], "level", 1, 0, 0, 200000, 0 +tcu_rangePlus = array, F32, 21940, [6], "level", 1, 0, 0, 200000, 0 +tcu_rangeMinus = array, F32, 21964, [6], "level", 1, 0, 0, 200000, 0 +tcu_rangeLow = array, F32, 21988, [6], "level", 1, 0, 0, 200000, 0 +lambdaMaxDeviationTable = array, U08, 22012, [4x4], "lambda", 0.01, 0, 0, 1, 2 +lambdaMaxDeviationLoadBins = array, U16, 22028, [4], "", 1, 0, 0, 1000, 0 +lambdaMaxDeviationRpmBins = array, U16, 22036, [4], "RPM", 1, 0, 0, 18000, 0 +injectorStagingTable = array, U08, 22044, [6x6], "%", 1, 0, 0, 90, 0 +injectorStagingLoadBins = array, U16, 22080, [6], "", 1, 0, 0, 1000, 0 +injectorStagingRpmBins = array, U16, 22092, [6], "RPM", 1, 0, 0, 18000, 0 +wwCltBins = array, S08, 22104, [8], "deg C", 1, 0, -40, 120, 0 +wwTauCltValues = array, U08, 22112, [8], "", 0.01, 0, 0, 2.5, 2 +wwBetaCltValues = array, U08, 22120, [8], "", 0.01, 0, 0, 1, 2 +wwMapBins = array, S08, 22128, [8], "kPa", 1, 0, 0, 250, 0 +wwTauMapValues = array, U08, 22136, [8], "", 0.01, 0, 0, 2.5, 2 +wwBetaMapValues = array, U08, 22144, [8], "", 0.01, 0, 0, 2.5, 2 +hpfpLobeProfileQuantityBins = array, U08, 22152, [16], "%", 0.5, 0, 0, 100, 1 +hpfpLobeProfileAngle = array, U08, 22168, [16], "deg", 0.5, 0, 0, 125, 1 +hpfpDeadtimeVoltsBins = array, U08, 22184, [8], "volts", 1, 0, 0, 255, 0 +hpfpDeadtimeMS = array, U16, 22192, [8], "ms", 0.001, 0, 0, 65, 3 +hpfpTarget = array, U16, 22208, [10x10], "kPa", 1, 0, 0, 65000, 0 +hpfpTargetLoadBins = array, U16, 22408, [10], "load", 0.1, 0, 0, 6500, 1 +hpfpTargetRpmBins = array, U08, 22428, [10], "RPM", 50.0, 0, 0, 12500, 0 +hpfpCompensation = array, S08, 22438, [10x10], "%", 1, 0, -100, 100, 0 +hpfpCompensationLoadBins = array, U16, 22538, [10], "cc/lobe", 0.001, 0, 0, 65, 3 +hpfpCompensationRpmBins = array, U08, 22558, [10], "RPM", 50.0, 0, 0, 12500, 0 +knockNoiseRpmBins = array, U16, 22568, [16], "RPM", 1, 0, 0, 30000, 0 +knockBaseNoise = array, S08, 22600, [16], "dB", 0.5, 0, -99, 10, 1 +tpsTspCorrValuesBins = array, U08, 22616, [4], "RPM", 50.0, 0, 0, 17500, 0 +tpsTspCorrValues = array, U08, 22620, [4], "multiplier", 0.02, 0, 0, 5, 2 +cltRevLimitRpmBins = array, S08, 22624, [4], "C", 1, 0, -40, 120, 0 +cltRevLimitRpm = array, U16, 22628, [4], "RPM", 1, 0, 0, 20000, 0 +fuelLevelBins = array, U16, 22636, [8], "volt", 0.001, 0, 0, 5, 3 +fuelLevelValues = array, U08, 22652, [8], "%", 1, 0, 0, 100, 0 +dwellVoltageCorrVoltBins = array, U08, 22660, [8], "volts", 0.1, 0, 0, 20, 1 +dwellVoltageCorrValues = array, U08, 22668, [8], "multiplier", 0.02, 0, 0, 5, 2 +tcu_shiftTpsBins = array, U08, 22676, [8], "%", 1, 0, 0, 255, 2 +tcu_shiftSpeed12 = array, U08, 22684, [8], "MPH", 1, 0, 0, 255, 0 +tcu_shiftSpeed23 = array, U08, 22692, [8], "MPH", 1, 0, 0, 255, 0 +tcu_shiftSpeed34 = array, U08, 22700, [8], "MPH", 1, 0, 0, 255, 0 +tcu_shiftSpeed21 = array, U08, 22708, [8], "MPH", 1, 0, 0, 255, 0 +tcu_shiftSpeed32 = array, U08, 22716, [8], "MPH", 1, 0, 0, 255, 0 +tcu_shiftSpeed43 = array, U08, 22724, [8], "MPH", 1, 0, 0, 255, 0 +tcu_shiftTime = scalar, F32, 22732, "ms", 1, 0, 0, 3000, 0 +alternatorVoltageTargetTable = array, S16, 22736, [4x4], "Volts", 0.1, 0, 0, 30, 1 +alternatorVoltageTargetLoadBins = array, U16, 22768, [4], "Load", 1, 0, 0, 1000, 0 +alternatorVoltageTargetRpmBins = array, U16, 22776, [4], "RPM", 1, 0, 0, 18000, 0 +cltBoostCorrBins = array, F32, 22784, [5], "C", 1, 0, -100, 250, 2 +cltBoostCorr = array, F32, 22804, [5], "ratio", 1, 0, 0, 5, 2 +iatBoostCorrBins = array, F32, 22824, [5], "C", 1, 0, -100, 250, 2 +iatBoostCorr = array, F32, 22844, [5], "ratio", 1, 0, 0, 5, 2 +cltBoostAdderBins = array, F32, 22864, [5], "C", 1, 0, -100, 250, 2 +cltBoostAdder = array, F32, 22884, [5], "", 1, 0, 0, 5, 2 +iatBoostAdderBins = array, F32, 22904, [5], "C", 1, 0, -100, 250, 2 +iatBoostAdder = array, F32, 22924, [5], "", 1, 0, 0, 5, 2 +minimumOilPressureBins = array, U08, 22944, [8], "RPM", 100.0, 0, 0, 25000, 0 +minimumOilPressureValues = array, U08, 22952, [8], "kPa", 10.0, 0, 0, 1000, 0 +; total TS size = 22960 +[SettingContextHelp] + engineType = "http://rusefi.com/wiki/index.php?title=Manual:Engine_Type\nset engine_type X" + sensorSnifferRpmThreshold = "Disable sensor sniffer above this rpm" + launchRpm = "A secondary Rev limit engaged by the driver to help launch the vehicle faster" + rpmHardLimit = "set rpm_hard_limit X" + engineSnifferRpmThreshold = "Engine sniffer would be disabled above this rpm\nset engineSnifferRpmThreshold X" + multisparkMaxRpm = "Disable multispark above this engine speed." + maxAcRpm = "Above this RPM, disable AC. Set to 0 to disable check." + maxAcTps = "Above this TPS, disable AC. Set to 0 to disable check." + maxAcClt = "Above this CLT, disable AC to prevent overheating the engine. Set to 0 to disable check." + compressionRatio = "Just for reference really, not taken into account by any logic at this point" + wastegatePositionMin = "Voltage when the wastegate is closed.\nYou probably don't have one of these!" + wastegatePositionMax = "Voltage when the wastegate is fully open.\nYou probably don't have one of these!\n1 volt = 1000 units" + idlePositionMin = "Voltage when the idle valve is closed.\nYou probably don't have one of these!" + idlePositionMax = "Voltage when the idle valve is open.\nYou probably don't have one of these!\n1 volt = 1000 units" + torqueReductionTriggerPin = "Pin that activates the reduction/cut for shifting. Sometimes shared with the Launch Control pin" + etbJamTimeout = "Time after which the throttle is considered jammed." + acIdleExtraOffset = "Additional idle % while A/C is active" + manIdlePosition = "Value between 0 and 100 used in Manual mode" + multisparkMaxSparkingAngle = "This parameter sets the latest that the last multispark can occur after the main ignition event. For example, if the ignition timing is 30 degrees BTDC, and this parameter is set to 45, no multispark will ever be fired after 15 degrees ATDC." + multisparkMaxExtraSparkCount = "Configures the maximum number of extra sparks to fire (does not include main spark)" + injector_flow = "This is your injector flow at the fuel pressure used in the vehicle\nSee units setting below" + injector_battLagCorr = "ms delay between injector open and close dead times" + injectorSecondary_flow = "This is your injector flow at the fuel pressure used in the vehicle\nSee units setting below" + injectorSecondary_battLagCorr = "ms delay between injector open and close dead times" + isForcedInduction = "Does the vehicle have a turbo or supercharger?" + useFordRedundantTps = "On some Ford and Toyota vehicles one of the throttle sensors is not linear on the full range, i.e. in the specific range of the positions we effectively have only one sensor." + enableFan1WithAc = "Turn on this fan when AC is on." + enableFan2WithAc = "Turn on this fan when AC is on." + disableFan1WhenStopped = "Inhibit operation of this fan while the engine is not running." + disableFan2WhenStopped = "Inhibit operation of this fan while the engine is not running." + enableTrailingSparks = "Enable secondary spark outputs that fire after the primary (rotaries, twin plug engines)." + etb_use_two_wires = "TLE7209 and L6205 use two-wire mode. TLE9201 and VNH2SP30 do NOT use two wire mode." + isDoubleSolenoidIdle = "Subaru/BMW style where default valve position is somewhere in the middle. First solenoid opens it more while second can close it more than default position." + useCicPidForIdle = "Switch between Industrial and Cic PID implementation" + useSeparateIdleTablesForCrankingTaper = "This uses separate ignition timing and VE tables not only for idle conditions, also during the postcranking-to-idle taper transition (See also afterCrankingIACtaperDuration)." + doNotFilterTriggerEdgeNoise = "Detect double trigger edges" + useRunningMathForCranking = "For cranking either use the specified fixed base fuel mass, or use the normal running math (VE table)." + displayLogicLevelsInEngineSniffer = "Shall we display real life signal or just the part consumed by trigger decoder.\nApplies to both trigger and cam/vvt input.\n\nenable logic_level_trigger" + verboseCan = "Print incoming and outgoing first bus CAN messages in rusEFI console" + artificialTestMisfire = "Experimental setting that will cause a misfire\nDO NOT ENABLE." + useFordRedundantPps = "On some Ford and Toyota vehicles one of the pedal sensors is not linear on the full range, i.e. in the specific range of the positions we effectively have only one sensor." + useSpiImu = "If enabled - use onboard SPI Accelerometer, otherwise listen for CAN messages" + tpsMin = "Closed throttle, 1 volt = 200 units.\nSee also tps1_1AdcChannel\nset tps_min X" + tpsMax = "Full throttle.\nSee also tps1_1AdcChannel\nset tps_max X" + tpsErrorDetectionTooLow = "TPS error detection: what throttle % is unrealistically low?\nAlso used for accelerator pedal error detection if so equipped." + tpsErrorDetectionTooHigh = "TPS error detection: what throttle % is unrealistically high?\nAlso used for accelerator pedal error detection if so equipped." + cranking_baseFuel = "Base mass of the per-cylinder fuel injected during cranking. This is then modified by the multipliers for CLT, IAT, TPS ect, to give the final cranking pulse width.\nA reasonable starting point is 60mg per liter per cylinder.\nex: 2 liter 4 cyl = 500cc/cyl, so 30mg cranking fuel." + cranking_rpm = "This sets the RPM limit below which the ECU will use cranking fuel and ignition logic, typically this is around 350-450rpm. \nset cranking_rpm X" + ignitionDwellForCrankingMs = "Dwell duration while cranking" + etbRevLimitStart = "Once engine speed passes this value, start reducing ETB angle." + etbRevLimitRange = "This far above 'Soft limiter start', fully close the throttle. At the bottom of the range, throttle control is normal. At the top of the range, the throttle is fully closed." + map_samplingAngle = "MAP averaging sampling start crank degree angle" + map_samplingWindow = "MAP averaging angle crank degree duration" + map_sensor_lowValue = "kPa value at low volts" + map_sensor_highValue = "kPa value at high volts" + clt_tempC_1 = "these values are in Celcius" + clt_bias_resistor = "Pull-up resistor value on your board" + iat_tempC_1 = "these values are in Celcius" + iat_bias_resistor = "Pull-up resistor value on your board" + hip9011PrescalerAndSDO = "value '6' for 8MHz hw osc\nread hip9011 datasheet for details\ntodo split into two bit fields" + alternator_iTermMin = "iTerm min value" + alternator_iTermMax = "iTerm max value" + displacement = "Engine displacement in litres" + cylindersCount = "Number of cylinder the engine has." + mapSyncThreshold = "Delta kPa for MAP sync" + torqueReductionIgnitionCut = "How many % of ignition events will be cut" + cylinderBore = "Cylinder diameter in mm" + fuelAlgorithm = "This setting controls which fuel quantity control algorithm is used.\nAlpha-N means drive by TPS commonly only used for NA engines\nSpeed Density requires MAP sensor and is the default choice for may installs\nMAF air charge is a cylinder filling based method that uses a mass air flow sensor." + crankingInjectionMode = "This is the injection strategy during engine start. See Fuel/Injection settings for more detail. It is suggested to use "Simultaneous"." + injectionMode = "This is where the fuel injection type is defined: "Simultaneous" means all injectors will fire together at once. "Sequential" fires the injectors on a per cylinder basis, which requires individually wired injectors. "Batched" will fire the injectors in groups." + boostControlMinRpm = "Minimum RPM to enable boost control. Use this to avoid solenoid noise at idle, and help spool in some cases." + boostControlMinTps = "Minimum TPS to enable boost control. Use this to avoid solenoid noise at idle, and help spool in some cases." + boostControlMinMap = "Minimum MAP to enable boost control. Use this to avoid solenoid noise at idle, and help spool in some cases." + crankingTimingAngle = "Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines.\nThere is tapering towards running timing advance\nset cranking_timing_angle X" + ignitionMode = "Single coil = distributor\nIndividual coils = one coil per cylinder (COP, coil-near-plug), requires sequential mode\nWasted spark = Fires pairs of cylinders together, either one coil per pair of cylinders or one coil per cylinder\nTwo distributors = A pair of distributors, found on some BMW, Toyota and other engines\nset ignition_mode X" + gapTrackingLengthOverride = "How many consecutive gap rations have to match expected ranges for sync to happen" + maxIdleVss = "Above this speed, disable closed loop idle control. Set to 0 to disable (allow closed loop idle at any speed)." + minOilPressureAfterStart = "Expected oil pressure after starting the engine. If oil pressure does not reach this level within 5 seconds of engine start, fuel will be cut. Set to 0 to disable and always allow starting." + timingMode = "Dynamic uses the timing map to decide the ignition timing\nStatic timing fixes the timing to the value set below (only use for checking static timing with a timing light)." + fixedModeTiming = "This value is the ignition timing used when in 'fixed timing' mode, i.e. constant timing\nThis mode is useful when adjusting distributor location." + globalTriggerAngleOffset = "Angle between Top Dead Center (TDC) and the first trigger event.\nPositive value in case of synchronization point before TDC and negative in case of synchronization point after TDC\n.Knowing this angle allows us to control timing and other angles in reference to TDC.\nHOWTO:\n1: Switch to fixed timing mode on 'ignition setting' dialog\n2: use an actual timing light to calibrate\n3: add/subtract until timing light confirms desired fixed timing value!'" + analogInputDividerCoefficient = "Ratio/coefficient of input voltage dividers on your PCB. For example, use '2' if your board divides 5v into 2.5v. Use '1.66' if your board divides 5v into 3v." + vbattDividerCoeff = "This is the ratio of the resistors for the battery voltage, measure the voltage at the battery and then adjust this number until the gauge matches the reading." + fanOnTemperature = "Cooling fan turn-on temperature threshold, in Celsius" + fanOffTemperature = "Cooling fan turn-off temperature threshold, in Celsius" + driveWheelRevPerKm = "Number of revolutions per kilometer for the wheels your vehicle speed sensor is connected to. Use an online calculator to determine this based on your tire size." + canSleepPeriodMs = "CANbus thread period in ms" + tps1_1AdcChannel = "First throttle body, first sensor. See also pedalPositionAdcChannel" + vbattAdcChannel = "This is the processor input pin that the battery voltage circuit is connected to, if you are unsure of what pin to use, check the schematic that corresponds to your PCB." + fuelLevelSensor = "This is the processor pin that your fuel level sensor in connected to. This is a non standard input so will need to be user defined." + tps2_1AdcChannel = "Second throttle body position sensor, single channel so far" + idle_derivativeFilterLoss = "0.1 is a good default value" + trailingSparkAngle = "just a temporary solution" + trigger_type = "https://github.com/rusefi/rusefi/wiki/All-Supported-Triggers" + airByRpmTaper = "Extra air taper amount" + boostControlSafeDutyCycle = "Duty cycle to use in case of a sensor failure. This duty cycle should produce the minimum possible amount of boost. This duty is also used in case any of the minimum RPM/TPS/MAP conditions are not met." + mapCamDetectionAnglePosition = "Magic engine phase: we compare instant MAP at X to instant MAP at x+360 angle in one complete cycle" + camInputs1 = "Camshaft input could be used either just for engine phase detection if your trigger shape does not include cam sensor as 'primary' channel, or it could be used for Variable Valve timing on one of the camshafts. 1" + camInputs2 = "Camshaft input could be used either just for engine phase detection if your trigger shape does not include cam sensor as 'primary' channel, or it could be used for Variable Valve timing on one of the camshafts. 2" + camInputs3 = "Camshaft input could be used either just for engine phase detection if your trigger shape does not include cam sensor as 'primary' channel, or it could be used for Variable Valve timing on one of the camshafts. 3" + camInputs4 = "Camshaft input could be used either just for engine phase detection if your trigger shape does not include cam sensor as 'primary' channel, or it could be used for Variable Valve timing on one of the camshafts. 4" + throttlePedalPositionAdcChannel = "Electronic throttle pedal position first channel\nSee throttlePedalPositionSecondAdcChannel for second channel\nSee also tps1_1AdcChannel\nSee throttlePedalUpVoltage and throttlePedalWOTVoltage" + etbSplit = "TPS/PPS error threshold" + throttlePedalUpPin = "Throttle Pedal not pressed switch - used on some older vehicles like early Mazda Miata" + baroSensor_lowValue = "kPa value at low volts" + baroSensor_highValue = "kPa value at high volts" + knockRetardAggression = "Ignition timing to remove when a knock event occurs. Advice: 5% (mild), 10% (turbo/high comp.), 15% (high knock, e.g. GDI), 20% (spicy lump)," + knockRetardReapplyRate = "After a knock event, reapply timing at this rate." + engineSyncCam = "Select which cam is used for engine sync. Other cams will be used only for VVT measurement, but not engine sync." + vssGearRatio = "Number of turns of your vehicle speed sensor per turn of the wheels. For example if your sensor is on the transmission output, enter your axle/differential ratio. If you are using a hub-mounted sensor, enter a value of 1.0." + vssFilterReciprocal = "Set this so your vehicle speed signal is responsive, but not noisy. Larger value give smoother but slower response." + vssToothCount = "Number of pulses output per revolution of the shaft where your VSS is mounted. For example, GM applications of the T56 output 17 pulses per revolution of the transmission output shaft." + idleVeOverrideMode = "Override the Y axis (load) value used for only the Idle VE table.\nAdvanced users only: If you aren't sure you need this, you probably don't need this." + injectionPins1 = "injectionPins 1" + injectionPins2 = "injectionPins 2" + injectionPins3 = "injectionPins 3" + injectionPins4 = "injectionPins 4" + injectionPins5 = "injectionPins 5" + injectionPins6 = "injectionPins 6" + injectionPins7 = "injectionPins 7" + injectionPins8 = "injectionPins 8" + injectionPins9 = "injectionPins 9" + injectionPins10 = "injectionPins 10" + injectionPins11 = "injectionPins 11" + injectionPins12 = "injectionPins 12" + ignitionPins1 = "ignitionPins 1" + ignitionPins2 = "ignitionPins 2" + ignitionPins3 = "ignitionPins 3" + ignitionPins4 = "ignitionPins 4" + ignitionPins5 = "ignitionPins 5" + ignitionPins6 = "ignitionPins 6" + ignitionPins7 = "ignitionPins 7" + ignitionPins8 = "ignitionPins 8" + ignitionPins9 = "ignitionPins 9" + ignitionPins10 = "ignitionPins 10" + ignitionPins11 = "ignitionPins 11" + ignitionPins12 = "ignitionPins 12" + gapVvtTrackingLengthOverride = "How many consecutive VVT gap rations have to match expected ranges for sync to happen" + malfunctionIndicatorPin = "Check engine light, also malfunction indicator light. Always blinks once on boot." + clutchDownPin = "Some cars have a switch to indicate that clutch pedal is all the way down" + digitalPotentiometerChipSelect1 = "digitalPotentiometerChipSelect 1" + digitalPotentiometerChipSelect2 = "digitalPotentiometerChipSelect 2" + digitalPotentiometerChipSelect3 = "digitalPotentiometerChipSelect 3" + digitalPotentiometerChipSelect4 = "digitalPotentiometerChipSelect 4" + digitalPotentiometerSpiDevice = "Digital Potentiometer is used by stock ECU stimulation code" + auxFastSensor1_adcChannel = "Useful in Research&Development phase" + tps1_2AdcChannel = "First throttle body, second sensor." + tps2_2AdcChannel = "Second throttle body, second sensor." + throttlePedalPositionSecondAdcChannel = "Electronic throttle pedal position input\nSecond channel\nSee also tps1_1AdcChannel\nSee throttlePedalSecondaryUpVoltage and throttlePedalSecondaryWOTVoltage" + afr_type = "AFR, WBO, EGO - whatever you like to call it" + mc33810_cs1 = "mc33810_cs 1" + idle_antiwindupFreq = "0.1 is a good default value" + triggerInputPins1 = "triggerInputPins 1" + triggerInputPins2 = "triggerInputPins 2" + mc33_t_min_boost = "Minimum allowed time for the boost phase. If the boost target current is reached before this time elapses, it is assumed that the injector has failed short circuit." + finalGearRatio = "Ratio between the wheels and your transmission output." + triggerSimulatorPins1 = "Each rusEFI piece can provide synthetic trigger signal for external ECU. Sometimes these wires are routed back into trigger inputs of the same rusEFI board.\nSee also directSelfStimulation which is different. 1" + triggerSimulatorPins2 = "Each rusEFI piece can provide synthetic trigger signal for external ECU. Sometimes these wires are routed back into trigger inputs of the same rusEFI board.\nSee also directSelfStimulation which is different. 2" + triggerSimulatorPinModes1 = "triggerSimulatorPinModes 1" + triggerSimulatorPinModes2 = "triggerSimulatorPinModes 2" + o2heaterPin = "On-off O2 sensor heater control. 'ON' if engine is running, 'OFF' if stopped or cranking." + isSdCardEnabled = "enable sd/disable sd" + rusefiVerbose29b = "Use 11 bit (standard) or 29 bit (extended) IDs for rusEFI verbose CAN format." + useStepperIdle = "This setting should only be used if you have a stepper motor idle valve and a stepper motor driver installed." + enableVerboseCanTx = "CAN broadcast using custom rusEFI protocol\nenable can_broadcast/disable can_broadcast" + measureMapOnlyInOneCylinder = "Useful for individual intakes" + isFasterEngineSpinUpEnabled = "If enabled, try to fire the engine before a full engine cycle has been completed using RPM estimated from the last 90 degrees of engine rotation. As soon as the trigger syncs plus 90 degrees rotation, fuel and ignition events will occur. If disabled, worst case may require up to 4 full crank rotations before any events are scheduled." + coastingFuelCutEnabled = "This setting disables fuel injection while the engine is in overrun, this is useful as a fuel saving measure and to prevent back firing." + useIacTableForCoasting = "Override the IAC position during overrun conditions to help reduce engine breaking, this can be helpful for large engines in light weight cars or engines that have trouble returning to idle." + disableEtbWhenEngineStopped = "Allows disabling the ETB when the engine is stopped. You may not like the power draw or PWM noise from the motor, so this lets you turn it off until it's necessary." + pauseEtbControl = "Disable the electronic throttle motor and DC idle motor for testing.\nThis mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle." + enableAemXSeries = "AEM X-Series or rusEFI Wideband" + logicAnalyzerPins1 = "logicAnalyzerPins 1" + logicAnalyzerPins2 = "logicAnalyzerPins 2" + logicAnalyzerPins3 = "logicAnalyzerPins 3" + logicAnalyzerPins4 = "logicAnalyzerPins 4" + mc33_hvolt = "Boost Voltage" + minimumBoostClosedLoopMap = "Minimum MAP before closed loop boost is enabled. Use to prevent misbehavior upon entering boost." + idlePidRpmUpperLimit = "How far above idle speed do we consider idling, i.e. coasting detection threshold.\nFor example, if target = 800, this param = 200, then anything below 1000 RPM is considered idle." + applyNonlinearBelowPulse = "Apply nonlinearity correction below a pulse of this duration. Pulses longer than this duration will receive no adjustment." + clutchUpPin = "Some vehicles have a switch to indicate that clutch pedal is all the way up" + max31855_cs1 = "max31855_cs 1" + max31855_cs2 = "max31855_cs 2" + max31855_cs3 = "max31855_cs 3" + max31855_cs4 = "max31855_cs 4" + max31855_cs5 = "max31855_cs 5" + max31855_cs6 = "max31855_cs 6" + max31855_cs7 = "max31855_cs 7" + max31855_cs8 = "max31855_cs 8" + flexSensorPin = "Continental/GM flex fuel sensor, 50-150hz type" + torqueReductionArmingRpm = "Since torque reduction pin is usually shared with launch control, most people have an RPM where behavior under that is Launch Control, over that is Flat Shift/Torque Reduction" + stoichRatioSecondary = "Stoichiometric ratio for your secondary fuel. This value is used when the Flex Fuel sensor indicates E100, typically 9.0" + etbMaximumPosition = "Maximum allowed ETB position. Some throttles go past fully open, so this allows you to limit it to fully open." + sdCardLogFrequency = "Rate the ECU will log to the SD card, in hz (log lines per second)." + starterRelayDisablePinMode = "On some vehicles we can disable starter once engine is already running" + secondSolenoidPin = "Some Subaru and some Mazda use double-solenoid idle air valve" + startStopButtonPin = "See also starterControlPin" + mapMinBufferLength = "This many MAP samples are used to estimate the current MAP. This many samples are considered, and the minimum taken. Recommended value is 1 for single-throttle engines, and your number of cylinders for individual throttle bodies." + idlePidDeactivationTpsThreshold = "Below this throttle position, the engine is considered idling. If you have an electronic throttle, this checks accelerator pedal position instead of throttle position, and should be set to 1-2%." + startCrankingDuration = "Maximum time to crank starter when start/stop button is pressed" + triggerErrorPin = "This pin is used for debugging - snap a logic analyzer on it and see if it's ever high" + lambdaProtectionTimeout = "Only respond once lambda is out of range for this period of time. Use to avoid transients triggering lambda protection when not needed" + scriptSetting1 = "scriptSetting 1" + scriptSetting2 = "scriptSetting 2" + scriptSetting3 = "scriptSetting 3" + scriptSetting4 = "scriptSetting 4" + scriptSetting5 = "scriptSetting 5" + scriptSetting6 = "scriptSetting 6" + scriptSetting7 = "scriptSetting 7" + scriptSetting8 = "scriptSetting 8" + cdmInputPin = "Saab Combustion Detection Module knock signal input pin\nalso known as Saab Ion Sensing Module" + sensorChartMode = "rusEFI console Sensor Sniffer mode" + useHbridgesToDriveIdleStepper = "If enabled we use two H-bridges to drive stepper idle air valve" + consumeObdSensors = "This property is useful if using rusEFI as TCM or BCM only" + enableCanVss = "Read VSS from OEM CAN bus according to selected CAN vehicle configuration." + stftIgnoreErrorMagnitude = "If enabled, adjust at a constant rate instead of a rate proportional to the current lambda error. This mode may be easier to tune, and more tolerant of sensor noise." + verboseVVTDecoding = "Verbose info in console below engineSnifferRpmThreshold\nenable vvt_details" + alphaNUseIat = "In Alpha-N mode, compensate for air temperature." + useRawOutputToDriveIdleStepper = "If enabled we use four Push-Pull outputs to directly drive stepper idle air valve coils" + verboseCan2 = "Print incoming and outgoing second bus CAN messages in rusEFI console" + etbIo1_controlPin = "Acts as EN pin in two-wire mode" + etbIo2_controlPin = "Acts as EN pin in two-wire mode" + boostControlPin = "Wastegate control Solenoid" + boostPid_offset = "Linear addition to PID logic" + boostPid_periodMs = "PID dTime" + boostPid_minValue = "Output Min Duty Cycle" + boostPid_maxValue = "Output Max Duty Cycle" + tpsAccelLookback = "How long to look back for TPS-based acceleration enrichment. Increasing this time will trigger enrichment for longer when a throttle position change occurs." + noFuelTrimAfterDfcoTime = "Pause closed loop fueling after deceleration fuel cut occurs. Set this to a little longer than however long is required for normal fueling behavior to resume after fuel cut." + launchSpeedThreshold = "Launch disabled above this speed if setting is above zero" + launchRpmWindow = "Starting Launch RPM window to activate (subtracts from Launch RPM)" + stft_maxIdleRegionRpm = "Below this RPM, the idle region is active, idle+300 would be a good value" + stft_maxOverrunLoad = "Below this engine load, the overrun region is active" + stft_minPowerLoad = "Above this engine load, the power region is active" + stft_deadband = "When close to correct AFR, pause correction. This can improve stability by not changing the adjustment if the error is extremely small, but is not required." + stft_minClt = "Below this temperature, correction is disabled." + stft_minAfr = "Below this AFR, correction is paused" + stft_maxAfr = "Above this AFR, correction is paused" + stft_startupDelay = "Delay after starting the engine before beginning closed loop correction." + stft_cellCfgs1_maxAdd = "Maximum % that the short term fuel trim can add" + stft_cellCfgs1_maxRemove = "Maximum % that the short term fuel trim can remove" + stft_cellCfgs1_timeConstant = "Time constant for correction while in this cell: this sets responsiveness of the closed loop correction. A value of 5.0 means it will try to make most of the correction within 5 seconds, and a value of 1.0 will try to correct within 1 second." + stft_cellCfgs2_maxAdd = "Maximum % that the short term fuel trim can add" + stft_cellCfgs2_maxRemove = "Maximum % that the short term fuel trim can remove" + stft_cellCfgs2_timeConstant = "Time constant for correction while in this cell: this sets responsiveness of the closed loop correction. A value of 5.0 means it will try to make most of the correction within 5 seconds, and a value of 1.0 will try to correct within 1 second." + stft_cellCfgs3_maxAdd = "Maximum % that the short term fuel trim can add" + stft_cellCfgs3_maxRemove = "Maximum % that the short term fuel trim can remove" + stft_cellCfgs3_timeConstant = "Time constant for correction while in this cell: this sets responsiveness of the closed loop correction. A value of 5.0 means it will try to make most of the correction within 5 seconds, and a value of 1.0 will try to correct within 1 second." + stft_cellCfgs4_maxAdd = "Maximum % that the short term fuel trim can add" + stft_cellCfgs4_maxRemove = "Maximum % that the short term fuel trim can remove" + stft_cellCfgs4_timeConstant = "Time constant for correction while in this cell: this sets responsiveness of the closed loop correction. A value of 5.0 means it will try to make most of the correction within 5 seconds, and a value of 1.0 will try to correct within 1 second." + stepperDcIo1_controlPin = "Acts as EN pin in two-wire mode" + stepperDcIo2_controlPin = "Acts as EN pin in two-wire mode" + engineMake = "For example, BMW, GM or Chevrolet\nREQUIRED for rusEFI Online" + engineCode = "For example, LS1 or NB2\nREQUIRED for rusEFI Online" + vehicleName = "For example, Hunchback or Orange Miata\nVehicle name has to be unique between your vehicles.\nREQUIRED for rusEFI Online" + tcu_solenoid1 = "tcu_solenoid 1" + tcu_solenoid2 = "tcu_solenoid 2" + tcu_solenoid3 = "tcu_solenoid 3" + tcu_solenoid4 = "tcu_solenoid 4" + tcu_solenoid5 = "tcu_solenoid 5" + tcu_solenoid6 = "tcu_solenoid 6" + etbFunctions1 = "etbFunctions 1" + etbFunctions2 = "etbFunctions 2" + luaOutputPins1 = "luaOutputPins 1" + luaOutputPins2 = "luaOutputPins 2" + luaOutputPins3 = "luaOutputPins 3" + luaOutputPins4 = "luaOutputPins 4" + luaOutputPins5 = "luaOutputPins 5" + luaOutputPins6 = "luaOutputPins 6" + luaOutputPins7 = "luaOutputPins 7" + luaOutputPins8 = "luaOutputPins 8" + vvtOffsets1 = "Angle between cam sensor and VVT zero position 1" + vvtOffsets2 = "Angle between cam sensor and VVT zero position 2" + vvtOffsets3 = "Angle between cam sensor and VVT zero position 3" + vvtOffsets4 = "Angle between cam sensor and VVT zero position 4" + gpPwmNote1 = "gpPwmNote 1" + gpPwmNote2 = "gpPwmNote 2" + gpPwmNote3 = "gpPwmNote 3" + gpPwmNote4 = "gpPwmNote 4" + widebandOnSecondBus = "Select which bus the wideband controller is attached to." + fuelClosedLoopCorrectionEnabled = "Enables lambda sensor closed loop feedback for fuelling." + oddFireEngine = "On even fire engines with even number of cylinders we go wasted spark during cranking. Use this setting to disable wasted spark cranking on odd fire engines." + alwaysWriteSdCard = "Write SD card log even when powered by USB" + knockDetectionUseDoubleFrequency = "Second harmonic (aka double) is usually quieter background noise" + silentTriggerError = "Sometimes we have a performance issue while printing error" + canReadEnabled = "enable can_read/disable can_read" + canWriteEnabled = "enable can_write/disable can_write. See also can1ListenMode" + tachPulseDurationAsDutyCycle = "Treat milliseconds value as duty cycle value, i.e. 0.5ms would become 50%" + isAlternatorControlEnabled = "This enables smart alternator control and activates the extra alternator settings." + invertPrimaryTriggerSignal = "https://wiki.rusefi.com/Trigger-Configuration-Guide\nThis setting flips the signal from the primary engine speed sensor." + invertSecondaryTriggerSignal = "https://wiki.rusefi.com/Trigger-Configuration-Guide\nThis setting flips the signal from the secondary engine speed sensor." + cutSparkOnHardLimit = "Be careful enabling this: some engines are known to self-disassemble their valvetrain with a spark cut. Fuel cut is much safer." + launchSparkCutEnable = "This is the Cut Mode normally used" + verboseIsoTp = "Are you a developer troubleshooting TS over CAN ISO/TP?" + skippedWheelOnCam = "Where is your primary skipped wheel located?" + acSwitch = "A/C button input" + etbNeutralPosition = "Expected neutral position" + idleMode = "See also idleRpmPid" + isCylinderCleanupEnabled = "When enabled if TPS is held above 95% no fuel is injected while cranking to clear excess fuel from the cylinders." + complexWallModel = "Should we use tables to vary tau/beta based on CLT/MAP, or just with fixed values?" + alwaysInstantRpm = "RPM is measured based on last 720 degrees while instant RPM is measured based on the last 90 degrees of crank revolution" + overrideCrankingIacSetting = "If enabled, use separate temperature multiplier table for cranking idle position.\nIf disabled, use normal running multiplier table applied to the cranking base position." + useSeparateAdvanceForIdle = "This activates a separate ignition timing table for idle conditions, this can help idle stability by using ignition retard and advance either side of the desired idle speed. Extra advance at low idle speeds will prevent stalling and extra retard at high idle speeds can help reduce engine power and slow the idle speed." + useSeparateVeForIdle = "This activates a separate fuel table for Idle, this allows fine tuning of the idle fuelling." + verboseTriggerSynchDetails = "Verbose info in console below engineSnifferRpmThreshold\nenable trigger_details" + twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark)." + useFixedBaroCorrFromMap = "Read MAP sensor on ECU start-up to use as baro value." + useSeparateAdvanceForCranking = "In Constant mode, timing is automatically tapered to running as RPM increases.\nIn Table mode, the "Cranking ignition advance" table is used directly." + useAdvanceCorrectionsForCranking = "This enables the various ignition corrections during cranking (IAT, CLT and PID idle).\nYou probably don't need this." + flexCranking = "Enable a second cranking table to use for E100 flex fuel, interpolating between the two based on flex fuel sensor." + useIacPidMultTable = "This flag allows to use a special 'PID Multiplier' table (0.0-1.0) to compensate for nonlinear nature of IAC-RPM controller" + launchSmoothRetard = "Interpolates the Ignition Retard from 0 to 100% within the RPM Range" + isPhaseSyncRequiredForIgnition = "Some engines are OK running semi-random sequential while other engine require phase synchronization" + useCltBasedRpmLimit = "If enabled, use a curve for RPM limit (based on coolant temperature) instead of a constant value." + forceO2Heating = "If enabled, don't wait for engine start to heat O2 sensors.\nWARNING: this will reduce the life of your sensor, as condensation in the exhaust from a cold start can crack the sensing element." + invertVvtControlIntake = "If increased VVT duty cycle increases the indicated VVT angle, set this to 'advance'. If it decreases, set this to 'retard'. Most intake cams use 'advance', and most exhaust cams use 'retard'." + invertVvtControlExhaust = "If increased VVT duty cycle increases the indicated VVT angle, set this to 'advance'. If it decreases, set this to 'retard'. Most intake cams use 'advance', and most exhaust cams use 'retard'." + sdTriggerLog = "'Trigger' mode will write a high speed log of trigger events (warning: uses lots of space!). 'Normal' mode will write a standard MLG of sensors, engine function, etc. similar to the one captured in TunerStudio." + camInputsDebug1 = "camInputsDebug 1" + camInputsDebug2 = "camInputsDebug 2" + camInputsDebug3 = "camInputsDebug 3" + camInputsDebug4 = "camInputsDebug 4" + acIdleRpmTarget = "Idle target speed when A/C is enabled. Some cars need the extra speed to keep the AC efficient while idling." + warningPeriod = "set warningPeriod X" + torqueReductionArmingApp = "Pedal position to realize that we need to reduce torque when the trigger pin is uuuh triggered" + tachPulseDuractionMs = "Duration in ms or duty cycle depending on selected mode" + wwaeTau = "Length of time the deposited wall fuel takes to dissipate after the start of acceleration." + alternatorControl_offset = "Linear addition to PID logic" + alternatorControl_periodMs = "PID dTime" + alternatorControl_minValue = "Output Min Duty Cycle" + alternatorControl_maxValue = "Output Max Duty Cycle" + etb_offset = "Linear addition to PID logic" + etb_periodMs = "PID dTime" + etb_minValue = "Output Min Duty Cycle" + etb_maxValue = "Output Max Duty Cycle" + triggerInputDebugPins1 = "triggerInputDebugPins 1" + triggerInputDebugPins2 = "triggerInputDebugPins 2" + airTaperRpmRange = "RPM range above upper limit for extra air taper" + tps2Min = "Closed throttle#2. todo: extract these two fields into a structure\nSee also tps2_1AdcChannel" + tps2Max = "Full throttle#2. tpsMax value as 10 bit ADC value. Not Voltage!\nSee also tps1_1AdcChannel" + starterControlPin = "See also startStopButtonPin" + mapErrorDetectionTooLow = "kPa value which is too low to be true" + mapErrorDetectionTooHigh = "kPa value which is too high to be true" + multisparkSparkDuration = "How long to wait for the spark to fire before recharging the coil for another spark." + multisparkDwell = "This sets the dwell time for subsequent sparks. The main spark's dwell is set by the dwell table." + idleRpmPid_offset = "Linear addition to PID logic" + idleRpmPid_periodMs = "PID dTime" + idleRpmPid_minValue = "Output Min Duty Cycle" + idleRpmPid_maxValue = "Output Max Duty Cycle" + wwaeBeta = "0 = No fuel settling on port walls 1 = All the fuel settling on port walls setting this to 0 disables the wall wetting enrichment." + binarySerialTxPin = "See also EFI_CONSOLE_RX_BRAIN_PIN" + auxValves1 = "auxValves 1" + auxValves2 = "auxValves 2" + throttlePedalWOTVoltage = "Pedal in the floor" + startUpFuelPumpDuration = "on IGN voltage detection turn fuel pump on to build fuel pressure" + idlePidRpmDeadZone = "If the RPM closer to target than this value, disable closed loop idle correction to prevent oscillation" + torqueReductionTime = "For how long after the pin has been triggered will the cut/reduction stay active. After that, even if the pin is still triggered, torque is re-introduced" + mc33810DisableRecoveryMode = "See Over/Undervoltage Shutdown/Retry bit in documentation" + enableExtendedCanBroadcast = "Send out board statistics" + luaCanRxWorkaround = "global_can_data performance hack" + useAuxSpeedForSlipRatio = "Use Aux Speed 1 as one of speeds for wheel slip ratio?" + useVssAsSecondWheelSpeed = "VSS and Aux Speed 1 or Aux Speed 1 with Aux Speed 2?" + enableAemXSeriesEgt = "AEM X-Series EGT gauge kit or rusEFI EGT sensor from Wideband controller" + afterCrankingIACtaperDuration = "This is the duration in cycles that the IAC will take to reach its normal idle position, it can be used to hold the idle higher for a few seconds after cranking to improve startup.\Should be 100 once tune is better" + iacByTpsTaper = "IAC Value added when coasting and transitioning into idle." + coastingFuelCutVssLow = "Below this speed, disable DFCO. Use this to prevent jerkiness from fuel enable/disable in low gears." + coastingFuelCutVssHigh = "Above this speed, allow DFCO. Use this to prevent jerkiness from fuel enable/disable in low gears." + tpsAccelEnrichmentThreshold = "Maximum change delta of TPS percentage over the 'length'. Actual TPS change has to be above this value in order for TPS/TPS acceleration to kick in." + auxSpeedSensorInputPin1 = "auxSpeedSensorInputPin 1" + auxSpeedSensorInputPin2 = "auxSpeedSensorInputPin 2" + injectionTimingMode = "Sets what part of injection's is controlled by the injection phase table." + debugMode = "See http://rusefi.com/s/debugmode" + fan1ExtraIdle = "Additional idle % when fan #1 is active" + uartConsoleSerialSpeed = "Band rate for primary TTL" + tpsDecelEnleanmentThreshold = "For decel we simply multiply delta of TPS and tFor decel we do not use table?!" + tpsDecelEnleanmentMultiplier = "Magic multiplier, we multiply delta of TPS and get fuel squirt duration" + torqueReductionIgnitionRetard = "How many degrees of timing advance will be reduced during the Torque Reduction Time" + throttlePedalSecondaryWOTVoltage = "Pedal in the floor" + veOverrideMode = "Override the Y axis (load) value used for the VE table.\nAdvanced users only: If you aren't sure you need this, you probably don't need this." + afrOverrideMode = "Override the Y axis (load) value used for the AFR table.\nAdvanced users only: If you aren't sure you need this, you probably don't need this." + mc33_hpfp_i_hold_off = "How long to deactivate power when hold current is reached before applying power again" + mc33_hpfp_max_hold = "Maximum amount of time the solenoid can be active before assuming a programming error" + stepperDcInvertedPins = "Enable if DC-motor driver (H-bridge) inverts the signals (eg. RZ7899 on Hellen boards)" + canOpenBLT = "Allow OpenBLT on Primary CAN" + can2OpenBLT = "Allow OpenBLT on Secondary CAN" + injectorFlowAsMassFlow = "Select whether to configure injector flow in volumetric flow (default, cc/min) or mass flow (g/s)." + can1ListenMode = "ListenMode is about acknowledging CAN traffic on the protocol level. Different from canWriteEnabled" + benchTestOnTime = "Duration of each test pulse" + ignOverrideMode = "Override the Y axis (load) value used for the ignition table.\nAdvanced users only: If you aren't sure you need this, you probably don't need this." + injectorPressureType = "Select which fuel pressure sensor measures the pressure of the fuel at your injectors." + boostCutPressure = "MAP value above which fuel is cut in case of overboost.\nSet to 0 to disable overboost cut." + fixedTiming = "Fixed timing, useful for TDC testing" + mapLowValueVoltage = "MAP voltage for low point" + mapHighValueVoltage = "MAP voltage for low point" + egoValueShift = "EGO value correction" + vvtPins1 = "VVT output solenoid pin for this cam 1" + vvtPins2 = "VVT output solenoid pin for this cam 2" + vvtPins3 = "VVT output solenoid pin for this cam 3" + vvtPins4 = "VVT output solenoid pin for this cam 4" + crankingIACposition = "This is the IAC position during cranking, some engines start better if given more air during cranking to improve cylinder filling." + minimumIgnitionTiming = "Minimim timing advance allowed. No spark on any cylinder will ever fire after this angle BTDC. For example, setting -10 here means no spark ever fires later than 10 deg ATDC. Note that this only concerns the primary spark: any trailing sparks or multispark may violate this constraint." + maximumIgnitionTiming = "Maximum timing advance allowed. No spark on any cylinder will ever fire before this angle BTDC. For example, setting 45 here means no spark ever fires earlier than 45 deg BTDC" + vvtMode1 = "set vvt_mode X 1" + vvtMode2 = "set vvt_mode X 2" + fan2ExtraIdle = "Additional idle % when fan #2 is active" + primingDelay = "Delay to allow fuel pressure to build before firing the priming pulse." + auxAnalogInputs1 = "auxAnalogInputs 1" + auxAnalogInputs2 = "auxAnalogInputs 2" + auxAnalogInputs3 = "auxAnalogInputs 3" + auxAnalogInputs4 = "auxAnalogInputs 4" + auxAnalogInputs5 = "auxAnalogInputs 5" + auxAnalogInputs6 = "auxAnalogInputs 6" + auxAnalogInputs7 = "auxAnalogInputs 7" + auxAnalogInputs8 = "auxAnalogInputs 8" + trailingCoilPins1 = "trailingCoilPins 1" + trailingCoilPins2 = "trailingCoilPins 2" + trailingCoilPins3 = "trailingCoilPins 3" + trailingCoilPins4 = "trailingCoilPins 4" + trailingCoilPins5 = "trailingCoilPins 5" + trailingCoilPins6 = "trailingCoilPins 6" + trailingCoilPins7 = "trailingCoilPins 7" + trailingCoilPins8 = "trailingCoilPins 8" + trailingCoilPins9 = "trailingCoilPins 9" + trailingCoilPins10 = "trailingCoilPins 10" + trailingCoilPins11 = "trailingCoilPins 11" + trailingCoilPins12 = "trailingCoilPins 12" + injectorCompensationMode = "None = I have a MAP-referenced fuel pressure regulator\nFixed rail pressure = I have an atmosphere-referenced fuel pressure regulator (returnless, typically)\nSensed rail pressure = I have a fuel pressure sensor" + fuelReferencePressure = "This is the pressure at which your injector flow is known.\nFor example if your injectors flow 400cc/min at 3.5 bar, enter 350kpa here." + auxTempSensor1_tempC_1 = "these values are in Celcius" + auxTempSensor1_bias_resistor = "Pull-up resistor value on your board" + auxTempSensor2_tempC_1 = "these values are in Celcius" + auxTempSensor2_bias_resistor = "Pull-up resistor value on your board" + etbWastegatePid_offset = "Linear addition to PID logic" + etbWastegatePid_periodMs = "PID dTime" + etbWastegatePid_minValue = "Output Min Duty Cycle" + etbWastegatePid_maxValue = "Output Max Duty Cycle" + stepperNumMicroSteps = "For micro-stepping, make sure that PWM frequency (etbFreq) is high enough" + stepperMinDutyCycle = "Use to limit the current when the stepper motor is idle, not moving (100% = no limit)" + stepperMaxDutyCycle = "Use to limit the max.current through the stepper motor (100% = no limit)" + timing_offset_cylinder1 = "per-cylinder ignition and fueling timing correction for uneven engines 1" + timing_offset_cylinder2 = "per-cylinder ignition and fueling timing correction for uneven engines 2" + timing_offset_cylinder3 = "per-cylinder ignition and fueling timing correction for uneven engines 3" + timing_offset_cylinder4 = "per-cylinder ignition and fueling timing correction for uneven engines 4" + timing_offset_cylinder5 = "per-cylinder ignition and fueling timing correction for uneven engines 5" + timing_offset_cylinder6 = "per-cylinder ignition and fueling timing correction for uneven engines 6" + timing_offset_cylinder7 = "per-cylinder ignition and fueling timing correction for uneven engines 7" + timing_offset_cylinder8 = "per-cylinder ignition and fueling timing correction for uneven engines 8" + timing_offset_cylinder9 = "per-cylinder ignition and fueling timing correction for uneven engines 9" + timing_offset_cylinder10 = "per-cylinder ignition and fueling timing correction for uneven engines 10" + timing_offset_cylinder11 = "per-cylinder ignition and fueling timing correction for uneven engines 11" + timing_offset_cylinder12 = "per-cylinder ignition and fueling timing correction for uneven engines 12" + spi1MosiMode = "Modes count be used for 3v<>5v integration using pull-ups/pull-downs etc." + mc33816_rstb = "ResetB" + brakePedalPin = "Brake pedal switch" + auxPid1_offset = "Linear addition to PID logic" + auxPid1_periodMs = "PID dTime" + auxPid1_minValue = "Output Min Duty Cycle" + auxPid1_maxValue = "Output Max Duty Cycle" + auxPid2_offset = "Linear addition to PID logic" + auxPid2_periodMs = "PID dTime" + auxPid2_minValue = "Output Min Duty Cycle" + auxPid2_maxValue = "Output Max Duty Cycle" + injectorCorrectionPolynomial1 = "injectorCorrectionPolynomial 1" + injectorCorrectionPolynomial2 = "injectorCorrectionPolynomial 2" + injectorCorrectionPolynomial3 = "injectorCorrectionPolynomial 3" + injectorCorrectionPolynomial4 = "injectorCorrectionPolynomial 4" + injectorCorrectionPolynomial5 = "injectorCorrectionPolynomial 5" + injectorCorrectionPolynomial6 = "injectorCorrectionPolynomial 6" + injectorCorrectionPolynomial7 = "injectorCorrectionPolynomial 7" + injectorCorrectionPolynomial8 = "injectorCorrectionPolynomial 8" + fan2OnTemperature = "Cooling fan turn-on temperature threshold, in Celsius" + fan2OffTemperature = "Cooling fan turn-off temperature threshold, in Celsius" + sentInputPins1 = "sentInputPins 1" + coastingFuelCutRpmHigh = "This sets the RPM above which fuel cut is active." + coastingFuelCutRpmLow = "This sets the RPM below which fuel cut is deactivated, this prevents jerking or issues transitioning to idle" + coastingFuelCutTps = "Throttle position below which fuel cut is active. With an electronic throttle enabled, this checks against pedal position." + coastingFuelCutClt = "Fuel cutoff is disabled when the engine is cold." + pidExtraForLowRpm = "Increases PID reaction for RPM , 50, , true + + filter = VBatt, "VBatt", VBatt < , 12, , true + + filter = minTps, "Minimum TPS", TPSValue, < , 1, , true + filter = std_Custom + + + +; +; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml +; +[BurstMode] + getCommand = "A" + +[OutputChannels] + + ochGetCommand = "O%2o%2c" + +; see TS_OUTPUT_SIZE in console source code + ochBlockSize = 1824 + +; 11.2.3 Full Optimized – High Speed + scatteredOchGetCommand = 9 + scatteredOffsetArray = highSpeedOffsets +;#if CONN_SLOW +; scatteredGetEnabled = { 1 } +;#else + scatteredGetEnabled = { 0 } +;#endif + +; +; see TunerStudioOutputChannels struct +; + +sd_present = bits, U32, 0, [0:0] +sd_logging_internal = bits, U32, 0, [1:1] +triggerScopeReady = bits, U32, 0, [2:2] +antilagTriggered = bits, U32, 0, [3:3] +isFanOn = bits, U32, 0, [4:4] +isO2HeaterOn = bits, U32, 0, [5:5] +checkEngine = bits, U32, 0, [6:6] +needBurn = bits, U32, 0, [7:7] +sd_msd = bits, U32, 0, [8:8] +isFan2On = bits, U32, 0, [9:9] +toothLogReady = bits, U32, 0, [10:10] +isTpsError = bits, U32, 0, [11:11] +isCltError = bits, U32, 0, [12:12] +isMapError = bits, U32, 0, [13:13] +isIatError = bits, U32, 0, [14:14] +isTriggerError = bits, U32, 0, [15:15] +hasCriticalError = bits, U32, 0, [16:16] +isWarnNow = bits, U32, 0, [17:17] +isPedalError = bits, U32, 0, [18:18] +isKnockChipOk = bits, U32, 0, [19:19] +launchTriggered = bits, U32, 0, [20:20] +isTps2Error = bits, U32, 0, [21:21] +injectorFault = bits, U32, 0, [22:22] +ignitionFault = bits, U32, 0, [23:23] +isMainRelayOn = bits, U32, 0, [24:24] +isUsbConnected = bits, U32, 0, [25:25] +dfcoActive = bits, U32, 0, [26:26] +sd_active_wr = bits, U32, 0, [27:27] +sd_active_rd = bits, U32, 0, [28:28] +isMapValid = bits, U32, 0, [29:29] +RPMValue = scalar, U16, 4, "RPM", 1, 0 +rpmAcceleration = scalar, S16, 6, "RPM acceleration/Rate of Change/ROC", 1, 0 +speedToRpmRatio = scalar, U16, 8, "value", 0.01, 0 +unusedVehicleSpeedKph = scalar, U08, 10, "kph", 1, 0 +internalMcuTemperature = scalar, S08, 11, "deg C", 1, 0 +coolant = scalar, S16, 12, "deg C", 0.01, 0 +intake = scalar, S16, 14, "deg C", 0.01, 0 +auxTemp1 = scalar, S16, 16, "deg C", 0.01, 0 +auxTemp2 = scalar, S16, 18, "deg C", 0.01, 0 +TPSValue = scalar, S16, 20, "%", 0.01, 0 +throttlePedalPosition = scalar, S16, 22, "%", 0.01, 0 +tpsADC = scalar, U16, 24, "ADC", 1, 0 +rawMaf = scalar, U16, 26, "V", 0.001, 0 +mafMeasured = scalar, U16, 28, "kg/h", 0.1, 0 +MAPValue = scalar, U16, 30, "kPa", 0.03333333333333333, 0 +baroPressure = scalar, U16, 32, "kPa", 0.03333333333333333, 0 +lambdaValue = scalar, U16, 34, "", 1.0E-4, 0 +VBatt = scalar, U16, 36, "V", 0.001, 0 +oilPressure = scalar, U16, 38, "kPa", 0.03333333333333333, 0 +vvtPositionB1I = scalar, S16, 40, "deg", 0.02, 0 +actualLastInjection = scalar, U16, 42, "ms", 0.0033333333333333335, 0 +injectorDutyCycle = scalar, U08, 44, "%", 0.5, 0 +tempLogging1 = scalar, U08, 45, "", 1, 0 +injectionOffset = scalar, S16, 46, "deg", 1, 0 +engineMakeCodeNameCrc16 = scalar, U16, 48, "crc16", 1, 0 +wallFuelAmount = scalar, U16, 50, "mg", 0.01, 0 +wallFuelCorrectionValue = scalar, S16, 52, "mg", 0.01, 0 +revolutionCounterSinceStart = scalar, U16, 54, "", 1, 0 +canReadCounter = scalar, U16, 56, "", 1, 0 +tpsAccelFuel = scalar, S16, 58, "ms", 0.0033333333333333335, 0 +currentIgnitionMode = scalar, U08, 60, "", 1, 0 +currentInjectionMode = scalar, U08, 61, "", 1, 0 +coilDutyCycle = scalar, U16, 62, "%", 0.01, 0 +etbTarget = scalar, S16, 64, "%", 0.01, 0 +etb1DutyCycle = scalar, S16, 66, "%", 0.01, 0 +fuelTankLevel = scalar, S16, 68, "%", 0.01, 0 +totalFuelConsumption = scalar, U16, 70, "grams", 1, 0 +fuelFlowRate = scalar, U16, 72, "gram/s", 0.005, 0 +TPS2Value = scalar, S16, 74, "%", 0.01, 0 +tuneCrc16 = scalar, U16, 76, "crc16", 1, 0 +veValue = scalar, U16, 78, "ratio", 0.1, 0 +seconds = scalar, U32, 80, "sec", 1, 0 +engineMode = scalar, U32, 84, "em", 1, 0 +firmwareVersion = scalar, U32, 88, "version_f", 1, 0 +rawIdlePositionSensor = scalar, S16, 92, "V", 0.001, 0 +rawWastegatePosition = scalar, S16, 94, "V", 0.001, 0 +accelerationLat = scalar, S16, 96, "G", 0.001, 0 +accelerationLon = scalar, S16, 98, "G", 0.001, 0 +detectedGear = scalar, U08, 100, "", 1, 0 +maxTriggerReentrant = scalar, U08, 101, "", 1, 0 +rawLowFuelPressure = scalar, S16, 102, "V", 0.001, 0 +rawHighFuelPressure = scalar, S16, 104, "V", 0.001, 0 +lowFuelPressure = scalar, S16, 106, "kpa", 0.03333333333333333, 0 +tcuDesiredGear = scalar, S08, 108, "gear", 1, 0 +flexPercent = scalar, U08, 109, "%", 0.5, 0 +wastegatePositionSensor = scalar, S16, 110, "%", 0.01, 0 +highFuelPressure = scalar, S16, 112, "bar", 0.1, 0 +tempLogging3 = scalar, U08, 114, "", 1, 0 +tempLogging4 = scalar, U08, 115, "", 1, 0 +calibrationValue = scalar, F32, 116, "", 1, 0 +calibrationMode = scalar, U08, 120, "", 1, 0 +idleStepperTargetPosition = scalar, U08, 121, "", 1, 0 +tsConfigVersion = scalar, U32, 124, "", 1, 0 +totalTriggerErrorCounter = scalar, U32, 128, "counter", 1, 0 +orderingErrorCounter = scalar, U32, 132, "", 1, 0 +warningCounter = scalar, U16, 136, "count", 1, 0 +lastErrorCode = scalar, U16, 138, "error", 1, 0 +recentErrorCode1 = scalar, U16, 140, "error", 1, 0 +recentErrorCode2 = scalar, U16, 142, "error", 1, 0 +recentErrorCode3 = scalar, U16, 144, "error", 1, 0 +recentErrorCode4 = scalar, U16, 146, "error", 1, 0 +recentErrorCode5 = scalar, U16, 148, "error", 1, 0 +recentErrorCode6 = scalar, U16, 150, "error", 1, 0 +recentErrorCode7 = scalar, U16, 152, "error", 1, 0 +recentErrorCode8 = scalar, U16, 154, "error", 1, 0 +debugFloatField1 = scalar, F32, 156, "val", 1, 0 +debugFloatField2 = scalar, F32, 160, "val", 1, 0 +debugFloatField3 = scalar, F32, 164, "val", 1, 0 +debugFloatField4 = scalar, F32, 168, "val", 1, 0 +debugFloatField5 = scalar, F32, 172, "val", 1, 0 +debugFloatField6 = scalar, F32, 176, "val", 1, 0 +debugFloatField7 = scalar, F32, 180, "val", 1, 0 +debugIntField1 = scalar, U32, 184, "val", 1, 0 +debugIntField2 = scalar, U32, 188, "val", 1, 0 +debugIntField3 = scalar, U32, 192, "val", 1, 0 +debugIntField4 = scalar, S16, 196, "val", 1, 0 +debugIntField5 = scalar, S16, 198, "val", 1, 0 +egt1 = scalar, S16, 200, "deg C", 0.25, 0 +egt2 = scalar, S16, 202, "deg C", 0.25, 0 +egt3 = scalar, S16, 204, "deg C", 0.25, 0 +egt4 = scalar, S16, 206, "deg C", 0.25, 0 +egt5 = scalar, S16, 208, "deg C", 0.25, 0 +egt6 = scalar, S16, 210, "deg C", 0.25, 0 +egt7 = scalar, S16, 212, "deg C", 0.25, 0 +egt8 = scalar, S16, 214, "deg C", 0.25, 0 +rawTps1Primary = scalar, S16, 216, "V", 0.001, 0 +rawClt = scalar, S16, 218, "V", 0.001, 0 +rawIat = scalar, S16, 220, "V", 0.001, 0 +rawOilPressure = scalar, S16, 222, "V", 0.001, 0 +rawAcPressure = scalar, S16, 224, "V", 0.001, 0 +fuelClosedLoopBinIdx = scalar, U08, 226, "", 1, 0 +rawPpsPrimary = scalar, F32, 228, "V", 1, 0 +rawPpsSecondary = scalar, F32, 232, "V", 1, 0 +rawRawPpsPrimary = scalar, F32, 236, "V", 1, 0 +rawRawPpsSecondary = scalar, F32, 240, "V", 1, 0 +idlePositionSensor = scalar, S16, 244, "%", 0.01, 0 +AFRValue = scalar, U16, 246, "AFR", 0.001, 0 +VssAcceleration = scalar, U16, 248, "m/s2", 0.0033333333333333335, 0 +lambdaValue2 = scalar, U16, 250, "", 1.0E-4, 0 +AFRValue2 = scalar, U16, 252, "AFR", 0.001, 0 +vvtPositionB1E = scalar, S16, 254, "deg", 0.02, 0 +vvtPositionB2I = scalar, S16, 256, "deg", 0.02, 0 +vvtPositionB2E = scalar, S16, 258, "deg", 0.02, 0 +fuelPidCorrection1 = scalar, S16, 260, "%", 0.01, 0 +fuelPidCorrection2 = scalar, S16, 262, "%", 0.01, 0 +rawTps1Secondary = scalar, S16, 264, "V", 0.001, 0 +rawTps2Primary = scalar, S16, 266, "V", 0.001, 0 +rawTps2Secondary = scalar, S16, 268, "V", 0.001, 0 +accelerationVert = scalar, S16, 270, "G", 0.001, 0 +gyroYaw = scalar, S16, 272, "deg/sec", 0.001, 0 +vvtTargets1 = scalar, S08, 274, "deg", 1, 0 +vvtTargets2 = scalar, S08, 275, "deg", 1, 0 +vvtTargets3 = scalar, S08, 276, "deg", 1, 0 +vvtTargets4 = scalar, S08, 277, "deg", 1, 0 +turboSpeed = scalar, U16, 278, "hz", 1, 0 +ignitionAdvanceCyl1 = scalar, S16, 280, "deg", 0.02, 0 +ignitionAdvanceCyl2 = scalar, S16, 282, "deg", 0.02, 0 +ignitionAdvanceCyl3 = scalar, S16, 284, "deg", 0.02, 0 +ignitionAdvanceCyl4 = scalar, S16, 286, "deg", 0.02, 0 +ignitionAdvanceCyl5 = scalar, S16, 288, "deg", 0.02, 0 +ignitionAdvanceCyl6 = scalar, S16, 290, "deg", 0.02, 0 +ignitionAdvanceCyl7 = scalar, S16, 292, "deg", 0.02, 0 +ignitionAdvanceCyl8 = scalar, S16, 294, "deg", 0.02, 0 +ignitionAdvanceCyl9 = scalar, S16, 296, "deg", 0.02, 0 +ignitionAdvanceCyl10 = scalar, S16, 298, "deg", 0.02, 0 +ignitionAdvanceCyl11 = scalar, S16, 300, "deg", 0.02, 0 +ignitionAdvanceCyl12 = scalar, S16, 302, "deg", 0.02, 0 +tps1Split = scalar, S16, 304, "%", 0.01, 0 +tps2Split = scalar, S16, 306, "%", 0.01, 0 +tps12Split = scalar, S16, 308, "%", 0.01, 0 +accPedalSplit = scalar, S16, 310, "%", 0.01, 0 +sparkCutReason = scalar, S08, 312, "code", 1, 0 +fuelCutReason = scalar, S08, 313, "code", 1, 0 +mafEstimate = scalar, U16, 314, "kg/h", 0.1, 0 +instantRpm = scalar, U16, 316, "rpm", 1, 0 +rawMap = scalar, U16, 318, "V", 0.001, 0 +rawAfr = scalar, U16, 320, "V", 0.001, 0 +calibrationValue2 = scalar, F32, 324, "", 1, 0 +luaInvocationCounter = scalar, U32, 328, "count", 1, 0 +luaLastCycleDuration = scalar, U32, 332, "nt", 1, 0 +vssEdgeCounter = scalar, U32, 336, "", 1, 0 +issEdgeCounter = scalar, U32, 340, "", 1, 0 +auxLinear1 = scalar, F32, 344, "", 1, 0 +auxLinear2 = scalar, F32, 348, "", 1, 0 +auxLinear3 = scalar, F32, 352, "", 1, 0 +auxLinear4 = scalar, F32, 356, "", 1, 0 +fallbackMap = scalar, U16, 360, "kPa", 0.1, 0 +instantMAPValue = scalar, U16, 362, "kPa", 0.03333333333333333, 0 +maxLockedDuration = scalar, U16, 364, "us", 1, 0 +canWriteOk = scalar, U16, 366, "", 1, 0 +canWriteNotOk = scalar, U16, 368, "", 1, 0 +triggerPrimaryFall = scalar, U32, 372, "", 1, 0 +triggerPrimaryRise = scalar, U32, 376, "", 1, 0 +triggerSecondaryFall = scalar, U32, 380, "", 1, 0 +triggerSecondaryRise = scalar, U32, 384, "", 1, 0 +triggerVvtFall = scalar, U16, 388, "", 1, 0 +triggerVvtRise = scalar, U16, 390, "", 1, 0 +triggerVvt2Fall = scalar, U16, 392, "", 1, 0 +triggerVvt2Rise = scalar, U16, 394, "", 1, 0 +starterState = scalar, U08, 396, "", 1, 0 +starterRelayDisable = scalar, U08, 397, "", 1, 0 +multiSparkCounter = scalar, U08, 398, "", 1, 0 +extiOverflowCount = scalar, U08, 399, "", 1, 0 +alternatorStatus_pTerm = scalar, F32, 400, "", 1, 0 +alternatorStatus_iTerm = scalar, S16, 404, "", 0.01, 0 +alternatorStatus_dTerm = scalar, S16, 406, "", 0.01, 0 +alternatorStatus_output = scalar, S16, 408, "", 0.01, 0 +alternatorStatus_error = scalar, S16, 410, "", 0.01, 0 +alternatorStatus_resetCounter = scalar, U32, 412, "", 1, 0 +idleStatus_pTerm = scalar, F32, 416, "", 1, 0 +idleStatus_iTerm = scalar, S16, 420, "", 0.01, 0 +idleStatus_dTerm = scalar, S16, 422, "", 0.01, 0 +idleStatus_output = scalar, S16, 424, "", 0.01, 0 +idleStatus_error = scalar, S16, 426, "", 0.01, 0 +idleStatus_resetCounter = scalar, U32, 428, "", 1, 0 +etbStatus_pTerm = scalar, F32, 432, "", 1, 0 +etbStatus_iTerm = scalar, S16, 436, "", 0.01, 0 +etbStatus_dTerm = scalar, S16, 438, "", 0.01, 0 +etbStatus_output = scalar, S16, 440, "", 0.01, 0 +etbStatus_error = scalar, S16, 442, "", 0.01, 0 +etbStatus_resetCounter = scalar, U32, 444, "", 1, 0 +boostStatus_pTerm = scalar, F32, 448, "", 1, 0 +boostStatus_iTerm = scalar, S16, 452, "", 0.01, 0 +boostStatus_dTerm = scalar, S16, 454, "", 0.01, 0 +boostStatus_output = scalar, S16, 456, "", 0.01, 0 +boostStatus_error = scalar, S16, 458, "", 0.01, 0 +boostStatus_resetCounter = scalar, U32, 460, "", 1, 0 +wastegateDcStatus_pTerm = scalar, F32, 464, "", 1, 0 +wastegateDcStatus_iTerm = scalar, S16, 468, "", 0.01, 0 +wastegateDcStatus_dTerm = scalar, S16, 470, "", 0.01, 0 +wastegateDcStatus_output = scalar, S16, 472, "", 0.01, 0 +wastegateDcStatus_error = scalar, S16, 474, "", 0.01, 0 +wastegateDcStatus_resetCounter = scalar, U32, 476, "", 1, 0 +vvtStatus1_pTerm = scalar, F32, 480, "", 1, 0 +vvtStatus1_iTerm = scalar, S16, 484, "", 0.01, 0 +vvtStatus1_dTerm = scalar, S16, 486, "", 0.01, 0 +vvtStatus1_output = scalar, S16, 488, "", 0.01, 0 +vvtStatus1_error = scalar, S16, 490, "", 0.01, 0 +vvtStatus1_resetCounter = scalar, U32, 492, "", 1, 0 +vvtStatus2_pTerm = scalar, F32, 496, "", 1, 0 +vvtStatus2_iTerm = scalar, S16, 500, "", 0.01, 0 +vvtStatus2_dTerm = scalar, S16, 502, "", 0.01, 0 +vvtStatus2_output = scalar, S16, 504, "", 0.01, 0 +vvtStatus2_error = scalar, S16, 506, "", 0.01, 0 +vvtStatus2_resetCounter = scalar, U32, 508, "", 1, 0 +vvtStatus3_pTerm = scalar, F32, 512, "", 1, 0 +vvtStatus3_iTerm = scalar, S16, 516, "", 0.01, 0 +vvtStatus3_dTerm = scalar, S16, 518, "", 0.01, 0 +vvtStatus3_output = scalar, S16, 520, "", 0.01, 0 +vvtStatus3_error = scalar, S16, 522, "", 0.01, 0 +vvtStatus3_resetCounter = scalar, U32, 524, "", 1, 0 +vvtStatus4_pTerm = scalar, F32, 528, "", 1, 0 +vvtStatus4_iTerm = scalar, S16, 532, "", 0.01, 0 +vvtStatus4_dTerm = scalar, S16, 534, "", 0.01, 0 +vvtStatus4_output = scalar, S16, 536, "", 0.01, 0 +vvtStatus4_error = scalar, S16, 538, "", 0.01, 0 +vvtStatus4_resetCounter = scalar, U32, 540, "", 1, 0 +auxSpeed1 = scalar, U16, 544, "s", 1, 0 +auxSpeed2 = scalar, U16, 546, "s", 1, 0 +ISSValue = scalar, U16, 548, "RPM", 1, 0 +rawAnalogInput1 = scalar, S16, 550, "V", 0.001, 0 +rawAnalogInput2 = scalar, S16, 552, "V", 0.001, 0 +rawAnalogInput3 = scalar, S16, 554, "V", 0.001, 0 +rawAnalogInput4 = scalar, S16, 556, "V", 0.001, 0 +rawAnalogInput5 = scalar, S16, 558, "V", 0.001, 0 +rawAnalogInput6 = scalar, S16, 560, "V", 0.001, 0 +rawAnalogInput7 = scalar, S16, 562, "V", 0.001, 0 +rawAnalogInput8 = scalar, S16, 564, "V", 0.001, 0 +gppwmOutput1 = scalar, U08, 566, "%", 0.5, 0 +gppwmOutput2 = scalar, U08, 567, "%", 0.5, 0 +gppwmOutput3 = scalar, U08, 568, "%", 0.5, 0 +gppwmOutput4 = scalar, U08, 569, "%", 0.5, 0 +gppwmXAxis1 = scalar, S16, 570, "", 1, 0 +gppwmXAxis2 = scalar, S16, 572, "", 1, 0 +gppwmXAxis3 = scalar, S16, 574, "", 1, 0 +gppwmXAxis4 = scalar, S16, 576, "", 1, 0 +gppwmYAxis1 = scalar, S16, 578, "", 0.1, 0 +gppwmYAxis2 = scalar, S16, 580, "", 0.1, 0 +gppwmYAxis3 = scalar, S16, 582, "", 0.1, 0 +gppwmYAxis4 = scalar, S16, 584, "", 0.1, 0 +rawBattery = scalar, S16, 586, "V", 0.001, 0 +ignBlendParameter1 = scalar, S16, 588, "", 0.1, 0 +ignBlendParameter2 = scalar, S16, 590, "", 0.1, 0 +ignBlendParameter3 = scalar, S16, 592, "", 0.1, 0 +ignBlendParameter4 = scalar, S16, 594, "", 0.1, 0 +ignBlendBias1 = scalar, U08, 596, "%", 0.5, 0 +ignBlendBias2 = scalar, U08, 597, "%", 0.5, 0 +ignBlendBias3 = scalar, U08, 598, "%", 0.5, 0 +ignBlendBias4 = scalar, U08, 599, "%", 0.5, 0 +ignBlendOutput1 = scalar, S16, 600, "deg", 0.01, 0 +ignBlendOutput2 = scalar, S16, 602, "deg", 0.01, 0 +ignBlendOutput3 = scalar, S16, 604, "deg", 0.01, 0 +ignBlendOutput4 = scalar, S16, 606, "deg", 0.01, 0 +veBlendParameter1 = scalar, S16, 608, "", 0.1, 0 +veBlendParameter2 = scalar, S16, 610, "", 0.1, 0 +veBlendParameter3 = scalar, S16, 612, "", 0.1, 0 +veBlendParameter4 = scalar, S16, 614, "", 0.1, 0 +veBlendBias1 = scalar, U08, 616, "%", 0.5, 0 +veBlendBias2 = scalar, U08, 617, "%", 0.5, 0 +veBlendBias3 = scalar, U08, 618, "%", 0.5, 0 +veBlendBias4 = scalar, U08, 619, "%", 0.5, 0 +veBlendOutput1 = scalar, S16, 620, "%", 0.01, 0 +veBlendOutput2 = scalar, S16, 622, "%", 0.01, 0 +veBlendOutput3 = scalar, S16, 624, "%", 0.01, 0 +veBlendOutput4 = scalar, S16, 626, "%", 0.01, 0 +boostOpenLoopBlendParameter1 = scalar, S16, 628, "", 0.1, 0 +boostOpenLoopBlendParameter2 = scalar, S16, 630, "", 0.1, 0 +boostOpenLoopBlendBias1 = scalar, U08, 632, "%", 0.5, 0 +boostOpenLoopBlendBias2 = scalar, U08, 633, "%", 0.5, 0 +boostOpenLoopBlendOutput1 = scalar, S08, 634, "%", 1, 0 +boostOpenLoopBlendOutput2 = scalar, S08, 635, "%", 1, 0 +boostClosedLoopBlendParameter1 = scalar, S16, 636, "", 0.1, 0 +boostClosedLoopBlendParameter2 = scalar, S16, 638, "", 0.1, 0 +boostClosedLoopBlendBias1 = scalar, U08, 640, "%", 0.5, 0 +boostClosedLoopBlendBias2 = scalar, U08, 641, "%", 0.5, 0 +boostClosedLoopBlendOutput1 = scalar, S16, 642, "%", 0.1, 0 +boostClosedLoopBlendOutput2 = scalar, S16, 644, "%", 0.1, 0 +coilState1 = bits, U32, 648, [0:0] +coilState2 = bits, U32, 648, [1:1] +coilState3 = bits, U32, 648, [2:2] +coilState4 = bits, U32, 648, [3:3] +coilState5 = bits, U32, 648, [4:4] +coilState6 = bits, U32, 648, [5:5] +coilState7 = bits, U32, 648, [6:6] +coilState8 = bits, U32, 648, [7:7] +coilState9 = bits, U32, 648, [8:8] +coilState10 = bits, U32, 648, [9:9] +coilState11 = bits, U32, 648, [10:10] +coilState12 = bits, U32, 648, [11:11] +injectorState1 = bits, U32, 648, [12:12] +injectorState2 = bits, U32, 648, [13:13] +injectorState3 = bits, U32, 648, [14:14] +injectorState4 = bits, U32, 648, [15:15] +injectorState5 = bits, U32, 648, [16:16] +injectorState6 = bits, U32, 648, [17:17] +injectorState7 = bits, U32, 648, [18:18] +injectorState8 = bits, U32, 648, [19:19] +injectorState9 = bits, U32, 648, [20:20] +injectorState10 = bits, U32, 648, [21:21] +injectorState11 = bits, U32, 648, [22:22] +injectorState12 = bits, U32, 648, [23:23] +triggerChannel1 = bits, U32, 648, [24:24] +triggerChannel2 = bits, U32, 648, [25:25] +vvtChannel1 = bits, U32, 648, [26:26] +vvtChannel2 = bits, U32, 648, [27:27] +vvtChannel3 = bits, U32, 648, [28:28] +vvtChannel4 = bits, U32, 648, [29:29] +outputRequestPeriod = scalar, U32, 652, "", 1, 0 +mapFast = scalar, F32, 656, "", 1, 0 +luaGauges1 = scalar, F32, 660, "value", 1, 0 +luaGauges2 = scalar, F32, 664, "value", 1, 0 +luaGauges3 = scalar, F32, 668, "value", 1, 0 +luaGauges4 = scalar, F32, 672, "value", 1, 0 +luaGauges5 = scalar, F32, 676, "value", 1, 0 +luaGauges6 = scalar, F32, 680, "value", 1, 0 +luaGauges7 = scalar, F32, 684, "value", 1, 0 +luaGauges8 = scalar, F32, 688, "value", 1, 0 +rawMaf2 = scalar, U16, 692, "V", 0.001, 0 +mafMeasured2 = scalar, U16, 694, "kg/h", 0.1, 0 +schedulingUsedCount = scalar, U16, 696, "", 1,0 +vehicleSpeedKph = scalar, U16, 698, "kph", 0.01, 0 +Gego = scalar, U16, 700, "%", 0.01,0 +testBenchIter = scalar, U16, 702, "count", 1, 0 +oilTemp = scalar, S16, 704, "deg C", 0.01, 0 +fuelTemp = scalar, S16, 706, "deg C", 0.01, 0 +ambientTemp = scalar, S16, 708, "deg C", 0.01, 0 +compressorDischargeTemp = scalar, S16, 710, "deg C", 0.01, 0 +compressorDischargePressure = scalar, U16, 712, "kPa", 0.03333333333333333, 0 +throttleInletPressure = scalar, U16, 714, "kPa", 0.03333333333333333, 0 +ignitionOnTime = scalar, U16, 716, "sec", 1,0 +engineRunTime = scalar, U16, 718, "sec", 1,0 +distanceTraveled = scalar, U16, 720, "km", 0.1,0 +afrGasolineScale = scalar, U16, 722, "AFR", 0.001, 0 +afr2GasolineScale = scalar, U16, 724, "AFR", 0.001, 0 +wheelSlipRatio = scalar, F32, 728, "", 1, 0 +ignitorDiagnostic1 = scalar, U08, 732, "", 1, 0 +ignitorDiagnostic2 = scalar, U08, 733, "", 1, 0 +ignitorDiagnostic3 = scalar, U08, 734, "", 1, 0 +ignitorDiagnostic4 = scalar, U08, 735, "", 1, 0 +ignitorDiagnostic5 = scalar, U08, 736, "", 1, 0 +ignitorDiagnostic6 = scalar, U08, 737, "", 1, 0 +ignitorDiagnostic7 = scalar, U08, 738, "", 1, 0 +ignitorDiagnostic8 = scalar, U08, 739, "", 1, 0 +ignitorDiagnostic9 = scalar, U08, 740, "", 1, 0 +ignitorDiagnostic10 = scalar, U08, 741, "", 1, 0 +ignitorDiagnostic11 = scalar, U08, 742, "", 1, 0 +ignitorDiagnostic12 = scalar, U08, 743, "", 1, 0 +injectorDiagnostic1 = scalar, U08, 744, "", 1, 0 +injectorDiagnostic2 = scalar, U08, 745, "", 1, 0 +injectorDiagnostic3 = scalar, U08, 746, "", 1, 0 +injectorDiagnostic4 = scalar, U08, 747, "", 1, 0 +injectorDiagnostic5 = scalar, U08, 748, "", 1, 0 +injectorDiagnostic6 = scalar, U08, 749, "", 1, 0 +injectorDiagnostic7 = scalar, U08, 750, "", 1, 0 +injectorDiagnostic8 = scalar, U08, 751, "", 1, 0 +injectorDiagnostic9 = scalar, U08, 752, "", 1, 0 +injectorDiagnostic10 = scalar, U08, 753, "", 1, 0 +injectorDiagnostic11 = scalar, U08, 754, "", 1, 0 +injectorDiagnostic12 = scalar, U08, 755, "", 1, 0 +actualLastInjectionStage2 = scalar, U16, 756, "ms", 0.0033333333333333335, 0 +injectorDutyCycleStage2 = scalar, U08, 758, "%", 0.5, 0 +unusedByteHere = scalar, U08, 759, "", 1, 0 +fastAdcErrorsCount = scalar, U08, 760, "", 1, 0 +deviceUid = scalar, U08, 761, "", 1, 0 +mc33810spiErrorCounter = scalar, U16, 762, "", 1, 0 +sadDwellRatioCounter = scalar, U08, 764, "", 1, 0 +injectionPrimingCounter = scalar, U08, 765, "", 1, 0 +tempLogging2 = scalar, U08, 766, "", 1, 0 +acPressure = scalar, F32, 768, "kPa", 1, 0 +rawAuxAnalog1 = scalar, S16, 772, "V", 0.001, 0 +rawAuxAnalog2 = scalar, S16, 774, "V", 0.001, 0 +rawAuxAnalog3 = scalar, S16, 776, "V", 0.001, 0 +rawAuxAnalog4 = scalar, S16, 778, "V", 0.001, 0 +fastAdcErrorCallbackCount = scalar, U08, 780, "", 1, 0 +slowAdcErrorsCount = scalar, U08, 781, "", 1, 0 +rawAuxTemp1 = scalar, S16, 782, "V", 0.001, 0 +rawAuxTemp2 = scalar, S16, 784, "V", 0.001, 0 +rawAmbientTemp = scalar, S16, 786, "V", 0.001, 0 +rtcUnixEpochTime = scalar, U32, 788, "", 1, 0 +sparkCutReasonBlinker = scalar, S08, 792, "", 1, 0 +fuelCutReasonBlinker = scalar, S08, 793, "", 1, 0 +unusedAtTheEnd1 = scalar, U08, 794, "", 1, 0 +unusedAtTheEnd2 = scalar, U08, 795, "", 1, 0 +unusedAtTheEnd3 = scalar, U08, 796, "", 1, 0 +unusedAtTheEnd4 = scalar, U08, 797, "", 1, 0 +unusedAtTheEnd5 = scalar, U08, 798, "", 1, 0 +unusedAtTheEnd6 = scalar, U08, 799, "", 1, 0 +unusedAtTheEnd7 = scalar, U08, 800, "", 1, 0 +unusedAtTheEnd8 = scalar, U08, 801, "", 1, 0 +unusedAtTheEnd9 = scalar, U08, 802, "", 1, 0 +unusedAtTheEnd10 = scalar, U08, 803, "", 1, 0 +unusedAtTheEnd11 = scalar, U08, 804, "", 1, 0 +unusedAtTheEnd12 = scalar, U08, 805, "", 1, 0 +unusedAtTheEnd13 = scalar, U08, 806, "", 1, 0 +unusedAtTheEnd14 = scalar, U08, 807, "", 1, 0 +unusedAtTheEnd15 = scalar, U08, 808, "", 1, 0 +unusedAtTheEnd16 = scalar, U08, 809, "", 1, 0 +unusedAtTheEnd17 = scalar, U08, 810, "", 1, 0 +unusedAtTheEnd18 = scalar, U08, 811, "", 1, 0 +unusedAtTheEnd19 = scalar, U08, 812, "", 1, 0 +unusedAtTheEnd20 = scalar, U08, 813, "", 1, 0 +unusedAtTheEnd21 = scalar, U08, 814, "", 1, 0 +unusedAtTheEnd22 = scalar, U08, 815, "", 1, 0 +unusedAtTheEnd23 = scalar, U08, 816, "", 1, 0 +unusedAtTheEnd24 = scalar, U08, 817, "", 1, 0 +unusedAtTheEnd25 = scalar, U08, 818, "", 1, 0 +unusedAtTheEnd26 = scalar, U08, 819, "", 1, 0 +unusedAtTheEnd27 = scalar, U08, 820, "", 1, 0 +unusedAtTheEnd28 = scalar, U08, 821, "", 1, 0 +unusedAtTheEnd29 = scalar, U08, 822, "", 1, 0 +unusedAtTheEnd30 = scalar, U08, 823, "", 1, 0 +unusedAtTheEnd31 = scalar, U08, 824, "", 1, 0 +unusedAtTheEnd32 = scalar, U08, 825, "", 1, 0 +unusedAtTheEnd33 = scalar, U08, 826, "", 1, 0 +unusedAtTheEnd34 = scalar, U08, 827, "", 1, 0 +unusedAtTheEnd35 = scalar, U08, 828, "", 1, 0 +unusedAtTheEnd36 = scalar, U08, 829, "", 1, 0 +unusedAtTheEnd37 = scalar, U08, 830, "", 1, 0 +unusedAtTheEnd38 = scalar, U08, 831, "", 1, 0 +unusedAtTheEnd39 = scalar, U08, 832, "", 1, 0 +unusedAtTheEnd40 = scalar, U08, 833, "", 1, 0 +unusedAtTheEnd41 = scalar, U08, 834, "", 1, 0 +unusedAtTheEnd42 = scalar, U08, 835, "", 1, 0 +unusedAtTheEnd43 = scalar, U08, 836, "", 1, 0 +unusedAtTheEnd44 = scalar, U08, 837, "", 1, 0 +unusedAtTheEnd45 = scalar, U08, 838, "", 1, 0 +unusedAtTheEnd46 = scalar, U08, 839, "", 1, 0 +unusedAtTheEnd47 = scalar, U08, 840, "", 1, 0 +unusedAtTheEnd48 = scalar, U08, 841, "", 1, 0 +unusedAtTheEnd49 = scalar, U08, 842, "", 1, 0 +unusedAtTheEnd50 = scalar, U08, 843, "", 1, 0 +unusedAtTheEnd51 = scalar, U08, 844, "", 1, 0 +unusedAtTheEnd52 = scalar, U08, 845, "", 1, 0 +; total TS size = 848 +totalFuelCorrection = scalar, F32, 848, "mult", 1,0 +running_postCrankingFuelCorrection = scalar, F32, 852, "", 1, 0 +running_intakeTemperatureCoefficient = scalar, F32, 856, "", 1, 0 +running_coolantTemperatureCoefficient = scalar, F32, 860, "", 1, 0 +running_timeSinceCrankingInSecs = scalar, F32, 864, "secs", 1,0 +running_baseFuel = scalar, U16, 868, "mg", 0.01, 0 +running_fuel = scalar, U16, 870, "mg", 0.01, 0 +afrTableYAxis = scalar, U16, 872, "%", 0.01,0 +targetLambda = scalar, U16, 874, "", 1.0E-4,0 +targetAFR = scalar, U16, 876, "ratio", 0.001,0 +stoichiometricRatio = scalar, U16, 878, "ratio", 0.001, 0 +sdTcharge_coff = scalar, F32, 880, "", 1, 0 +sdAirMassInOneCylinder = scalar, F32, 884, "g", 1, 0 +normalizedCylinderFilling = scalar, F32, 888, "%", 1, 0 +brokenInjector = scalar, U08, 892, "", 1, 0 +unused88 = scalar, U08, 893, "", 1, 0 +idealEngineTorque = scalar, U16, 894, "", 1, 0 +injectorHwIssue = bits, U32, 896, [0:0] +; total TS size = 900 +baseDwell = scalar, F32, 900, "ms", 1,0 +sparkDwell = scalar, F32, 904, "ms", 1,0 +dwellDurationAngle = scalar, F32, 908, "deg", 1,0 +cltTimingCorrection = scalar, S16, 912, "deg", 0.01,0 +timingIatCorrection = scalar, S16, 914, "deg", 0.01,0 +timingPidCorrection = scalar, S16, 916, "deg", 0.01,0 +baseIgnitionAdvance = scalar, S16, 918, "deg", 0.02, 0 +correctedIgnitionAdvance = scalar, S16, 920, "deg", 0.02, 0 +tractionAdvanceDrop = scalar, S16, 922, "deg", 0.02, 0 +dwellVoltageCorrection = scalar, F32, 924, "", 1, 0 +luaTimingAdd = scalar, F32, 928, "deg", 1, 0 +luaTimingMult = scalar, F32, 932, "deg", 1, 0 +luaIgnitionSkip = bits, U32, 936, [0:0] +; total TS size = 940 +m_knockLevel = scalar, F32, 940, "Volts", 1, 0 +m_knockCyl1 = scalar, S08, 944, "dBv", 1, 0 +m_knockCyl2 = scalar, S08, 945, "dBv", 1, 0 +m_knockCyl3 = scalar, S08, 946, "dBv", 1, 0 +m_knockCyl4 = scalar, S08, 947, "dBv", 1, 0 +m_knockCyl5 = scalar, S08, 948, "dBv", 1, 0 +m_knockCyl6 = scalar, S08, 949, "dBv", 1, 0 +m_knockCyl7 = scalar, S08, 950, "dBv", 1, 0 +m_knockCyl8 = scalar, S08, 951, "dBv", 1, 0 +m_knockCyl9 = scalar, S08, 952, "dBv", 1, 0 +m_knockCyl10 = scalar, S08, 953, "dBv", 1, 0 +m_knockCyl11 = scalar, S08, 954, "dBv", 1, 0 +m_knockCyl12 = scalar, S08, 955, "dBv", 1, 0 +m_knockRetard = scalar, F32, 956, "deg", 1,0 +m_knockThreshold = scalar, F32, 960, "", 1, 0 +m_knockCount = scalar, U32, 964, "", 1, 0 +m_maximumRetard = scalar, F32, 968, "", 1, 0 +m_knockSpectrum1 = scalar, U32, 972, "compressed data", 1, 0 +m_knockSpectrum2 = scalar, U32, 976, "compressed data", 1, 0 +m_knockSpectrum3 = scalar, U32, 980, "compressed data", 1, 0 +m_knockSpectrum4 = scalar, U32, 984, "compressed data", 1, 0 +m_knockSpectrum5 = scalar, U32, 988, "compressed data", 1, 0 +m_knockSpectrum6 = scalar, U32, 992, "compressed data", 1, 0 +m_knockSpectrum7 = scalar, U32, 996, "compressed data", 1, 0 +m_knockSpectrum8 = scalar, U32, 1000, "compressed data", 1, 0 +m_knockSpectrum9 = scalar, U32, 1004, "compressed data", 1, 0 +m_knockSpectrum10 = scalar, U32, 1008, "compressed data", 1, 0 +m_knockSpectrum11 = scalar, U32, 1012, "compressed data", 1, 0 +m_knockSpectrum12 = scalar, U32, 1016, "compressed data", 1, 0 +m_knockSpectrum13 = scalar, U32, 1020, "compressed data", 1, 0 +m_knockSpectrum14 = scalar, U32, 1024, "compressed data", 1, 0 +m_knockSpectrum15 = scalar, U32, 1028, "compressed data", 1, 0 +m_knockSpectrum16 = scalar, U32, 1032, "compressed data", 1, 0 +m_knockSpectrumChannelCyl = scalar, U16, 1036, "compressed N + N", 1, 0 +m_knockFrequencyStart = scalar, U16, 1038, "Hz", 1, 0 +m_knockFrequencyStep = scalar, F32, 1040, "Hz", 1, 0 +m_knockFuelTrimMultiplier = scalar, F32, 1044, "multiplier", 1, 0 +; total TS size = 1048 +tcuCurrentGear = scalar, S08, 1048, "gear", 1, 0 +tcRatio = scalar, U16, 1050, "value", 0.01, 0 +lastShiftTime = scalar, F32, 1052, "", 1, 0 +tcu_currentRange = scalar, U08, 1056, "", 1, 0 +pressureControlDuty = scalar, S08, 1057, "%", 1,0 +torqueConverterDuty = scalar, S08, 1058, "%", 1,0 +isShifting = bits, U32, 1060, [0:0] +; total TS size = 1064 +throttleUseWotModel = bits, U32, 1064, [0:0] +throttleModelCrossoverAngle = scalar, S16, 1068, "%", 0.01, 0 +throttleEstimatedFlow = scalar, F32, 1072, "g/s", 1, 0 +; total TS size = 1076 +m_requested_pump = scalar, F32, 1076, "", 1, 0 +fuel_requested_percent = scalar, F32, 1080, "", 1, 0 +fuel_requested_percent_pi = scalar, F32, 1084, "", 1, 0 +noValve = bits, U32, 1088, [0:0] +angleAboveMin = bits, U32, 1088, [1:1] +isHpfpInactive = bits, U32, 1088, [2:2] +m_pressureTarget_kPa = scalar, F32, 1092, "", 1, 0 +nextLobe = scalar, F32, 1096, "", 1, 0 +di_nextStart = scalar, F32, 1100, "v", 1, 0 +; total TS size = 1104 +m_deadtime = scalar, F32, 1104, "ms", 1, 0 +pressureDelta = scalar, F32, 1108, "kPa", 1, 0 +pressureRatio = scalar, F32, 1112, "", 1, 0 +; total TS size = 1116 +retardThresholdRpm = scalar, S32, 1116, "", 1, 0 +launchActivatePinState = bits, U32, 1120, [0:0] +isPreLaunchCondition = bits, U32, 1120, [1:1] +isLaunchCondition = bits, U32, 1120, [2:2] +isSwitchActivated = bits, U32, 1120, [3:3] +isClutchActivated = bits, U32, 1120, [4:4] +isBrakePedalActivated = bits, U32, 1120, [5:5] +isValidInputPin = bits, U32, 1120, [6:6] +activateSwitchCondition = bits, U32, 1120, [7:7] +rpmLaunchCondition = bits, U32, 1120, [8:8] +rpmPreLaunchCondition = bits, U32, 1120, [9:9] +speedCondition = bits, U32, 1120, [10:10] +tpsCondition = bits, U32, 1120, [11:11] +; total TS size = 1124 +isTorqueReductionTriggerPinValid = bits, U32, 1124, [0:0] +torqueReductionTriggerPinState = bits, U32, 1124, [1:1] +isTimeConditionSatisfied = bits, U32, 1124, [2:2] +isRpmConditionSatisfied = bits, U32, 1124, [3:3] +isAppConditionSatisfied = bits, U32, 1124, [4:4] +isFlatShiftConditionSatisfied = bits, U32, 1124, [5:5] +; total TS size = 1128 +isAntilagCondition = bits, U32, 1128, [0:0] +ALSMinRPMCondition = bits, U32, 1128, [1:1] +ALSMaxRPMCondition = bits, U32, 1128, [2:2] +ALSMinCLTCondition = bits, U32, 1128, [3:3] +ALSMaxCLTCondition = bits, U32, 1128, [4:4] +ALSMaxThrottleIntentCondition = bits, U32, 1128, [5:5] +isALSSwitchActivated = bits, U32, 1128, [6:6] +ALSActivatePinState = bits, U32, 1128, [7:7] +ALSSwitchCondition = bits, U32, 1128, [8:8] +ALSTimerCondition = bits, U32, 1128, [9:9] +fuelALSCorrection = scalar, F32, 1132, "", 1, 0 +timingALSCorrection = scalar, S16, 1136, "deg", 0.01, 0 +timingALSSkip = scalar, S16, 1138, "deg", 0.01, 0 +; total TS size = 1140 +isTpsInvalid = bits, U32, 1140, [0:0] +m_shouldResetPid = bits, U32, 1140, [1:1] +isBelowClosedLoopThreshold = bits, U32, 1140, [2:2] +isNotClosedLoop = bits, U32, 1140, [3:3] +isZeroRpm = bits, U32, 1140, [4:4] +hasInitBoost = bits, U32, 1140, [5:5] +rpmTooLow = bits, U32, 1140, [6:6] +tpsTooLow = bits, U32, 1140, [7:7] +mapTooLow = bits, U32, 1140, [8:8] +isPlantValid = bits, U32, 1140, [9:9] +isBoostControlled = bits, U32, 1140, [10:10] +luaTargetAdd = scalar, S16, 1144, "v", 0.5,0 +boostOutput = scalar, S16, 1146, "percent", 0.01,0 +luaTargetMult = scalar, F32, 1148, "v", 1,0 +openLoopPart = scalar, F32, 1152, "v", 1,0 +luaOpenLoopAdd = scalar, F32, 1156, "v", 1,0 +boostControllerClosedLoopPart = scalar, S08, 1160, "%", 0.5,0 +boostControlTarget = scalar, S16, 1162, "kPa", 0.03333333333333333,0 +; total TS size = 1164 +acButtonState = scalar, S08, 1164, "", 1, 0 +m_acEnabled = bits, U32, 1168, [0:0] +engineTooSlow = bits, U32, 1168, [1:1] +engineTooFast = bits, U32, 1168, [2:2] +noClt = bits, U32, 1168, [3:3] +engineTooHot = bits, U32, 1168, [4:4] +tpsTooHigh = bits, U32, 1168, [5:5] +isDisabledByLua = bits, U32, 1168, [6:6] +acCompressorState = bits, U32, 1168, [7:7] +acPressureTooLow = bits, U32, 1168, [8:8] +acPressureTooHigh = bits, U32, 1168, [9:9] +; total TS size = 1172 +cranking0 = bits, U32, 1172, [0:0] +notRunning0 = bits, U32, 1172, [1:1] +disabledWhileEngineStopped0 = bits, U32, 1172, [2:2] +brokenClt0 = bits, U32, 1172, [3:3] +enabledForAc0 = bits, U32, 1172, [4:4] +hot0 = bits, U32, 1172, [5:5] +cold0 = bits, U32, 1172, [6:6] +disabledBySpeed0 = bits, U32, 1172, [7:7] +radiatorFanStatus0 = scalar, U08, 1176, "", 1, 0 +; total TS size = 1180 +cranking1 = bits, U32, 1180, [0:0] +notRunning1 = bits, U32, 1180, [1:1] +disabledWhileEngineStopped1 = bits, U32, 1180, [2:2] +brokenClt1 = bits, U32, 1180, [3:3] +enabledForAc1 = bits, U32, 1180, [4:4] +hot1 = bits, U32, 1180, [5:5] +cold1 = bits, U32, 1180, [6:6] +disabledBySpeed1 = bits, U32, 1180, [7:7] +radiatorFanStatus1 = scalar, U08, 1184, "", 1, 0 +; total TS size = 1188 +isPrime = bits, U32, 1188, [0:0] +engineTurnedRecently = bits, U32, 1188, [1:1] +isFuelPumpOn = bits, U32, 1188, [2:2] +ignitionOn = bits, U32, 1188, [3:3] +; total TS size = 1192 +isBenchTest = bits, U32, 1192, [0:0] +hasIgnitionVoltage = bits, U32, 1192, [1:1] +mainRelayState = bits, U32, 1192, [2:2] +delayedShutoffRequested = bits, U32, 1192, [3:3] +; total TS size = 1196 +lua_fuelAdd = scalar, F32, 1196, "g", 1, 0 +lua_fuelMult = scalar, F32, 1200, "", 1, 0 +lua_clutchUpState = bits, U32, 1204, [0:0] +lua_brakePedalState = bits, U32, 1204, [1:1] +lua_acRequestState = bits, U32, 1204, [2:2] +lua_luaDisableEtb = bits, U32, 1204, [3:3] +lua_luaIgnCut = bits, U32, 1204, [4:4] +lua_luaFuelCut = bits, U32, 1204, [5:5] +lua_clutchDownState = bits, U32, 1204, [6:6] +lua_disableDecelerationFuelCutOff = bits, U32, 1204, [7:7] +sd_tCharge = scalar, S16, 1208, "deg C", 0.01, 0 +sd_tChargeK = scalar, F32, 1212, "", 1, 0 +crankingFuel_coolantTemperatureCoefficient = scalar, F32, 1216, "", 1, 0 +crankingFuel_tpsCoefficient = scalar, F32, 1220, "", 1, 0 +crankingFuel_durationCoefficient = scalar, F32, 1224, "", 1, 0 +crankingFuel_fuel = scalar, U16, 1228, "mg", 0.01, 0 +baroCorrection = scalar, F32, 1232, "", 1, 0 +hellenBoardId = scalar, S16, 1236, "id", 1, 0 +clutchUpState = scalar, S08, 1238, "", 1, 0 +clutchDownState = scalar, S08, 1239, "", 1, 0 +brakePedalState = scalar, S08, 1240, "", 1, 0 +startStopState = scalar, S08, 1241, "", 1, 0 +smartChipState = scalar, S08, 1242, "", 1, 0 +smartChipRestartCounter = scalar, S08, 1243, "", 1, 0 +smartChipAliveCounter = scalar, S08, 1244, "", 1, 0 +startStopPhysicalState = bits, U32, 1248, [0:0] +acrActive = bits, U32, 1248, [1:1] +acrEngineMovedRecently = bits, U32, 1248, [2:2] +heaterControlEnabled = bits, U32, 1248, [3:3] +luaDigitalState0 = bits, U32, 1248, [4:4] +luaDigitalState1 = bits, U32, 1248, [5:5] +luaDigitalState2 = bits, U32, 1248, [6:6] +luaDigitalState3 = bits, U32, 1248, [7:7] +startStopStateToggleCounter = scalar, U32, 1252, "", 1, 0 +luaSoftSparkSkip = scalar, F32, 1256, "", 1, 0 +luaHardSparkSkip = scalar, F32, 1260, "", 1, 0 +tractionControlSparkSkip = scalar, F32, 1264, "", 1, 0 +desiredRpmLimit = scalar, S16, 1268, "rpm", 1, 0 +fuelInjectionCounter = scalar, U32, 1272, "", 1, 0 +globalSparkCounter = scalar, U32, 1276, "", 1, 0 +fuelingLoad = scalar, F32, 1280, "", 1, 0 +ignitionLoad = scalar, F32, 1284, "", 1, 0 +veTableYAxis = scalar, U16, 1288, "%", 0.01, 0 +overDwellCounter = scalar, U08, 1290, "", 1, 0 +overDwellNotScheduledCounter = scalar, U08, 1291, "", 1, 0 +sparkOutOfOrderCounter = scalar, U08, 1292, "", 1, 0 +; total TS size = 1296 +tpsFrom = scalar, F32, 1296 +tpsTo = scalar, F32, 1300 +deltaTps = scalar, F32, 1304 +extraFuel = scalar, F32, 1308, "", 1, 0 +valueFromTable = scalar, F32, 1312, "", 1, 0 +isAboveAccelThreshold = bits, U32, 1316, [0:0] +isBelowDecelThreshold = bits, U32, 1316, [1:1] +isTimeToResetAccumulator = bits, U32, 1316, [2:2] +isFractionalEnrichment = bits, U32, 1316, [3:3] +belowEpsilon = bits, U32, 1316, [4:4] +tooShort = bits, U32, 1316, [5:5] +fractionalInjFuel = scalar, F32, 1320, "", 1, 0 +accumulatedValue = scalar, F32, 1324, "", 1, 0 +maxExtraPerCycle = scalar, F32, 1328, "", 1, 0 +maxExtraPerPeriod = scalar, F32, 1332, "", 1, 0 +maxInjectedPerPeriod = scalar, F32, 1336, "", 1, 0 +cycleCnt = scalar, S32, 1340, "", 1, 0 +; total TS size = 1344 +hwEventCounters1 = scalar, U32, 1344, "", 1, 0 +hwEventCounters2 = scalar, U32, 1348, "", 1, 0 +hwEventCounters3 = scalar, U32, 1352, "", 1, 0 +hwEventCounters4 = scalar, U32, 1356, "", 1, 0 +hwEventCounters5 = scalar, U32, 1360, "", 1, 0 +hwEventCounters6 = scalar, U32, 1364, "", 1, 0 +vvtCamCounter = scalar, U32, 1368, "", 1, 0 +mapVvt_MAP_AT_SPECIAL_POINT = scalar, F32, 1372, "kPa", 1, 0 +mapVvt_MAP_AT_DIFF = scalar, F32, 1376, "kPa", 1, 0 +mapVvt_MAP_AT_CYCLE_COUNT = scalar, S08, 1380, "distance", 1, 0 +mapVvt_sync_counter = scalar, U08, 1381, "counter", 1, 0 +currentEngineDecodedPhase = scalar, F32, 1384, "deg", 1, 0 +triggerToothAngleError = scalar, F32, 1388, "deg", 1, 0 +triggerIgnoredToothCount = scalar, U08, 1392, "", 1, 0 +mapCamPrevToothAngle = scalar, F32, 1396, "deg", 1, 0 +isDecodingMapCam = bits, U32, 1400, [0:0] +triggerElapsedUs = scalar, U32, 1404, "", 1, 0 +; total TS size = 1408 +crankSynchronizationCounter0 = scalar, U32, 1408, "", 1, 0 +vvtSyncGapRatio0 = scalar, F32, 1412, "", 1, 0 +vvtToothDurations00 = scalar, U32, 1416, "us", 1, 0 +vvtCurrentPosition0 = scalar, F32, 1420, "sync: Primary Cam Position", 1, 0 +vvtToothPosition10 = scalar, F32, 1424, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition20 = scalar, F32, 1428, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition30 = scalar, F32, 1432, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition40 = scalar, F32, 1436, "sync: Cam Tooth Position", 1, 0 +triggerSyncGapRatio0 = scalar, F32, 1440, "", 1, 0 +triggerStateIndex0 = scalar, U08, 1444, "", 1, 0 +vvtStateIndex0 = scalar, U08, 1445, "", 1, 0 +; total TS size = 1448 +crankSynchronizationCounter1 = scalar, U32, 1448, "", 1, 0 +vvtSyncGapRatio1 = scalar, F32, 1452, "", 1, 0 +vvtToothDurations01 = scalar, U32, 1456, "us", 1, 0 +vvtCurrentPosition1 = scalar, F32, 1460, "sync: Primary Cam Position", 1, 0 +vvtToothPosition11 = scalar, F32, 1464, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition21 = scalar, F32, 1468, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition31 = scalar, F32, 1472, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition41 = scalar, F32, 1476, "sync: Cam Tooth Position", 1, 0 +triggerSyncGapRatio1 = scalar, F32, 1480, "", 1, 0 +triggerStateIndex1 = scalar, U08, 1484, "", 1, 0 +vvtStateIndex1 = scalar, U08, 1485, "", 1, 0 +; total TS size = 1488 +crankSynchronizationCounter2 = scalar, U32, 1488, "", 1, 0 +vvtSyncGapRatio2 = scalar, F32, 1492, "", 1, 0 +vvtToothDurations02 = scalar, U32, 1496, "us", 1, 0 +vvtCurrentPosition2 = scalar, F32, 1500, "sync: Primary Cam Position", 1, 0 +vvtToothPosition12 = scalar, F32, 1504, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition22 = scalar, F32, 1508, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition32 = scalar, F32, 1512, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition42 = scalar, F32, 1516, "sync: Cam Tooth Position", 1, 0 +triggerSyncGapRatio2 = scalar, F32, 1520, "", 1, 0 +triggerStateIndex2 = scalar, U08, 1524, "", 1, 0 +vvtStateIndex2 = scalar, U08, 1525, "", 1, 0 +; total TS size = 1528 +crankSynchronizationCounter3 = scalar, U32, 1528, "", 1, 0 +vvtSyncGapRatio3 = scalar, F32, 1532, "", 1, 0 +vvtToothDurations03 = scalar, U32, 1536, "us", 1, 0 +vvtCurrentPosition3 = scalar, F32, 1540, "sync: Primary Cam Position", 1, 0 +vvtToothPosition13 = scalar, F32, 1544, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition23 = scalar, F32, 1548, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition33 = scalar, F32, 1552, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition43 = scalar, F32, 1556, "sync: Cam Tooth Position", 1, 0 +triggerSyncGapRatio3 = scalar, F32, 1560, "", 1, 0 +triggerStateIndex3 = scalar, U08, 1564, "", 1, 0 +vvtStateIndex3 = scalar, U08, 1565, "", 1, 0 +; total TS size = 1568 +crankSynchronizationCounter4 = scalar, U32, 1568, "", 1, 0 +vvtSyncGapRatio4 = scalar, F32, 1572, "", 1, 0 +vvtToothDurations04 = scalar, U32, 1576, "us", 1, 0 +vvtCurrentPosition4 = scalar, F32, 1580, "sync: Primary Cam Position", 1, 0 +vvtToothPosition14 = scalar, F32, 1584, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition24 = scalar, F32, 1588, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition34 = scalar, F32, 1592, "sync: Cam Tooth Position", 1, 0 +vvtToothPosition44 = scalar, F32, 1596, "sync: Cam Tooth Position", 1, 0 +triggerSyncGapRatio4 = scalar, F32, 1600, "", 1, 0 +triggerStateIndex4 = scalar, U08, 1604, "", 1, 0 +vvtStateIndex4 = scalar, U08, 1605, "", 1, 0 +; total TS size = 1608 +camResyncCounter = scalar, U08, 1608, "", 1, 0 +m_hasSynchronizedPhase = bits, U32, 1612, [0:0] +; total TS size = 1616 +wallFuelCorrection = scalar, F32, 1616, "", 1, 0 +wallFuel = scalar, F32, 1620, "", 1, 0 +; total TS size = 1624 +idleState = bits, S32, 1624, [0:2], "not important" +currentIdlePosition = scalar, F32, 1628 +baseIdlePosition = scalar, F32, 1632 +idleClosedLoop = scalar, F32, 1636 +iacByTpsTaper = scalar, F32, 1640 +throttlePedalUpState = scalar, S32, 1644, "", 1, 0 +mightResetPid = bits, U32, 1648, [0:0] +shouldResetPid = bits, U32, 1648, [1:1] +wasResetPid = bits, U32, 1648, [2:2] +mustResetPid = bits, U32, 1648, [3:3] +isCranking = bits, U32, 1648, [4:4] +isIacTableForCoasting = bits, U32, 1648, [5:5] +notIdling = bits, U32, 1648, [6:6] +needReset = bits, U32, 1648, [7:7] +isInDeadZone = bits, U32, 1648, [8:8] +isBlipping = bits, U32, 1648, [9:9] +useClosedLoop = bits, U32, 1648, [10:10] +badTps = bits, U32, 1648, [11:11] +looksLikeRunning = bits, U32, 1648, [12:12] +looksLikeCoasting = bits, U32, 1648, [13:13] +looksLikeCrankToIdle = bits, U32, 1648, [14:14] +isIdleCoasting = bits, U32, 1648, [15:15] +isIdleClosedLoop = bits, U32, 1648, [16:16] +idleTarget = scalar, S32, 1652, "", 1, 0 +targetRpmByClt = scalar, S32, 1656, "", 1, 0 +targetRpmAc = scalar, S32, 1660, "", 1, 0 +iacByRpmTaper = scalar, F32, 1664 +luaAdd = scalar, F32, 1668 +; total TS size = 1672 +targetWithIdlePosition0 = scalar, F32, 1672, "per", 1,0 +trim0 = scalar, F32, 1676, "", 1, 0 +luaAdjustment0 = scalar, F32, 1680, "per", 1,0 +m_wastegatePosition0 = scalar, F32, 1684, "per", 1,0 +etbFeedForward0 = scalar, F32, 1688 +etbIntegralError0 = scalar, F32, 1692, "", 1, 0 +etbCurrentTarget0 = scalar, F32, 1696, "%", 1, 0 +etbCurrentAdjustedTarget0 = scalar, F32, 1700, "%", 1, 0 +etbRevLimitActive0 = bits, U32, 1704, [0:0] +jamDetected0 = bits, U32, 1704, [1:1] +validPlantPosition0 = bits, U32, 1704, [2:2] +etbTpsErrorCounter0 = scalar, U16, 1708, "count", 1,0 +etbPpsErrorCounter0 = scalar, U16, 1710, "count", 1,0 +etbErrorCode0 = scalar, S08, 1712, "", 1, 0 +etbErrorCodeBlinker0 = scalar, S08, 1713, "", 1, 0 +tcEtbDrop0 = scalar, S08, 1714, "%", 1, 0 +jamTimer0 = scalar, U16, 1716, "sec", 0.01, 0 +adjustedEtbTarget0 = scalar, S08, 1718, "%", 1, 0 +state0 = scalar, U08, 1719, "", 1, 0 +; total TS size = 1720 +targetWithIdlePosition1 = scalar, F32, 1720, "per", 1,0 +trim1 = scalar, F32, 1724, "", 1, 0 +luaAdjustment1 = scalar, F32, 1728, "per", 1,0 +m_wastegatePosition1 = scalar, F32, 1732, "per", 1,0 +etbFeedForward1 = scalar, F32, 1736 +etbIntegralError1 = scalar, F32, 1740, "", 1, 0 +etbCurrentTarget1 = scalar, F32, 1744, "%", 1, 0 +etbCurrentAdjustedTarget1 = scalar, F32, 1748, "%", 1, 0 +etbRevLimitActive1 = bits, U32, 1752, [0:0] +jamDetected1 = bits, U32, 1752, [1:1] +validPlantPosition1 = bits, U32, 1752, [2:2] +etbTpsErrorCounter1 = scalar, U16, 1756, "count", 1,0 +etbPpsErrorCounter1 = scalar, U16, 1758, "count", 1,0 +etbErrorCode1 = scalar, S08, 1760, "", 1, 0 +etbErrorCodeBlinker1 = scalar, S08, 1761, "", 1, 0 +tcEtbDrop1 = scalar, S08, 1762, "%", 1, 0 +jamTimer1 = scalar, U16, 1764, "sec", 0.01, 0 +adjustedEtbTarget1 = scalar, S08, 1766, "%", 1, 0 +state1 = scalar, U08, 1767, "", 1, 0 +; total TS size = 1768 +faultCode0 = scalar, U08, 1768, "", 1, 0 +heaterDuty0 = scalar, U08, 1769, "%", 1, 0 +pumpDuty0 = scalar, U08, 1770, "%", 1, 0 +tempC0 = scalar, U16, 1772, "C", 1, 0 +nernstVoltage0 = scalar, U16, 1774, "V", 0.001, 0 +esr0 = scalar, U16, 1776, "ohm", 1, 0 +; total TS size = 1780 +faultCode1 = scalar, U08, 1780, "", 1, 0 +heaterDuty1 = scalar, U08, 1781, "%", 1, 0 +pumpDuty1 = scalar, U08, 1782, "%", 1, 0 +tempC1 = scalar, U16, 1784, "C", 1, 0 +nernstVoltage1 = scalar, U16, 1786, "V", 0.001, 0 +esr1 = scalar, U16, 1788, "ohm", 1, 0 +; total TS size = 1792 +dcOutput0 = scalar, F32, 1792, "per", 1,0 +isEnabled0_int = scalar, U08, 1796, "per", 1,0 +isEnabled0 = bits, U32, 1800, [0:0] +; total TS size = 1804 +value0 = scalar, U16, 1804, "value", 1,0 +value1 = scalar, U16, 1806, "value", 1,0 +errorRate = scalar, F32, 1808, "ratio", 1,0 +; total TS size = 1812 +vvtTarget = scalar, U16, 1812, "deg", 0.1, 0 +vvtOutput = scalar, U08, 1814, "%", 0.5, 0 +; total TS size = 1816 +lambdaCurrentlyGood = bits, U32, 1816, [0:0] +lambdaMonitorCut = bits, U32, 1816, [1:1] +lambdaTimeSinceGood = scalar, U16, 1820, "sec", 0.01, 0 +; total TS size = 1824 + + + time = { timeNow } + + egoCorrectionForVeAnalyze = { 100 + fuelPidCorrection1 } + + wbo0_hasFault = { enableAemXSeries && ((faultCode0 >= 3) && (faultCode0 != 7)) } + +[PcVariables] + fuelUnits = bits, U08, [0:2], "kPa", "MAF", "%TPS", "Lua" + pwmAxisLabels = bits, U08, [0:4], "Zero", "TPS %", "MAP kPa", "CLT C", "IAT C", "Fuel Load", "Ignition Load", "Aux Temp 1 C", "Aux Temp 2 C", "Accel Pedal %", "Battery Voltage Volts", "VVT 1 I Deg", "VVT 1 E Deg", "VVT 2 I Deg", "VVT 2 E Deg", "Ethanol (Flex) %", "Aux Linear 1 *", "Aux Linear 2 *", "GPPWM Output 1 %", "GPPWM Output 2 %", "GPPWM Output 3 %", "GPPWM Output 4 %", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure kPa", "EGT 1 C", "EGT 2 C", "INVALID", "INVALID", "INVALID" + + tuneCrcPcVariable = continuousChannelValue, tuneCrc16 + + wueAfrTargetOffset = array, S16, [ 16], ":1", 0.1, 0.0, -3.0, 3.0, 1; + wueAnalRecommend = array, U08, [ 16], "%", 1.00, 0.0, 100, 255.00, 0 + + gearCountArray = array, S08, [10], "Gear", 1, 0, -1, { 10 - 2 }, 0, noMsqSave + solenoidCountArray = array, U08, [6], "Solenoid", 1, 0, 1, 6, 0, noMsqSave + + rangeInputArray = array, U08, [6], "Input", 1, 0, 0, 6, 0, noMsqSave + rangeStateArray = array, U08, [9], "State", 1, 0, 0, 9, 0, noMsqSave + +; wall of debug mode :) +; https://rusefi.com/wiki/index.php?title=Manual:Debug_fields +; Alternator TPS Acceleration Idle Engine Load Acc Trigger Counters VVT1 PID Cranking Ignition Timing Fu Corr VSS SD Card Knock Wall Wetting ETB PID Executor InstantRpm CJ125 CAN MAP TLE8888 Analog inputs 2 Start ETB Autotune DYNO_VIEW LOGIC_ANALYZER Wideband TCU Lua VVT2 PID VVT3 PID VVT4 PID +; 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 +; DBG_ALTERNATOR_PID DBG_TPS_ACCEL DBG_IDLE_CONTROL + debugFieldF1List = bits, U08, [0:7], "Alt: Controller Output", "From TPS", "", "Idle: Controller Output", "Idle output", " ", "", "VVT1: Controller Output"," ", "", "Ign IAT Corr", "", "", "Total SD", "last volts", "", "WW: Alpha", "ETB Controller Output", "", "", "df1", "df1", "InstantRpm", "", "24:df1", "CJ125: output", "", "MAP Average", "", "", "", "", "TPS1 Pri/Sec Diff", "", "", "", "","S unused" "", "Osc Amplitude", "", "", "", "" , "VSS", "", "WB: Pump DAC duty", "", "Lua Debug 1", "VVT2: Controller Output","VVT3: Controller Output","VVT4: Controller Output" + debugFieldF2List = bits, U08, [0:7], "Alt: I Term", "To TPS", "", "Idle: I Term", "Idle df2", " ", "", "VVT1: I Term", " ", "", "Ign CLT Corr", "", "", "Write Cnt","last filtered","", "WW: Beta", "ETB I Term", "", "", "df2", "df2", "InstantRPM Ratio","", "24:df2", "CJ125: i term", "", "MAP Duration", "", "", "", "", "TPS2 Pri/Sec Diff", "", "", "", "","S unused" "", "Duty Amplitude", "", "", "", "" , "Speed", "", "WB: ESR", "", "Lua Debug 2", "VVT2: I Term", "VVT3: I Term", "VVT4: I Term" + debugFieldF3List = bits, U08, [0:7], "Alt: Previous Error", "Current TPS<>TPS", "", "Idle: prev error", "Idle df3", "ICU sum", "", "VVT1: prev error", "", "", "", "", "", "Sync Cnt", "", "", "WW: film mass", "ETB err", "", "", "df3", "df3", "22df3", "", "24:df3", "CJ125: err", "", "MAP Fast", "", "", "", "", "TPS1/2 Diff", "", "", "", "","S unused" "", "Tu", "", "", "", "" , "DeltaSpeed", "", "WB: Nernst Voltage", "", "Lua Debug 3", "VVT2: prev error", "VVT3: prev error", "VVT4: prev error" + debugFieldF4List = bits, U08, [0:7], "Alt: I Gain", "Extra Fuel", "", "Idle: I Gain", "Idle df4", " ", "", "VVT1: I Gain", "", "", "Ign PID Adj", "", "", "File Cnt", "", "", "WW: m_cmd", "ETB I setting", "", "", "df4", "df4", "22df4", "", "24:df4", "CJ125: UA", "", "MAP Estimate", "", "", "", "", "Acc Pedal Pri/Sec Diff","", "", "", "","S unused" "", "Ku", "", "", "", "", "accel", "", "WB: Lambda", "", "Lua Debug 4", "VVT2: I Gain", "VVT3: I Gain", "VVT4: I Gain" + debugFieldF5List = bits, U08, [0:7], "Alt: D Gain", "df5", "", "Idle: D Gain", "Idle df5", " ", "df5", "VVT1: D Gain", "", "", "", "", "", "", "", "", "WW: film mass next","ETB D setting", "df5", "df5", "df5", "df5", "22df5", "", "24:df5", "CJ125: UR", "", "MAP Instant", "", "", "", "", "TPS1 Pri/Sec Ratio", "", "", "", "","S unused" "", "Kp", "", "", "", "", "", "", "", "", "Lua Debug 5", "VVT2: D Gain", "VVT3: D Gain", "VVT4: D Gain" + debugFieldF6List = bits, U08, [0:7], "Alt: D Term", "", "", "Idle: D Term", "Idle df6", " ", "", "VVT1: D Term", "", "", "", "", "", "", "", "", "", "ETB df6", "", "", "df6", "df6", "22df6", "", "24:df6", "cj: f7", "", "", "", "", "", "", "", "", "", "", "","S unused" "", "Ki", "", "", "", "", "", "", "", "", "Lua Debug 6", "VVT2: D Term", "VVT3: D Term", "VVT4: D Term" + debugFieldF7List = bits, U08, [0:7], "Alt: Max-Value", "", "", "Idle: Max-Value", "Idle df7", "", "", "VVT1: Max-Value", "", "", "", "", "", "", "", "", "", "ETB df7", "", "", "df7", "df7", "22df7", "", "24:df7", "cj: f7", "", "", "", "", "", "", "", "", "", "", "","S unused" "", "Kd", "", "", "", "", "", "", "", "", "Lua Debug 7", "", "", "" + debugFieldI1List = bits, U08, [0:7], "Alt: P Gain", "", "", "Idle: P Gain", "Idle di1", " ", "", "VVT1: P Gain", " ", "Cycle Counter", "Multispark Count", "", "", "", "hip corr", "", "", "ETB P-Gain", "t counter", "", "di1", "di1", "Spark Event Gap","", "24:di1", "CJ125: state", "read count","MAP counter", "", "", "", "SPI Counter", "", "", "", "", "","Start Count", "", "", "", "", "", "", "deltatime", "", "", "Solenoid 1 State", "Lua memory used","VVT2: P Gain", "VVT3: P Gain", "VVT4: P Gain" + debugFieldI2List = bits, U08, [0:7], "Alt: Offset", "", "", "Idle: Offset", "Idle di2", " ", "", "VVT1: Offset", "", "", "", "", "", "", "hip incor", "", "", "ETB di2", "invocationcounter", "", "di2", "di2", "Inj Event Gap", "", "24:di2", "", "write count","MAP raw ADC", "", "", "", "Latest Transmit","", "", "", "", "","Starter Enable", "", "", "", "", "", "", "", "", "", "Solenoid 2 State", "", "VVT2: Offset", "VVT3: Offset", "VVT4: Offset" + debugFieldI3List = bits, U08, [0:7], "Alt: Reset Cnt", "", "", "Idle: Reset Cnt", "Idle di3", " ", "", "VVT1: 10xTarget", "", "", "", "", "", "", "", "", "", "ETB di3", "s counter", "", "di3", "di3", "22di3", "", "24:di3", "", "write err", "", "", "", "", "Latest Received","", "", "", "", "","Starter Disable","", "", "", "", "", "", "", "", "", "Solenoid 3 State", "", "VVT2: 10xTarger", "VVT3: 10xTarger", "VVT4: 10xTarger" + debugFieldI4List = bits, U08, [0:7], "Alt: Period", "", "", "Idle: State", "Idle di4", "Cycle Cnt 1", "", "", "", "", "", "", "", "", "", "", "", "ETB di4", "executor", "", "di4", "di4", "22di4", "", "24:di4", "", "", "", "", "", "", "Init Count", "", "", "", "", "","" "", "", "", "", "", "", "", "", "", "Solenoid 4 State", "", "", "", "" + debugFieldI5List = bits, U08, [0:7], "", "", "", "", "Idle di5", "Cycle Cnt 2", "", "", "", "", "", "", "", "", "", "di5", "di5", "ETB di5", "max executor", "di5", "di5", "di5", "22di5", "di5", "di5", "di5", "di5", "di5", "", "di5", "di5", "di5", "", "di5", "di5", "di5", "","" "", "", "", "", "", "", "", "", "", "Solenoid 5 State", "", "", "", "" + + wboFaultCodeList = bits, U08, [0:3], "OK", "silent", "cranking", "failed to heat", "overheat", "underheat", "no supply", "legacy" + + injModeList = bits, U08, [0:3], "Simultaneous", "Sequential", "Batch", "Single Point" + ignModeList = bits, U08, [0:3], "Single Coil", "Sequential", "Wasted", "Two Coils" + +; ClearReason + fuelIgnCutCodeList = bits, U08, [0:7], "None", "fatal error", "setting disabled", "RPM limit", "fault RPM limit", "boost cut", "oil pressure", "stop requested", "ETB problem", "launch control", "max injector duty", "flood clear", "engine sync", "kickstart", "ign off", "Lua", "ACR", "Lambda Prot", "GDI Comms", "Brake" + +; TpsState + etbCutCodeList = bits, U08, [0:7], "None", "engine stopped", "TPS error", "PPS error", "TPS noise", "Autotune", "Lua", "INVALID", "N/A", "Redundancy", "PPS noise", "Jam" + + outputDiagErrorList = bits, U08, [0:3], "Not used", "No error", "Open Load", "Short to Gnd", "Short to Battery", "Overload", "Driver Overtemp", "Driver disabled", "Unknown" + + +[ConstantsExtensions] + ; defaultValue is used to provide TunerStudio with a value to use in the case of + ; the constant not yet being initialized. This is primarily important if the + ; constant is used as a variable in the ini. + ; defaultValue = constantName, value; + defaultValue = wueAfrTargetOffset, -1.5 -1.4 -1.15 -0.95 -0.775 -0.65 -0.5625 -0.5 -0.4375 -0.375 -0.3125 -0.25 -0.1875 -0.125 -0.0625 0 + + ; this magic is best described in output_channels.txt search for 'maintainConstantValue' + ; TPS 1 Primary + maintainConstantValue = tpsMax, { (calibrationMode == 1 ) ? calibrationValue : tpsMax } + maintainConstantValue = tpsMin, { (calibrationMode == 2 ) ? calibrationValue : tpsMin } + + ; TPS 1 Secondary + maintainConstantValue = tps1SecondaryMax, { (calibrationMode == 6 ) ? calibrationValue : tps1SecondaryMax } + maintainConstantValue = tps1SecondaryMin, { (calibrationMode == 7 ) ? calibrationValue : tps1SecondaryMin } + + ; TPS 2 Primary + maintainConstantValue = tps2Max, { (calibrationMode == 8 ) ? calibrationValue : tps2Max } + maintainConstantValue = tps2Min, { (calibrationMode == 9 ) ? calibrationValue : tps2Min } + + ; TPS 2 Secondary + maintainConstantValue = tps2SecondaryMax, { (calibrationMode == 10 ) ? calibrationValue : tps2SecondaryMax } + maintainConstantValue = tps2SecondaryMin, { (calibrationMode == 11 ) ? calibrationValue : tps2SecondaryMin } + + ; ETB Auto Gain Calibration + maintainConstantValue = etb_pFactor, { (calibrationMode == 3 ) ? calibrationValue : etb_pFactor } + maintainConstantValue = etb_iFactor, { (calibrationMode == 4 ) ? calibrationValue : etb_iFactor } + maintainConstantValue = etb_dFactor, { (calibrationMode == 5 ) ? calibrationValue : etb_dFactor } + + maintainConstantValue = throttlePedalUpVoltage, { (calibrationMode == 12 ) ? calibrationValue : throttlePedalUpVoltage } + maintainConstantValue = throttlePedalSecondaryUpVoltage, { (calibrationMode == 12 ) ? calibrationValue2 : throttlePedalSecondaryUpVoltage } + + maintainConstantValue = throttlePedalWOTVoltage, { (calibrationMode == 13 ) ? calibrationValue : throttlePedalWOTVoltage } + maintainConstantValue = throttlePedalSecondaryWOTVoltage, { (calibrationMode == 13 ) ? calibrationValue2 : throttlePedalSecondaryWOTVoltage } + + requiresPowerCycle = afr_hwChannel + requiresPowerCycle = afr_hwChannel2 + + requiresPowerCycle = gppwm1_pin + requiresPowerCycle = gppwm2_pin + requiresPowerCycle = gppwm3_pin + requiresPowerCycle = gppwm4_pin + requiresPowerCycle = mc33816_cs + requiresPowerCycle = mc33816_rstb + requiresPowerCycle = mc33816spiDevice + requiresPowerCycle = isSdCardEnabled + requiresPowerCycle = sdCardSpiDevice + requiresPowerCycle = sdCardCsPin + requiresPowerCycle = boardUseCanTerminator + requiresPowerCycle = injectorCompensationMode + requiresPowerCycle = lps25BaroSensorScl + requiresPowerCycle = lps25BaroSensorSda + requiresPowerCycle = binarySerialTxPin + requiresPowerCycle = binarySerialRxPin + requiresPowerCycle = tunerStudioSerialSpeed + + requiresPowerCycle = is_enabled_spi_1 + requiresPowerCycle = is_enabled_spi_2 + requiresPowerCycle = is_enabled_spi_3 + requiresPowerCycle = is_enabled_spi_4 + requiresPowerCycle = is_enabled_spi_5 + requiresPowerCycle = is_enabled_spi_6 + + requiresPowerCycle = canWriteEnabled + requiresPowerCycle = canReadEnabled + requiresPowerCycle = can1ListenMode + requiresPowerCycle = can2ListenMode + + requiresPowerCycle = startStopButtonPin + requiresPowerCycle = startStopButtonMode + + requiresPowerCycle = enableAemXSeries + requiresPowerCycle = enableAemXSeriesEgt + + requiresPowerCycle = etb_use_two_wires + requiresPowerCycle = etbSplit + requiresPowerCycle = etbFreq + requiresPowerCycle = etbFunctions1 + requiresPowerCycle = etbFunctions2 + + requiresPowerCycle = idle_solenoidFrequency + requiresPowerCycle = boostPwmFrequency + requiresPowerCycle = alternatorPwmFrequency + requiresPowerCycle = vvtOutputFrequency + requiresPowerCycle = vvtPins1 + requiresPowerCycle = vvtPins2 + requiresPowerCycle = vvtPins3 + requiresPowerCycle = vvtPins4 + + requiresPowerCycle = auxAnalogInputs1 + requiresPowerCycle = auxAnalogInputs2 + requiresPowerCycle = auxAnalogInputs3 + requiresPowerCycle = auxAnalogInputs4 + requiresPowerCycle = auxAnalogInputs5 + requiresPowerCycle = auxAnalogInputs6 + requiresPowerCycle = auxAnalogInputs7 + requiresPowerCycle = auxAnalogInputs8 + + requiresPowerCycle = cylinderBore + requiresPowerCycle = knockFrequency + + readOnly = warning_message + readOnly = device_uid1 + readOnly = device_uid2 + readOnly = device_uid3 + + + + defaultValue = gearCountArray, -1 0 1 2 3 4 5 6 7 8 + readOnly = gearCountArray + defaultValue = solenoidCountArray, 1 2 3 4 5 6 7 8 + readOnly = solenoidCountArray + + defaultValue = rangeStateArray, 0 1 2 3 4 5 6 7 8 + readOnly = rangeStateArray + defaultValue = rangeInputArray, 0 1 2 3 4 5 + readOnly = solenoidCountArray + +[CurveEditor] +; xAxis = leftValue, rightValue, step +; yAxis = bottomValue, topValue, step + + + + curve = knockThresholdCurve, "Engine knock threshold RPM based" + columnLabel = "RPM", "Threshold" + xAxis = 0, 8000, 9 + yAxis = 0, 8, 10 + xBins = knockNoiseRpmBins, RPMValue + yBins = knockBaseNoise + gauge = RPMGauge + + curve = scriptCurve1, "Script Curve #1" + columnLabel = "X", "Y" + xAxis = 0, 128, 10 + yAxis = -155, 150, 10 + xBins = scriptCurve1Bins + yBins = scriptCurve1 + showTextValues = true + + curve = scriptCurve2, "Script Curve #2" + columnLabel = "X", "Y" + xAxis = 0, 128, 10 + yAxis = -150, 150, 10 + xBins = scriptCurve2Bins + yBins = scriptCurve2 + showTextValues = true + + curve = scriptCurve3, "Script Curve #3" + columnLabel = "X", "Y" + xAxis = 0, 128, 10 + yAxis = -5, 5, 10 + xBins = scriptCurve3Bins + yBins = scriptCurve3 + showTextValues = true + + curve = scriptCurve4, "Script Curve #4" + columnLabel = "X", "Y" + xAxis = 0, 128, 10 + yAxis = -5, 5, 10 + xBins = scriptCurve4Bins + yBins = scriptCurve4 + showTextValues = true + + curve = scriptCurve5, "Script Curve #5" + columnLabel = "X", "Y" + xAxis = 0, 128, 10 + yAxis = -5, 5, 10 + xBins = scriptCurve5Bins + yBins = scriptCurve5 + showTextValues = true + + curve = scriptCurve6, "Script Curve #6" + columnLabel = "X", "Y" + xAxis = 0, 128, 10 + yAxis = -5, 5, 10 + xBins = scriptCurve6Bins + yBins = scriptCurve6 + showTextValues = true + + curve = dwellCorrection, "Dwell time base" + columnLabel = "RPM", "Dwell" + xAxis = 0, 8000, 9 + yAxis = 0, 8, 9 + xBins = sparkDwellRpmBins, RPMValue + yBins = sparkDwellValues + gauge = RPMGauge + + curve = dwellVoltageCorrection, "Dwell voltage correction" + columnLabel = "Battery Volts", "Multiplier" + xAxis = 6, 16, 11 + yAxis = 0, 3, 7 + xBins = dwellVoltageCorrVoltBins, VBatt + yBins = dwellVoltageCorrValues + gauge = VBattGauge + + curve = tpsTspRpmCorrection, "Transient RPM correction" + columnLabel = "RPM", "Multiplier" + xAxis = 0, 8000, 9 + yAxis = 0, 3, 7 + xBins = tpsTspCorrValuesBins, RPMValue + yBins = tpsTspCorrValues + gauge = RPMGauge + + curve = primingPulse, "Priming pulse fuel mass" + columnLabel = "Coolant", "Prime Pulse" + xAxis = -40, 120, 9 + yAxis = 0, 1000, 9 + xBins = primeBins, coolant + yBins = primeValues + gauge = CLTGauge + + curve = map_samplingAngleCurve, "MAP Sampling Start Angle" + columnLabel = "RPM", "Angle" + xAxis = 0, 8000, 9 + yAxis = 0, 180, 10 + xBins = map_samplingAngleBins, RPMValue + yBins = map_samplingAngle + gauge = MAPGauge + + curve = map_samplingWindowCurve, "MAP Sampling Duration" + columnLabel = "RPM", "Window" + xAxis = 0, 8000, 9 + yAxis = 0, 180, 10 + xBins = map_samplingWindowBins, RPMValue + yBins = map_samplingWindow + gauge = MAPGauge + + curve = injectorsDeadTime, "Injector dead time" + columnLabel = "Battery", "Dead Time" + xAxis = 6, 16, 11 + yAxis = 0, 8, 9 + xBins = injector_battLagCorrBins, VBatt + yBins = injector_battLagCorr + gauge = VBattGauge + + curve = injectorsSecondaryDeadTime, "Secondary injector dead time" + columnLabel = "Battery", "Dead Time" + xAxis = 6, 16, 11 + yAxis = 0, 8, 9 + xBins = injectorSecondary_battLagCorrBins, VBatt + yBins = injectorSecondary_battLagCorr + gauge = VBattGauge + + curve = vrThresholdCurve1, "VR 1 Threshold" + columnLabel = "RPM", "Voltage" + xAxis = 0, 8000, 9 + yAxis = 0, 2.5, 6 + xBins = vrThreshold1_rpmBins, RPMValue + yBins = vrThreshold1_values + + curve = vrThresholdCurve2, "VR 2 Threshold" + columnLabel = "RPM", "Voltage" + xAxis = 0, 8000, 9 + yAxis = 0, 2.5, 6 + xBins = vrThreshold2_rpmBins, RPMValue + yBins = vrThreshold2_values + + curve = mafDecodingCurve, "MAF sensor" + columnLabel = "Voltage", "kg/hour" + xAxis = -1, 6, 10 + yAxis = -30, 1300, 10 + xBins = mafDecodingBins, rawMaf + yBins = mafDecoding + gauge = rawMafGauge + + curve = iatFuelCorrCurve, "Intake air temperature fuel Multiplier" + topicHelp = "iatFuelCorrCurveHelp" + columnLabel = "Air Temp", "Multiplier" + xAxis = -40, 120, 9 + yAxis = 0, 2, 11 + xBins = iatFuelCorrBins, intake + yBins = iatFuelCorr + gauge = IATGauge + + curve = cltTimingCorrCurve, "Warmup timing correction" + columnLabel = "Coolant", "Extra" + xAxis = -40, 120, 9 + yAxis = 0, 20, 9 + xBins = cltTimingBins, coolant + yBins = cltTimingExtra + gauge = CLTGauge + + curve = cltFuelCorrCurve, "Warmup fuel manual Multiplier" + columnLabel = "Coolant", "Multiplier" + xAxis = -40, 120, 9 + yAxis = 0, 3, 10 + xBins = cltFuelCorrBins, coolant + yBins = cltFuelCorr + gauge = CLTGauge + + curve = cltBoostCorrCurve, "Coolant Temperature Boost Duty Multiplier" + columnLabel = "Coolant", "Multiplier" + xAxis = -40, 120, 9 + yAxis = 0, 3, 10 + xBins = cltBoostCorrBins, coolant + yBins = cltBoostCorr + gauge = CLTGauge + + curve = iatBoostCorrCurve, "Intake Air Temperature Boost Duty Multiplier" + columnLabel = "Air Temp", "Multiplier" + xAxis = -40, 120, 9 + yAxis = 0, 2, 11 + xBins = iatBoostCorrBins, intake + yBins = iatBoostCorr + gauge = IATGauge + + curve = cltBoostAdderCurve, "Coolant Temperature Boost Target Adder" + columnLabel = "Coolant", "Adder" + xAxis = -40, 120, 9 + yAxis = 0, 3, 10 + xBins = cltBoostAdderBins, coolant + yBins = cltBoostAdder + gauge = CLTGauge + + curve = iatBoostAdderCurve, "Intake Air Temperature Boost Target Adder" + columnLabel = "Air Temp", "Adder" + xAxis = -40, 120, 9 + yAxis = 0, 2, 11 + xBins = iatBoostAdderBins, intake + yBins = iatBoostAdder + gauge = IATGauge + + curve = crankingCltCurve, "Cranking Coolant Temperature Multiplier" + columnLabel = "Coolant", "Multiplier" + xAxis = -40, 120, 9 + yAxis = 0, 3, 10 + xBins = crankingFuelBins, coolant + yBins = crankingFuelCoef + gauge = CLTGauge + + curve = crankingCltCurveE100, "Cranking Coolant Temperature Multiplier (Flex Fuel E85)" + columnLabel = "Coolant", "Multiplier" + xAxis = -40, 120, 9 + yAxis = 0, 3, 10 + xBins = crankingFuelBins, coolant + yBins = crankingFuelCoefE100 + gauge = CLTGauge + + curve = cltRevLimitCurve, "" + columnLabel = "Coolant", "RPM Limit" + xAxis = -40, 120, 9 + yAxis = 0, 8000, 9 + xBins = cltRevLimitRpmBins, coolant + yBins = cltRevLimitRpm + gauge = CLTGauge + + curve = etbTpsBiasCurve, "Electronic TB Bias Curve" + columnLabel = "TPS", "duty bias" + xAxis = 0, 50, 11 + yAxis = -40, 40, 9 + xBins = etbBiasBins, TPSValue + yBins = etbBiasValues + gauge = TPSGauge + + curve = crankingTpsCurve, "Cranking TPS Multiplier" + columnLabel = "TPS", "Multiplier" + xAxis = 0, 100, 11 + yAxis = 0, 3, 10 + xBins = crankingTpsBins, TPSValue + yBins = crankingTpsCoef + gauge = TPSGauge + + curve = cltIdleCurve, "Warmup Idle multiplier" + columnLabel = "Coolant", "Multiplier" + xAxis = -40, 120, 10 + yAxis = 0, 3, 10 + xBins = cltIdleCorrBins, coolant + yBins = cltIdleCorr + gauge = CLTGauge + + curve = iacCoastingCurve, "Coasting IAC Position" + columnLabel = "RPM", "Multiplier" + xAxis = -40, 120, 9 + yAxis = 0, 100, 10 + xBins = iacCoastingRpmBins, RPMValue + yBins = iacCoasting + gauge = idleAirValvePositionGauge + + curve = cltCrankingCurve, "Cranking Idle Air multiplier" + columnLabel = "Coolant", "Multiplier" + xAxis = -40, 120, 9 + yAxis = 0, 3, 10 + xBins = cltCrankingCorrBins, coolant + yBins = cltCrankingCorr + gauge = CLTGauge + + curve = cltIdleRPMCurve, "Idle Target RPM" + columnLabel = "Coolant", "RPM" + xAxis = -40, 120, 9 + yAxis = 0, 2400, 13 + xBins = cltIdleRpmBins, coolant + yBins = cltIdleRpm, RPMValue + gauge = CLTGauge + + curve = idleAdvanceCurve, "Idle Advance Angle" + columnLabel = "RPM", "degrees" + xAxis = 0, 2400, 13 + yAxis = -100, 100, 11 + xBins = idleAdvanceBins, RPMValue + yBins = idleAdvance + gauge = RPMGauge + + curve = crankingAdvanceCurve, "Cranking Advance Angle" + columnLabel = "RPM", "degrees" + xAxis = 0, 1200, 13 + yAxis = -30, 30, 11 + xBins = crankingAdvanceBins, RPMValue + yBins = crankingAdvance + gauge = RPMGauge + + curve = fuelLevelCurve, "Fuel Level" + columnLabel = "Voltage", "%" + xAxis = 0, 5, 6 + yAxis = 0, 100, 11 + xBins = fuelLevelBins + yBins = fuelLevelValues + gauge = fuelTankLevelGauge + + curve = wueAfrTargetOffsetCurve, "AFR Target Temperature Adjustment" + columnLabel = "Coolant", "AFR Offset" + xAxis = -40, 200, 9 + yAxis = -3, 1, 5 + xBins = cltFuelCorrBins, coolant + yBins = wueAfrTargetOffset + gauge = cltGauge + + curve = wueAnalyzer_warmup_curve, "Warmup Enrichment" + columnLabel = "Coolant", "Current WUE", "Coolant", "Corrected" + xAxis = -40, 200, 9 + yAxis = 90, 500, 6 + xBins = cltFuelCorrBins, coolant + yBins = cltFuelCorr + yBins = wueAnalRecommend + ;gauge = cltGauge + + lineLabel = "Warmup Correction" + lineLabel = "Recommended WUE" + + curve = hpfpLobeProfileCurve, "HPFP Lobe Profile" + columnLabel = "% pump volume", "angle" + xAxis = 0, 100, 11 + yAxis = 0, 240, 13 + xBins = hpfpLobeProfileQuantityBins + yBins = hpfpLobeProfileAngle + + curve = hpfpDeadtimeCurve, "HPFP Valve Deadtime" + columnLabel = "volts", "ms" + xAxis = 5, 15, 11 + yAxis = 0, 5, 6 + xBins = hpfpDeadtimeVoltsBins + yBins = hpfpDeadtimeMS + + curve = wwTauCltCurve, "Evap time vs. CLT" + columnLabel = "coolant", "seconds" + xAxis = -40, 120, 9 + yAxis = 0, 2, 9 + xBins = wwCltBins, coolant + yBins = wwTauCltValues + gauge = CLTGauge + + curve = wwTauMapCurve, "Evap time vs. MAP" + columnLabel = "MAP", "mult" + xAxis = 0, 100, 5 + yAxis = 0, 2, 9 + xBins = wwMapBins, MAPValue + yBins = wwTauMapValues + gauge = MAPGauge + + curve = wwBetaCltCurve, "Impact fraction vs. CLT" + columnLabel = "coolant", "fraction" + xAxis = -40, 120, 9 + yAxis = 0, 2, 9 + xBins = wwCltBins, coolant + yBins = wwBetaCltValues + gauge = CLTGauge + + curve = wwBetaMapCurve, "Impact fraction vs. MAP" + columnLabel = "MAP", "mult" + xAxis = 0, 100, 5 + yAxis = 0, 2, 9 + xBins = wwMapBins, MAPValue + yBins = wwBetaMapValues + gauge = MAPGauge + + curve = tchargeCurve, "Charge temperature estimation coefficient" + columnLabel = "flow", "coefficient" + xAxis = 0, 500, 6 + yAxis = 0, 100, 5 + xBins = tchargeBins, mafEstimate + yBins = tchargeValues + gauge = tChargeGauge + + curve = tccLockCurve, "TCC Lock Curve" + columnLabel = "TPS", "Lock Speed", "Unlock Speed" + xAxis = 0, 100, 10 + yAxis = 0, 100, 10 + xBins = tcu_tccTpsBins, TPSValue + yBins = tcu_tccLockSpeed + yBins = tcu_tccUnlockSpeed + gauge = TPSGauge + +curve = shiftSpeedCurve, "Automatic Shift Points" + columnLabel = "Throttle", "" + xAxis = 0, 100, 10 + yAxis = 0, 200, 10 + xBins = tcu_shiftTpsBins, TPSValue + yBins = tcu_shiftSpeed12 + yBins = tcu_shiftSpeed23 + yBins = tcu_shiftSpeed34 + yBins = tcu_shiftSpeed21 + yBins = tcu_shiftSpeed32 + yBins = tcu_shiftSpeed43 + lineLabel = "1->2" + lineLabel = "2->3" + lineLabel = "3->4" + lineLabel = "2->1" + lineLabel = "3->2" + lineLabel = "4->3" + +curve = pcPerGearCurve, "Transmission Line Pressure Control" + columnLabel = "Airmass", "" + xAxis = 0, 5, 10 + yAxis = 0, 100, 10 + xBins = tcu_pcAirmassBins, mafEstimate + yBins = tcu_pcValsR + yBins = tcu_pcValsN + yBins = tcu_pcVals1 + yBins = tcu_pcVals2 + yBins = tcu_pcVals3 + yBins = tcu_pcVals4 + lineLabel = "R%" + lineLabel = "N%" + lineLabel = "1%" + lineLabel = "2%" + lineLabel = "3%" + lineLabel = "4%" + +curve = pcPerShiftCurve, "Transmission Line Pressure Control - Shift" + columnLabel = "Airmass", "" + xAxis = 0, 5, 10 + yAxis = 0, 100, 10 + xBins = tcu_pcAirmassBins, mafEstimate + yBins = tcu_pcVals12 + yBins = tcu_pcVals23 + yBins = tcu_pcVals34 + yBins = tcu_pcVals21 + yBins = tcu_pcVals32 + yBins = tcu_pcVals43 + lineLabel = "1->2%" + lineLabel = "2->3%" + lineLabel = "3->4%" + lineLabel = "2->1%" + lineLabel = "3->2%" + lineLabel = "4->3%" + +curve = 32Curve, "3-2 Shift Solenoid Percent by Speed" + columnLabel = "Speed", "%" + xAxis = 0, 200, 20 + yAxis = 0, 100, 10 + xBins = tcu_32SpeedBins, vehicleSpeedKph + yBins = tcu_32Vals + +curve = rangeMatrix, "Range Switch Input Matrix" + columnLabel = "Pin", "" + xAxis = 0, 6, 6 + yAxis = 0, 3, 3 + xBins = rangeInputArray + yBins = tcu_rangeP + yBins = tcu_rangeR + yBins = tcu_rangeN + yBins = tcu_rangeD + yBins = tcu_rangeM + yBins = tcu_rangeM3 + yBins = tcu_rangeM2 + yBins = tcu_rangeM1 + yBins = tcu_rangePlus + yBins = tcu_rangeMinus + yBins = tcu_rangeLow + lineLabel = "Park" + lineLabel = "Reverse" + lineLabel = "Neutral" + lineLabel = "Drive" + lineLabel = "Manual" + lineLabel = "Manual 3rd" + lineLabel = "Manual 2nd" + lineLabel = "Manual 1st" + lineLabel = "Manual +" + lineLabel = "Manual -" + lineLabel = "Low" + + curve = ignAdder1Bias, "Ignition adder 1 bias" + columnLabel = "param", "bias" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = ignBlends1_blendBins, ignBlendParameter1 + yBins = ignBlends1_blendValues + + curve = ignAdder2Bias, "Ignition adder 2 bias" + columnLabel = "param", "bias" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = ignBlends2_blendBins, ignBlendParameter2 + yBins = ignBlends2_blendValues + + curve = ignAdder3Bias, "Ignition adder 3 bias" + columnLabel = "param", "bias" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = ignBlends3_blendBins, ignBlendParameter3 + yBins = ignBlends3_blendValues + + curve = ignAdder4Bias, "Ignition adder 4 bias" + columnLabel = "param", "bias" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = ignBlends4_blendBins, ignBlendParameter4 + yBins = ignBlends4_blendValues + + curve = veBlend1Bias, "VE blend 1 bias" + columnLabel = "param", "bias" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = veBlends1_blendBins, veBlendParameter1 + yBins = veBlends1_blendValues + + curve = veBlend2Bias, "VE blend 2 bias" + columnLabel = "param", "bias" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = veBlends2_blendBins, veBlendParameter2 + yBins = veBlends2_blendValues + + curve = veBlend3Bias, "VE blend 3 bias" + columnLabel = "param", "bias" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = veBlends3_blendBins, veBlendParameter3 + yBins = veBlends3_blendValues + + curve = veBlend4Bias, "VE blend 4 bias" + columnLabel = "param", "bias" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = veBlends4_blendBins, veBlendParameter4 + yBins = veBlends4_blendValues + + curve = boostOpenLoopBlend1Bias, "Boost open loop blend 1 bias" + columnLabel = "param", "bias" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = boostOpenLoopBlends1_blendBins, boostOpenLoopBlendParameter1 + yBins = boostOpenLoopBlends1_blendValues + + curve = boostOpenLoopBlend2Bias, "Boost open loop blend 2 bias" + columnLabel = "param", "bias" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = boostOpenLoopBlends2_blendBins, boostOpenLoopBlendParameter2 + yBins = boostOpenLoopBlends2_blendValues + + curve = boostClosedLoopBlend1Bias, "Boost Closed loop blend 1 bias" + columnLabel = "param", "bias" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = boostClosedLoopBlends1_blendBins, boostClosedLoopBlendParameter1 + yBins = boostClosedLoopBlends1_blendValues + + curve = boostClosedLoopBlend2Bias, "Boost Closed loop blend 2 bias" + columnLabel = "param", "bias" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = boostClosedLoopBlends2_blendBins, boostClosedLoopBlendParameter2 + yBins = boostClosedLoopBlends2_blendValues + + curve = throttleEffectiveArea, "Throttle effective area" + columnLabel = "TPS", "normalized flow" + xAxis = 0, 100, 11 + yAxis = 0, 2, 5 + xBins = throttleEstimateEffectiveAreaBins, TPSValue + yBins = throttleEstimateEffectiveAreaValues + gauge = TPSGauge + + curve = boostOpenLoopGearAdderCurve, "Boost Open Loop gear-based modifier" + columnLabel = "Gear", "duty cycle" + xAxis = 0, 100, 11 + yAxis = 0, 100, 5 + xBins = gearCountArray, tcuCurrentGear + yBins = gearBasedOpenLoopBoostAdder + + curve = minimumOilPressure, "Minimum oil pressure" + columnLabel = "RPM", "min pressure" + xAxis = 0, 8000, 9 + yAxis = 0, 500, 6 + xBins = minimumOilPressureBins, RPMValue + yBins = minimumOilPressureValues + gauge = OilPressGauge + + +[TableEditor] + ; table_id, map3d_id, "title", page + + +; move table into a panel? or find a way to add a link to https://rusefi.com/s/tpstps https://github.com/rusefi/rusefi/issues/5130 + table = tpsTpsAccelTbl, tpsTpsAccelMap, "TPS/TPS Acceleration Extra Fuel(ms)", 1 + topicHelp = "tpstpsHelp" + xBins = tpsTpsAccelFromRpmBins, tpsFrom + yBins = tpsTpsAccelToRpmBins, tpsTo + zBins = tpsTpsAccelTable + + table = tractionEtbTableTbl, tractionEtb, "Traction Control ETB drop", 1 + xBins = tractionControlSpeedBins, vehicleSpeedKph + yBins = tractionControlSlipBins, wheelSlipRatio + zBins = tractionControlEtbDrop + + table = tractionTimingTableTbl, tractionEtb, "Traction Control Timing drop", 1 + xBins = tractionControlSpeedBins, vehicleSpeedKph + yBins = tractionControlSlipBins, wheelSlipRatio + zBins = tractionControlTimingDrop + + table = tractionIgnitionSkipTableTbl, tractionEtb, "Traction Control Skip Ignition", 1 + xBins = tractionControlSpeedBins, vehicleSpeedKph + yBins = tractionControlSlipBins, wheelSlipRatio + zBins = tractionControlIgnitionSkip + + table = boostTableTbl, boostMapOpen, "Boost control duty cycle (open loop)", 1 + xyLabels = "RPMValue", {bitStringValue(pwmAxisLabels, boostOpenLoopYAxis)} + xBins = boostRpmBins, RPMValue + yBins = boostLoadBins, TPSValue + zBins = boostTableOpenLoop + + table = boostClosedTbl, boostMapClosed, "Boost control target / Closed Loop (kPa)", 1 + xBins = boostRpmBins, RPMValue + yBins = boostLoadBins, TPSValue + zBins = boostTableClosedLoop + + table = vvtTable1Tbl, vvtTable1Map, "Intake VVT closed loop Target", 1 + xBins = vvtTable1RpmBins, RPMValue + yBins = vvtTable1LoadBins, fuelingLoad + zBins = vvtTable1 + + table = vvtTable2Tbl, vvtTable2Map, "Exhaust VVT closed loop Target", 1 + xBins = vvtTable2RpmBins, RPMValue + yBins = vvtTable2LoadBins, fuelingLoad + zBins = vvtTable2 + + + table = scriptTable1Tbl, scriptTable1Map, "Script Table #1", 1 + xBins = scriptTable1RpmBins, RPMValue + yBins = scriptTable1LoadBins, fuelingLoad + zBins = scriptTable1 + + table = scriptTable2Tbl, scriptTable2Map, "Script Table #2", 1 + xBins = scriptTable2RpmBins, RPMValue + yBins = scriptTable2LoadBins, fuelingLoad + zBins = scriptTable2 + + table = scriptTable3Tbl, scriptTable3Map, "Script Table #3", 1 + xBins = scriptTable3RpmBins, RPMValue + yBins = scriptTable3LoadBins, fuelingLoad + zBins = scriptTable3 + + table = scriptTable4Tbl, scriptTable4Map, "Script Table #4", 1 + xBins = scriptTable4RpmBins, RPMValue + yBins = scriptTable4LoadBins, fuelingLoad + zBins = scriptTable4 + + table = IgnRetardTableALS, IgnRetardALS, "Ignition adjustment", 1 + xBins = alsIgnRetardrpmBins, RPMValue + yBins = alsIgnRetardLoadBins, TPSValue + zBins = ALSTimingRetardTable + gridHeight = 4.0 + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + upDownLabel = "(RICHER)", "(LEANER)" + + table = FuelAdderTableALS, FuelAdderALS, "Fuel adjustment", 1 + xBins = alsFuelAdjustmentrpmBins, RPMValue + yBins = alsFuelAdjustmentLoadBins, TPSValue + zBins = ALSFuelAdjustment + gridHeight = 4.0 + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + upDownLabel = "(RICHER)", "(LEANER)" + + table = IgnSkipTableALS, IgnSkipALS, "Ignition Skip", 1 + ; constant, variable + xBins = alsIgnSkiprpmBins, RPMValue + yBins = alsIgnSkipLoadBins, TPSValue + zBins = ALSIgnSkipTable + gridHeight = 4.0 + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + upDownLabel = "(RICHER)", "(LEANER)" + + table = baroCorrTbl, baroCorrMap, "Baro Correction", 1 + xyLabels = "RPM", "Ignition Load" + xBins = baroCorrRpmBins, RPMValue + yBins = baroCorrPressureBins, baroPressure + zBins = baroCorrTable + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + upDownLabel = "(RICHER)", "(LEANER)" + + table = ignitionTableTbl, ignitionTableMap, "Ignition Table", 1 + xyLabels = "RPM", "Ignition Load" + xBins = ignitionRpmBins, RPMValue + yBins = ignitionLoadBins, ignitionLoad + zBins = ignitionTable + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + upDownLabel = "(RICHER)", "(LEANER)" + + table = ignAdder1Table, ignAdder1Map, "Ignition adder 1", 1 + xyLabels = "RPM", "Ignition Load" + xBins = ignBlends1_rpmBins, RPMValue + yBins = ignBlends1_loadBins, ignitionLoad + zBins = ignBlends1_table + gridOrient = 250, 0, 340 + + table = ignAdder2Table, ignAdder2Map, "Ignition adder 2", 1 + xyLabels = "RPM", "Ignition Load" + xBins = ignBlends2_rpmBins, RPMValue + yBins = ignBlends2_loadBins, ignitionLoad + zBins = ignBlends2_table + gridOrient = 250, 0, 340 + + table = ignAdder3Table, ignAdder3Map, "Ignition adder 3", 1 + xyLabels = "RPM", "Ignition Load" + xBins = ignBlends3_rpmBins, RPMValue + yBins = ignBlends3_loadBins, ignitionLoad + zBins = ignBlends3_table + gridOrient = 250, 0, 340 + + table = ignAdder4Table, ignAdder4Map, "Ignition adder 4", 1 + xyLabels = "RPM", "Ignition Load" + xBins = ignBlends4_rpmBins, RPMValue + yBins = ignBlends4_loadBins, ignitionLoad + zBins = ignBlends4_table + gridOrient = 250, 0, 340 + + table = veBlend1Table, veBlend1Map, "VE blend 1", 1 + xyLabels = "RPM", "Fueling Load" + xBins = veBlends1_rpmBins, RPMValue + yBins = veBlends1_loadBins, fuelingLoad + zBins = veBlends1_table + gridOrient = 250, 0, 340 + + table = veBlend2Table, veBlend2Map, "VE blend 2", 1 + xyLabels = "RPM", "Fueling Load" + xBins = veBlends2_rpmBins, RPMValue + yBins = veBlends2_loadBins, fuelingLoad + zBins = veBlends2_table + gridOrient = 250, 0, 340 + + table = veBlend3Table, veBlend3Map, "VE blend 3", 1 + xyLabels = "RPM", "Fueling Load" + xBins = veBlends3_rpmBins, RPMValue + yBins = veBlends3_loadBins, fuelingLoad + zBins = veBlends3_table + gridOrient = 250, 0, 340 + + table = veBlend4Table, veBlend4Map, "VE blend 4", 1 + xyLabels = "RPM", "Fueling Load" + xBins = veBlends4_rpmBins, RPMValue + yBins = veBlends4_loadBins, fuelingLoad + zBins = veBlends4_table + gridOrient = 250, 0, 340 + + table = boostOpenBlend1Table, boostOpenBlend1Map, "Boost open loop blend 1", 1 + xyLabels = "RPM", "TPS" + xBins = boostOpenLoopBlends1_rpmBins, RPMValue + yBins = boostOpenLoopBlends1_loadBins, TPSValue + zBins = boostOpenLoopBlends1_table + gridOrient = 250, 0, 340 + + table = boostOpenBlend2Table, boostOpenBlend2Map, "Boost open loop blend 2", 1 + xyLabels = "RPM", "TPS" + xBins = boostOpenLoopBlends2_rpmBins, RPMValue + yBins = boostOpenLoopBlends2_loadBins, TPSValue + zBins = boostOpenLoopBlends2_table + gridOrient = 250, 0, 340 + + table = boostClosedBlend1Table, boostClosedBlend1Map, "Boost closed loop blend 1", 1 + xyLabels = "RPM", "TPS" + xBins = boostClosedLoopBlends1_rpmBins, RPMValue + yBins = boostClosedLoopBlends1_loadBins, TPSValue + zBins = boostClosedLoopBlends1_table + gridOrient = 250, 0, 340 + + table = boostClosedBlend2Table, boostClosedBlend2Map, "Boost closed loop blend 2", 1 + xyLabels = "RPM", "TPS" + xBins = boostClosedLoopBlends2_rpmBins, RPMValue + yBins = boostClosedLoopBlends2_loadBins, TPSValue + zBins = boostClosedLoopBlends2_table + gridOrient = 250, 0, 340 + + table = ignitionIatCorrTableTbl, ignitionIatCorrTableMap, "Ignition Intake Air Temp correction", 1 + xyLabels = "Air Temp", "Ignition Load" + xBins = ignitionIatCorrTempBins, intake + yBins = ignitionIatCorrLoadBins, ignitionLoad + zBins = ignitionIatCorrTable +; gridHeight = 2.0 + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + upDownLabel = "(RICHER)", "(LEANER)" + + table = torqueTableTbl, torqueTableMap, "Engine Torque", 1 + xBins = torqueRpmBins, RPMValue + yBins = torqueLoadBins, veTableYAxis + zBins = torqueTable + + table = veTableTbl, veTableMap, "VE Table", 1 + xyLabels = "RPM", "load" + xBins = veRpmBins, RPMValue + yBins = veLoadBins, veTableYAxis + zBins = veTable +; gridHeight = 2.0 + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + upDownLabel = "(RICHER)", "(LEANER)" + + table = idleVeTableTbl, idleVeTable, "Idle VE" + xyLabels = "RPM", "load" + xBins = idleVeRpmBins, RPMValue + yBins = idleVeLoadBins, veTableYAxis + zBins = idleVeTable + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTbl1, fuelTrimMap1, "Fuel trim cyl 1", 1 + xBins = fuelTrimRpmBins, RPMValue + yBins = fuelTrimLoadBins, veTableYAxis + zBins = fuelTrims1_table + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTbl2, fuelTrimMap2, "Fuel trim cyl 2", 1 + xBins = fuelTrimRpmBins, RPMValue + yBins = fuelTrimLoadBins, veTableYAxis + zBins = fuelTrims2_table + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTbl3, fuelTrimMap3, "Fuel trim cyl 3", 1 + xBins = fuelTrimRpmBins, RPMValue + yBins = fuelTrimLoadBins, veTableYAxis + zBins = fuelTrims3_table + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTbl4, fuelTrimMap4, "Fuel trim cyl 4", 1 + xBins = fuelTrimRpmBins, RPMValue + yBins = fuelTrimLoadBins, veTableYAxis + zBins = fuelTrims4_table + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTbl5, fuelTrimMap5, "Fuel trim cyl 5", 1 + xBins = fuelTrimRpmBins, RPMValue + yBins = fuelTrimLoadBins, veTableYAxis + zBins = fuelTrims5_table + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTbl6, fuelTrimMap6, "Fuel trim cyl 6", 1 + xBins = fuelTrimRpmBins, RPMValue + yBins = fuelTrimLoadBins, veTableYAxis + zBins = fuelTrims6_table + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTbl7, fuelTrimMap7, "Fuel trim cyl 7", 1 + xBins = fuelTrimRpmBins, RPMValue + yBins = fuelTrimLoadBins, veTableYAxis + zBins = fuelTrims7_table + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTbl8, fuelTrimMap8, "Fuel trim cyl 8", 1 + xBins = fuelTrimRpmBins, RPMValue + yBins = fuelTrimLoadBins, veTableYAxis + zBins = fuelTrims8_table + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTbl9, fuelTrimMap9, "Fuel trim cyl 9", 1 + xBins = fuelTrimRpmBins, RPMValue + yBins = fuelTrimLoadBins, veTableYAxis + zBins = fuelTrims9_table + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTbl10, fuelTrimMap10, "Fuel trim cyl 10", 1 + xBins = fuelTrimRpmBins, RPMValue + yBins = fuelTrimLoadBins, veTableYAxis + zBins = fuelTrims10_table + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTbl11, fuelTrimMap11, "Fuel trim cyl 11", 1 + xBins = fuelTrimRpmBins, RPMValue + yBins = fuelTrimLoadBins, veTableYAxis + zBins = fuelTrims11_table + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTbl12, fuelTrimMap12, "Fuel trim cyl 12", 1 + xBins = fuelTrimRpmBins, RPMValue + yBins = fuelTrimLoadBins, veTableYAxis + zBins = fuelTrims12_table + upDownLabel = "(RICHER)", "(LEANER)" + + table = ignTrimTbl1, ignTrimMap1, "Ign trim cyl 1", 1 + xBins =ignTrimRpmBins, RPMValue + yBins =ignTrimLoadBins, ignitionLoad + zBins =ignTrims1_table + + table = ignTrimTbl2, ignTrimMap2, "Ign trim cyl 2", 1 + xBins =ignTrimRpmBins, RPMValue + yBins =ignTrimLoadBins, ignitionLoad + zBins =ignTrims2_table + + table = ignTrimTbl3, ignTrimMap3, "Ign trim cyl 3", 1 + xBins =ignTrimRpmBins, RPMValue + yBins =ignTrimLoadBins, ignitionLoad + zBins =ignTrims3_table + + table = ignTrimTbl4, ignTrimMap4, "Ign trim cyl 4", 1 + xBins =ignTrimRpmBins, RPMValue + yBins =ignTrimLoadBins, ignitionLoad + zBins =ignTrims4_table + + table = ignTrimTbl5, ignTrimMap5, "Ign trim cyl 5", 1 + xBins =ignTrimRpmBins, RPMValue + yBins =ignTrimLoadBins, ignitionLoad + zBins =ignTrims5_table + + table = ignTrimTbl6, ignTrimMap6, "Ign trim cyl 6", 1 + xBins =ignTrimRpmBins, RPMValue + yBins =ignTrimLoadBins, ignitionLoad + zBins =ignTrims6_table + + table = ignTrimTbl7, ignTrimMap7, "Ign trim cyl 7", 1 + xBins =ignTrimRpmBins, RPMValue + yBins =ignTrimLoadBins, ignitionLoad + zBins =ignTrims7_table + + table = ignTrimTbl8, ignTrimMap8, "Ign trim cyl 8", 1 + xBins =ignTrimRpmBins, RPMValue + yBins =ignTrimLoadBins, ignitionLoad + zBins =ignTrims8_table + + table = ignTrimTbl9, ignTrimMap9, "Ign trim cyl 9", 1 + xBins =ignTrimRpmBins, RPMValue + yBins =ignTrimLoadBins, ignitionLoad + zBins =ignTrims9_table + + table = ignTrimTbl10, ignTrimMap10, "Ign trim cyl 10", 1 + xBins = ignTrimRpmBins, RPMValue + yBins = ignTrimLoadBins, ignitionLoad + zBins = ignTrims10_table + + table = ignTrimTbl11, ignTrimMap11, "Ign trim cyl 11", 1 + xBins = ignTrimRpmBins, RPMValue + yBins = ignTrimLoadBins, ignitionLoad + zBins = ignTrims11_table + + table = ignTrimTbl12, ignTrimMap12, "Ign trim cyl 12", 1 + xBins = ignTrimRpmBins, RPMValue + yBins = ignTrimLoadBins, ignitionLoad + zBins = ignTrims12_table + + table = mapEstimateTableTbl, mapEstimateTableMap, "MAP Estimate", 1 + xBins = mapEstimateRpmBins, RPMValue + yBins = mapEstimateTpsBins, TPSValue + zBins = mapEstimateTable + + table = injPhaseTableTbl, injPhaseTableMap, "Injection Phase", 1 + topicHelp = "fuelHelp" + xBins = injPhaseRpmBins, RPMValue + yBins = injPhaseLoadBins, fuelingLoad + zBins = injectionPhase +; gridHeight = 2.0 + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + upDownLabel = "(Later)", "(Sooner)" + + table = pedalToTpsTbl, pedalToTpsMap, "ETB Pedal to TPS", 1 + xBins = pedalToTpsRpmBins, RPMValue + yBins = pedalToTpsPedalBins, throttlePedalPosition + zBins = pedalToTpsTable +; gridHeight = 2.0 + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + upDownLabel = "(Later)", "(Sooner)" + + table = throttle2TrimTbl, throttle2TrimMap, "ETB #2 Trim", 1 + xBins = throttle2TrimRpmBins, RPMValue + yBins = throttle2TrimTpsBins, TPSValue + zBins = throttle2TrimTable + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + + table = maxKnockRetardTbl, maxKnockRetardMap, "Max knock retard", 1 + xBins = maxKnockRetardRpmBins, RPMValue + yBins = maxKnockRetardLoadBins, TPSValue + zBins = maxKnockRetardTable + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + +#if LAMBDA + table = lambdaTableTbl, lambdaTableMap, "Target Lambda Table", 1 +#else + table = afrTableTbl, afrTableMap, "Target AFR Table", 1 +#endif + xBins = lambdaRpmBins, RPMValue + yBins = lambdaLoadBins, afrTableYAxis + zBins = lambdaTable +; gridHeight = 2.0 + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + upDownLabel = "(RICHER)", "(LEANER)" + + table = lambdaMaxDeviationTableTbl, lambdaMaxDeviationTableMap, "Maximum Lambda Deviation", 1 + xyLabels = "RPM", "" + xBins = lambdaMaxDeviationRpmBins, RPMValue + yBins = lambdaMaxDeviationLoadBins, afrTableYAxis + zBins = lambdaMaxDeviationTable + + table = iacPidMultTbl, iacPidMultMap, "IAC PID Multiplier Table", 1 + xBins = iacPidMultRpmBins, RPMValue + yBins = iacPidMultLoadBins, fuelingLoad + zBins = iacPidMultTable +; gridHeight = 2.0 + gridOrient = 250, 0, 340 ; Space 123 rotation of grid in degrees. + upDownLabel = "(Later)", "(Sooner)" + + table = gppwm1Tbl, gppwm1Map, "GP#1", 1 + xyLabels = {bitStringValue(pwmAxisLabels, gppwm1_rpmAxis)}, {bitStringValue(pwmAxisLabels, gppwm1_loadAxis)} + xBins = gppwm1_rpmBins, gppwmXAxis1 + yBins = gppwm1_loadBins, gppwmYAxis1 + zBins = gppwm1_table + + table = gppwm2Tbl, gppwm2Map, "GP#2", 1 + xyLabels = {bitStringValue(pwmAxisLabels, gppwm2_rpmAxis)}, {bitStringValue(pwmAxisLabels, gppwm2_loadAxis)} + xBins = gppwm2_rpmBins, gppwmXAxis2 + yBins = gppwm2_loadBins, gppwmYAxis2 + zBins = gppwm2_table + + table = gppwm3Tbl, gppwm3Map, "GP#3", 1 + xyLabels = {bitStringValue(pwmAxisLabels, gppwm3_rpmAxis)}, {bitStringValue(pwmAxisLabels, gppwm3_loadAxis)} + xBins = gppwm3_rpmBins, gppwmXAxis3 + yBins = gppwm3_loadBins, gppwmYAxis3 + zBins = gppwm3_table + + table = gppwm4Tbl, gppwm4Map, "GP#4", 1 + xyLabels = {bitStringValue(pwmAxisLabels, gppwm4_rpmAxis)}, {bitStringValue(pwmAxisLabels, gppwm4_loadAxis)} + xBins = gppwm4_rpmBins, gppwmXAxis4 + yBins = gppwm4_loadBins, gppwmYAxis4 + zBins = gppwm4_table + + table = stagedInjectionTbl, stagedInjectionMap, "Staged Injection %", 1 + xyLabels = "RPM", "" + xBins = injectorStagingRpmBins, RPMValue + yBins = injectorStagingLoadBins, afrTableYAxis + zBins = injectorStagingTable + + table = tcuSolenoidTableTbl, tcuSolenoidTableMap, "Solenoids Active By Gear", 1 + xBins = gearCountArray, tcuCurrentGear + yBins = solenoidCountArray, tcuCurrentGear + zBins = tcuSolenoidTable + xyLabels = "Gear", "Solenoid" + + table = hpfpTargetTable, hpfpTargetTableId, "HPFP Target Fuel Pressure", 1 + xBins = hpfpTargetRpmBins, RPMValue + yBins = hpfpTargetLoadBins, veTableYAxis + zBins = hpfpTarget + + table = hpfpCompensationTable, hpfpCompensationTableId, "HPFP Pump Compensation Factor", 1 + xBins = hpfpCompensationRpmBins, RPMValue + yBins = hpfpCompensationLoadBins, running_fuel + zBins = hpfpCompensation + + table = postCrankingEnrichmentTbl, postCrankingEnrichmentMap, "After start enrichment", 1 + xyLabels = "Engine Cycles", "Coolant Temp" + xBins = postCrankingDurationBins, revolutionCounterSinceStart + yBins = postCrankingCLTBins, coolant + zBins = postCrankingFactor + + table = crankingCycleFuelMultTbl, crankingCycleFuelMultMap, "Cranking Cycle Multiplier", 1 + xyLabels = "Engine Cycles", "Coolant Temp" + xBins = crankingCycleBins, revolutionCounterSinceStart + yBins = crankingCycleFuelCltBins, coolant + zBins = crankingCycleFuelCoef + + table = alternatorVoltageTargetTableTbl, alternatorVoltageTargetTableMap, "Alternator Voltage Target Table", 1 + xBins = alternatorVoltageTargetRpmBins, RPMValue + yBins = alternatorVoltageTargetLoadBins, ignitionLoad + zBins = alternatorVoltageTargetTable + +[GaugeConfigurations] + gaugeCategory = "Sync" +triggerVvt2FallGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0 +triggerVvt2RiseGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0.0,3000.0, 0.0,3000.0, 0.0,3000.0, 0,0 +currentEngineDecodedPhaseGauge = currentEngineDecodedPhase,"Sync: Engine Phase", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0 + gaugeCategory = "Fuel: math" +totalFuelCorrectionGauge = totalFuelCorrection,"Fuel: Total correction", "mult", 0.0,3.0, 0.0,3.0, 0.0,3.0, 2,2 +running_timeSinceCrankingInSecsGauge = running_timeSinceCrankingInSecs,"running_ timeSinceCrankingInSecs", "secs", 0.0,600000.0, 0.0,600000.0, 0.0,600000.0, 0,0 +targetLambdaGauge = targetLambda,"Fuel: target lambda", "", 0.5,1.5, 0.5,1.5, 0.5,1.5, 2,2 +targetAFRGauge = targetAFR,"Fuel: target AFR", "ratio", 10.0,20.0, 10.0,20.0, 10.0,20.0, 2,2 + gaugeCategory = "Timing" +baseDwellGauge = baseDwell,"Ignition: base dwell", "ms", 0.0,30.0, 0.0,30.0, 0.0,30.0, 1,1 +sparkDwellGauge = sparkDwell,"Ignition: coil charge time", "ms", 0.0,30.0, 0.0,30.0, 0.0,30.0, 1,1 +dwellDurationAngleGauge = dwellDurationAngle,"Ignition: dwell duration", "deg", 0.0,120.0, 0.0,120.0, 0.0,120.0, 1,1 +cltTimingCorrectionGauge = cltTimingCorrection,"Ign: CLT correction", "deg", -20.0,20.0, -20.0,20.0, -20.0,20.0, 2,2 +timingIatCorrectionGauge = timingIatCorrection,"Ign: IAT correction", "deg", -20.0,20.0, -20.0,20.0, -20.0,20.0, 2,2 +timingPidCorrectionGauge = timingPidCorrection,"Idle: Timing adjustment", "deg", -20.0,20.0, -20.0,20.0, -20.0,20.0, 2,2 +luaTimingAddGauge = luaTimingAdd,"Ign: Lua timing add", "deg", -20.0,20.0, -20.0,20.0, -20.0,20.0, 2,2 +luaTimingMultGauge = luaTimingMult,"Ign: Lua timing mult", "deg", -20.0,20.0, -20.0,20.0, -20.0,20.0, 2,2 + gaugeCategory = "Boost Control" +luaTargetAddGauge = luaTargetAdd,"Boost: Lua target add", "v", -100.0,100.0, -100.0,100.0, -100.0,100.0, 1,1 +boostOutputGauge = boostOutput,"Boost: Output", "percent", -100.0,100.0, -100.0,100.0, -100.0,100.0, 2,2 +luaTargetMultGauge = luaTargetMult,"Boost: Lua target mult", "v", -100.0,100.0, -100.0,100.0, -100.0,100.0, 1,1 +openLoopPartGauge = openLoopPart,"Boost: Open loop", "v", -100.0,100.0, -100.0,100.0, -100.0,100.0, 1,1 +luaOpenLoopAddGauge = luaOpenLoopAdd,"Boost: Lua open loop add", "v", -100.0,100.0, -100.0,100.0, -100.0,100.0, 1,1 +boostControllerClosedLoopPartGauge = boostControllerClosedLoopPart,"Boost: Closed loop", "%", -50.0,50.0, -50.0,50.0, -50.0,50.0, 1,1 +boostControlTargetGauge = boostControlTarget,"Boost: Target", "kPa", 0.0,300.0, 0.0,300.0, 0.0,300.0, 1,1 + gaugeCategory = "ETB more" +targetWithIdlePosition0Gauge = targetWithIdlePosition0,"ETB: target with idle0", "per", 0.0,10.0, 0.0,10.0, 0.0,10.0, 2,2 +luaAdjustment0Gauge = luaAdjustment0,"ETB: luaAdjustment0", "per", 0.0,3.0, 0.0,3.0, 0.0,3.0, 2,2 +m_wastegatePosition0Gauge = m_wastegatePosition0,"DC: wastegatePosition0", "per", 0.0,3.0, 0.0,3.0, 0.0,3.0, 2,2 +etbTpsErrorCounter0Gauge = etbTpsErrorCounter0,"ETB TPS error counter0", "count", 0.0,3.0, 0.0,3.0, 0.0,3.0, 0,0 +etbPpsErrorCounter0Gauge = etbPpsErrorCounter0,"ETB pedal error counter0", "count", 0.0,3.0, 0.0,3.0, 0.0,3.0, 0,0 +targetWithIdlePosition1Gauge = targetWithIdlePosition1,"ETB: target with idle1", "per", 0.0,10.0, 0.0,10.0, 0.0,10.0, 2,2 +luaAdjustment1Gauge = luaAdjustment1,"ETB: luaAdjustment1", "per", 0.0,3.0, 0.0,3.0, 0.0,3.0, 2,2 +m_wastegatePosition1Gauge = m_wastegatePosition1,"DC: wastegatePosition1", "per", 0.0,3.0, 0.0,3.0, 0.0,3.0, 2,2 +etbTpsErrorCounter1Gauge = etbTpsErrorCounter1,"ETB TPS error counter1", "count", 0.0,3.0, 0.0,3.0, 0.0,3.0, 0,0 +etbPpsErrorCounter1Gauge = etbPpsErrorCounter1,"ETB pedal error counter1", "count", 0.0,3.0, 0.0,3.0, 0.0,3.0, 0,0 +dcOutput0Gauge = dcOutput0,"DC: output0", "per", 0.0,10.0, 0.0,10.0, 0.0,10.0, 2,2 +isEnabled0_intGauge = isEnabled0_int,"DC: en0", "per", 0.0,10.0, 0.0,10.0, 0.0,10.0, 2,2 +value0Gauge = value0,"ETB: SENT value0", "value", 0.0,3.0, 0.0,3.0, 0.0,3.0, 0,0 +value1Gauge = value1,"ETB: SENT value1", "value", 0.0,3.0, 0.0,3.0, 0.0,3.0, 0,0 +errorRateGauge = errorRate,"ETB: SENT error rate", "ratio", 0.0,3.0, 0.0,3.0, 0.0,3.0, 2,2 + + + + ;Name Var Title Units Lo,Hi LowDanger,LowWarning,HiWarning,HiDanger vd,ld +gaugeCategory = Trigger + triggerErrorsCounterGauge = totalTriggerErrorCounter, "Trigger error count", "count", 0, 15000, 0, 0, 10, 300, 0, 0 + triggerSyncGapRatioGauge = triggerSyncGapRatio0,"triggerSyncGapRatio", "", -10000,10000, -10000,-10000, 10000,10000, 3,3 + triggerStateIndexGauge = triggerStateIndex0,"triggerStateIndex", "", -10000,10000, -10000,-10000, 10000,10000, 3,3 + vvtSyncGapRatioGauge = vvtSyncGapRatio0,"vvtSyncGapRatio", "", -10000,10000, -10000,-10000, 10000,10000, 3,3 + vvtStateIndexGauge = vvtStateIndex0,"vvtStateIndex", "", -10000,10000, -10000,-10000, 10000,10000, 3,3 + triggerPrimaryFallCounterGauge = triggerPrimaryFall,"triggerPrimaryFall", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3 + triggerPrimaryRiseCounterGauge = triggerPrimaryRise,"triggerPrimaryRise", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3 + triggerSecondaryFallCounterGauge = triggerSecondaryFall,"triggerSecondaryFall", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3 + triggerSecondaryRiseCounterGauge = triggerSecondaryRise,"triggerSecondaryRise", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3 + triggerVvtFallCounterGauge = triggerVvtFall,"triggerVvtFall", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3 + triggerVvtRiseCounterGauge = triggerVvtRise,"triggerVvtRise", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3 + triggerVvt2FallCounterGauge = triggerVvt2Fall,"triggerVvt2Fall", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3 + triggerVvt2RiseCounterGauge = triggerVvt2Rise,"triggerVvt2Rise", "", 0,10000.0, 0,10000.0, 0,10000.0, 3,3 + currentEnginePhaseGauge = currentEngineDecodedPhase, "Engine Phase", "deg", 0, 720, 0, 0, 720, 720, 0, 0 + +gaugeCategory = Test Bench + testBenchIterGauge = testBenchIter, "Test Bench Iterations", "count", -10, {benchTestCount + 10}, -5, 0, {benchTestCount}, {benchTestCount + 5}, 1, 1 + +gaugeCategory = LUA + luaInvocationCounterGauge = luaInvocationCounter,"luaInvocationCounter", "count", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0 + luaLastCycleDurationGauge = luaLastCycleDuration,"luaLastCycleDuration", "nt", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0 + luaGauges1gauge = luaGauges1, "Lua Gauge 1", "lua", -30000,30000, 0, 0, 30000, 30000, 3, 3 + luaGauges2gauge = luaGauges2, "Lua Gauge 2", "lua", -30000,30000, 0, 0, 30000, 30000, 3, 3 + luaGauges3gauge = luaGauges3, "Lua Gauge 3", "lua", -30000,30000, 0, 0, 30000, 30000, 3, 3 + luaGauges4gauge = luaGauges4, "Lua Gauge 4", "lua", -30000,30000, 0, 0, 30000, 30000, 3, 3 + luaGauges5gauge = luaGauges5, "Lua Gauge 5", "lua", -30000,30000, 0, 0, 30000, 30000, 3, 3 + luaGauges6gauge = luaGauges6, "Lua Gauge 6", "lua", -30000,30000, 0, 0, 30000, 30000, 3, 3 + luaGauges7gauge = luaGauges7, "Lua Gauge 7", "lua", -30000,30000, 0, 0, 30000, 30000, 3, 3 + luaGauges8gauge = luaGauges8, "Lua Gauge 8", "lua", -30000,30000, 0, 0, 30000, 30000, 3, 3 + +gaugeCategory = Alternator PID + alternatorStatus_iTermGauge = alternatorStatus_iTerm,"Alternator PID iTerm", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 3,3 + alternatorStatus_dTermGauge = alternatorStatus_dTerm,"Alternator PID dTerm", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 3,3 + alternatorStatus_outputGauge = alternatorStatus_output,"Alternator PID output", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 3,3 + alternatorStatus_errorGauge = alternatorStatus_error,"Alternator PID error", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 3,3 + alternatorStatus_resetCounterGauge = alternatorStatus_resetCounter,"Alternator PID resetCounter", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 0,0 + +gaugeCategory = Boost PID + boostStatus_iTermGauge = boostStatus_iTerm,"Boost PID iTerm", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 3,3 + boostStatus_dTermGauge = boostStatus_dTerm,"Boost PID dTerm", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 3,3 + boostStatus_outputGauge = boostStatus_output,"Boost PID output", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 3,3 + boostStatus_errorGauge = boostStatus_error,"Boost PID error", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 3,3 + boostStatus_resetCounterGauge = boostStatus_resetCounter,"Boost PID resetCounter", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 0,0 + +gaugeCategory = Idle + idlePosSensGauge = idlePositionSensor, "Idle: Position sensor", "%", 0, 100, 0, 0, 100, 100, 1, 1 + idleAirValvePositionGauge = currentIdlePosition, "Idle position", "%", 0, 100, 0, 0, 100, 100, 1, 1 + idleStatus_iTermGauge = idleStatus_iTerm,"Idle PID iTerm", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 3,3 + idleStatus_dTermGauge = idleStatus_dTerm,"Idle PID dTerm", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 3,3 + idleStatus_outputGauge = idleStatus_output,"Idle PID output", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 3,3 + idleStatus_errorGauge = idleStatus_error,"Idle PID error", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 3,3 + idleStatus_resetCounterGauge = idleStatus_resetCounter,"Idle PID resetCounter", "", -10000.0,10000.0, -10000.0,10000.0, -10000.0,10000.0, 0,0 + +gaugeCategory = Etb PID + etbStatus_iTermGauge = etbStatus_iTerm,"ETB 1 PID iTerm", "", -100.0,100.0, -100.0,100.0, -100.0,100.0, 3,3 + etbStatus_dTermGauge = etbStatus_dTerm,"ETB 1 PID dTerm", "", -100.0,100.0, -100.0,100.0, -100.0,100.0, 3,3 + etbStatus_outputGauge = etbStatus_output,"ETB 1 PID output", "", -100.0,100.0, -100.0,100.0, -100.0,100.0, 3,3 + etbStatus_errorGauge = etbStatus_error,"ETB 1 PID error", "", -100.0,100.0, -100.0,100.0, -100.0,100.0, 3,3 + etbStatus_resetCounterGauge = etbStatus_resetCounter,"ETB 1 PID resetCounter", "", 0,100.0, 0,100.0, 0,100.0, 0,0 + + wgStatus_iTermGauge = wastegateDcStatus_iTerm,"WG PID iTerm", "", -100.0,100.0, -100.0,100.0, -100.0,100.0, 3,3 + wgStatus_dTermGauge = wastegateDcStatus_dTerm,"WG PID dTerm", "", -100.0,100.0, -100.0,100.0, -100.0,100.0, 3,3 + wgStatus_outputGauge = wastegateDcStatus_output,"WG PID output", "", -100.0,100.0, -100.0,100.0, -100.0,100.0, 3,3 + wgStatus_errorGauge = wastegateDcStatus_error,"WG PID error", "", -100.0,100.0, -100.0,100.0, -100.0,100.0, 3,3 + wgStatus_resetCounterGauge = wastegateDcStatus_resetCounter,"WG PID resetCounter", "", 0,100.0, 0,100.0, 0,100.0, 0,0 + +gaugeCategory = CAN + canReadCounterGauge = canReadCounter,"CAN: Rx", "", 0,64000, 0,64000, 0,64000, 0,0 + canWriteOkGauge = canWriteOk,"CAN: Tx OK", "", 0,64000, 0,64000, 0,64000, 0,0 + canWriteNotOkGauge = canWriteNotOk,"CAN: Tx err", "", 0,64000, 0,64000, 0,64000, 0,0 + +gaugeCategory = GDI + di_nextStartGauge = di_nextStart,"DI: next start", "v", 0.0,100.0, 0.0,100.0, 0.0,100.0, 0,0 + m_requested_pumpGauge = m_requested_pump,"DI: Pump Angle", "deg", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0 + fuel_requested_percentGauge = fuel_requested_percent,"DI: fuel_requested_percent", "v", 0.0,100.0, 0.0,100.0, 0.0,100.0, 0,0 + fuel_requested_percent_piGauge = fuel_requested_percent_pi,"DI: fuel_requested_percent_pi", "v", 0.0,100.0, 0.0,100.0, 0.0,100.0, 0,0 + ;todo see comment in HpfpQuantity class definition + ;m_I_sum_percentGauge = m_I_sum_percent,"DI: m_I_sum_percent", "v", 0.0,100.0, 0.0,100.0, 0.0,100.0, 0,0 + ;m_pressureTarget_kPaGauge = m_pressureTarget_kPa,"DI: m_pressureTarget_kPa", "v", 0.0,100.0, 0.0,100.0, 0.0,100.0, 0,0 + highFuelPressureGauge = highFuelPressure, "Fuel pressure (high)", "bar", 0, 200, 0, 0, 200, 200, 1, 0 + +gaugeCategory = ECU Status + warningCounterGauge = warningCounter, "Warning: counter", "", 0, 100, 0, 0, 100, 100, 0, 0 + lastErrorCodeGauge = lastErrorCode, "Warning: last", "", 0, 18000, 0, 0, 18000, 18000, 0, 0 + recentErrorCode1Gauge = recentErrorCode1, "Error#1", "", 0, 18000, 0, 0, 18000, 18000, 0, 0 + recentErrorCode2Gauge = recentErrorCode2, "Error#2", "", 0, 18000, 0, 0, 18000, 18000, 0, 0 + recentErrorCode3Gauge = recentErrorCode3, "Error#3", "", 0, 18000, 0, 0, 18000, 18000, 0, 0 + recentErrorCode4Gauge = recentErrorCode4, "Error#4", "", 0, 18000, 0, 0, 18000, 18000, 0, 0 + recentErrorCode5Gauge = recentErrorCode5, "Error#5", "", 0, 18000, 0, 0, 18000, 18000, 0, 0 + recentErrorCode6Gauge = recentErrorCode6, "Error#6", "", 0, 18000, 0, 0, 18000, 18000, 0, 0 + recentErrorCode7Gauge = recentErrorCode7, "Error#7", "", 0, 18000, 0, 0, 18000, 18000, 0, 0 + recentErrorCode8Gauge = recentErrorCode8, "Error#8", "", 0, 18000, 0, 0, 18000, 18000, 0, 0 + firmwareVersionGauge = firmwareVersion , "ECU Software Version", "%", 0, 100, 0, 0, 100, 100, 0, 0 + timeSecondsGauge = seconds, "Uptime", "sec", 0, 100, 0, 0, 100, 100, 0, 0 + tuneCrc16Gauge = tuneCrc16, "Tune CRC16", "", 0, 64000, 0, 0, 64000, 64000, 0, 0 + rtcUnixEpochTimeGauge = rtcUnixEpochTime, "Epoch Time", "sec", 0, 100, 0, 0, 100, 100, 0, 0 + +gaugeCategory = Debug + debugF1Gauge = debugFloatField1, {bitStringValue( debugFieldF1List, debugMode )}, "", 0, 100, 0, 0, 100, 100, 4, 4 + debugF2Gauge = debugFloatField2, {bitStringValue( debugFieldF2List, debugMode )}, "", -100, 100, 0, 0, 100, 100, 4, 4 + debugF3Gauge = debugFloatField3, {bitStringValue( debugFieldF3List, debugMode )}, "", -100, 100, 0, 0, 100, 100, 4, 4 + debugF4Gauge = debugFloatField4, {bitStringValue( debugFieldF4List, debugMode )}, "", 0, 100, 0, 0, 100, 100, 4, 4 + debugF5Gauge = debugFloatField5, {bitStringValue( debugFieldF5List, debugMode )}, "", 0, 100, 0, 0, 100, 100, 4, 4 + debugF6Gauge = debugFloatField6, {bitStringValue( debugFieldF6List, debugMode )}, "", -100, 100, 0, 0, 100, 100, 4, 4 + debugF7Gauge = debugFloatField7, {bitStringValue( debugFieldF7List, debugMode )}, "", 0, 100, 0, 0, 100, 100, 4, 4 + debugI1Gauge = debugIntField1, {bitStringValue( debugFieldI1List, debugMode )}, "", 0, 100, 0, 0, 100, 100, 0, 0 + debugI2Gauge = debugIntField2, {bitStringValue( debugFieldI2List, debugMode )}, "", 0, 100, 0, 0, 100, 100, 0, 0 + debugI3Gauge = debugIntField3, {bitStringValue( debugFieldI3List, debugMode )}, "", 0, 100, 0, 0, 100, 100, 0, 0 + debugI4Gauge = debugIntField4, {bitStringValue( debugFieldI4List, debugMode )}, "", 0, 100, 0, 0, 100, 100, 0, 0 + debugI5Gauge = debugIntField5, {bitStringValue( debugFieldI5List, debugMode )}, "", 0, 100, 0, 0, 100, 100, 0, 0 + +gaugeCategory = Sensors - Basic + RPMGauge = RPMValue, "RPM - engine speed", "RPM", 0, {rpmHardLimit + 2000}, 200, {cranking_rpm}, {rpmHardLimit - 500}, {rpmHardLimit}, 0, 0 + CLTGauge = coolant, "Coolant temp", "C", -40, 140, -15, 1, 95, 110, 1, 1 + IATGauge = intake, "Intake air temp", "C", -40, 140, -15, 1, 95, 110, 1, 1 + afr1Gauge = AFRValue, "Air/Fuel Ratio", "", 10, 19.4, 12, 13, 15, 16, 2, 2 + afr2Gauge = AFRValue2, "Air/Fuel Ratio 2", "", 10, 19.4, 12, 13, 15, 16, 2, 2 + afrGasScale1Gauge = afrGasolineScale, "Air/Fuel Ratio (Gas Scale)", "", 10, 19.4, 12, 13, 15, 16, 2, 2 + afrGasScale2Gauge = afr2GasolineScale, "Air/Fuel Ratio 2 (Gas Scale)", "", 10, 19.4, 12, 13, 15, 16, 2, 2 + lambda1Gauge = lambdaValue, "Lambda", "", 0.65, 1.2, 0.7, 0.75, 1.1, 1.15, 3, 2 + lambda2Gauge = lambdaValue2, "Lambda 2", "", 0.65, 1.2, 0.7, 0.75, 1.1, 1.15, 3, 2 + VBattGauge = VBatt, "Battery", "V", 8, 21, 9, 10, 17, 19, 1, 1 + MAPGauge = MAPValue, "MAP", "kPa", 0, 300, 10, 10, 200, 200, 0, 0 + massAirFlowValueGa = mafMeasured, "MAF", "kg/h", 0, 50, -999, -999, 999, 999, 1, 1 + massAirFlowEstimateGa = mafEstimate, "Air: Flow estimate", "kg/h", 0, 50, -999, -999, 999, 999, 1, 1 + +gaugeCategory = Sensors - Extra 1 + VSSGauge = vehicleSpeedKph, "Vehicle Speed", "kmh", 0, 200, 0, 5, 110, 130, 1, 1 + wheelSlipRatioGauge = wheelSlipRatio, "Wheel Slip Ratio", "", 0, 200, 0, 1, 3, 4, 3, 3 + turboSpeedGauge = turboSpeed, "Turbocharger Speed", "hz", 0, 200, 0, 1, 3, 4, 1, 1 + baroPressureGauge = baroPressure, "Barometric pressure", "kPa", 0, 130, 40, 50, 110, 120, 2, 0 + internalMcuTemperatureGauge = internalMcuTemperature, "ECU temperature", "C", 0, 100, 0, 0, 75, 100, 0, 0 + OilPressGauge = oilPressure, "Oil Pressure", "kPa", 0, 750, 35, 75, 550, 700, 0, 0 + AuxT1Gauge = auxTemp1, "Aux temp 1", "C", -40, 140, -15, 1, 95, 110, 1, 1 + AuxT2Gauge = auxTemp2, "Aux temp 2", "C", -40, 140, -15, 1, 95, 110, 1, 1 + ambientTempGauge = ambientTemp, "Ambient Temperature", "C", -40, 140, -15, 1, 95, 110, 1, 1 + lowFuelPressureGauge = lowFuelPressure, "Fuel pressure (low)", "kPa", 0, 700, 0, 0, 700, 700, 1, 0 + flexPercentGauge = flexPercent, "Flex Ethanol %", "%", 0, 100, 0, 0, 100, 100, 0, 0 + fuelTempGauge = fuelTemp, "Fuel Temperature", "C", 0, 100, 0, 0, 75, 100, 0, 0 + fuelTankLevelGauge = fuelTankLevel,"Fuel level", "%", 0, 100, 10, 20, 100, 100, 1, 1 + acPressureGauge = acPressure, "A/C pressure", "kPa", 0, 900, 0, 0, 900, 900, 0, 0 + AuxL1Gauge = auxLinear1, "Aux linear #1", "", -1000, 1000, -1000, -1000, 1000, 1000, 2, 2 + AuxL2Gauge = auxLinear2, "Aux linear #2", "", -1000, 1000, -1000, -1000, 1000, 1000, 2, 2 + AuxL3Gauge = auxLinear3, "Aux linear #3", "", -100, 100, -100, -100, 100, 100, 2, 2 + AuxL4Gauge = auxLinear4, "Aux linear #4", "", -100, 100, -100, -100, 100, 100, 2, 2 + +gaugeCategory = Sensors - Extra 2 + accelerationLatGauge = accelerationLat, "Accel: Lateral", "acc", -2, 2, -2, -1, 1, 2, 3, 1 + accelerationLonGauge = accelerationLon, "Accel: Longitudinal", "acc", -2, 2, -2, -1, 1, 2, 3, 1 + accelerationVertGauge = accelerationVert, "Accel: Vertical", "acc", 0, 1.5, 0.5, 0.6, 1.4, 1.5, 3, 1 + gyroYawGauge = gyroYaw, "Gyro: Yaw rate", "acc", -100, 100, -100, -100, 100, 100, 3, 1 + rpmAccelerationGa = rpmAcceleration, "rpm delta", "RPM/s", -2000, 2000, -2000, 2000, -2000, 2000, 0, 0 + wastegatePosGauge = wastegatePositionSensor, "Wastegate position sensor", "%", 0, 100, 0, 0, 100, 100, 1, 1 + auxSpeed1Gauge = auxSpeed1, "Aux Freq Input1", "hz", 0, 30000, 0, 0, 30000, 30000, 0, 0 + auxSpeed2Gauge = auxSpeed2, "Aux Freq Input2", "hz", 0, 30000, 0, 0, 30000, 30000, 0, 0 + +gaugeCategory = Sensors - EGT + egt1Gauge = egt1, "EGT#1", "C", -100, 1400, 100, 200, 900, 1000, 2, 1 + egt2Gauge = egt2, "EGT#2", "C", -100, 1400, 100, 200, 900, 1000, 2, 1 + egt3Gauge = egt3, "EGT#3", "C", -100, 1400, 100, 200, 900, 1000, 2, 1 + egt4Gauge = egt4, "EGT#4", "C", -100, 1400, 100, 200, 900, 1000, 2, 1 + egt5Gauge = egt5, "EGT#5", "C", -100, 1400, 100, 200, 900, 1000, 2, 1 + egt6Gauge = egt6, "EGT#6", "C", -100, 1400, 100, 200, 900, 1000, 2, 1 + egt7Gauge = egt7, "EGT#7", "C", -100, 1400, 100, 200, 900, 1000, 2, 1 + egt8Gauge = egt8, "EGT#8", "C", -100, 1400, 100, 200, 900, 1000, 2, 1 + +gaugeCategory = VVT + vvtPositionB1IGauge = vvtPositionB1I, "VVT: bank 1 intake", "deg", -60, 60, -60, -60, 60, 60, 1, 1 + vvtPositionB1EGauge = vvtPositionB1E, "VVT: bank 1 exhaust", "deg", -60, 60, -60, -60, 60, 60, 1, 1 + vvtPositionB2IGauge = vvtPositionB2I, "VVT: bank 2 intake", "deg", -60, 60, -60, -60, 60, 60, 1, 1 + vvtPositionB2EGauge = vvtPositionB2E, "VVT: bank 2 exhaust", "deg", -60, 60, -60, -60, 60, 60, 1, 1 + vvtTargets1Gauge = vvtTargets1, "VVT: bank 1 intake target", "deg", -60, 60, -60, -60, 60, 60, 0, 0 + vvtTargets2Gauge = vvtTargets2, "VVT: bank 1 exhaust target", "deg", -60, 60, -60, -60, 60, 60, 0, 0 + vvtTargets3Gauge = vvtTargets3, "VVT: bank 2 intake target", "deg", -60, 60, -60, -60, 60, 60, 0, 0 + vvtTargets4Gauge = vvtTargets4, "VVT: bank 2 exhaust target", "deg", -60, 60, -60, -60, 60, 60, 0, 0 + vvtOutput1Gauge = vvtStatus1_output, "vvt: output 1", "", 00, 100, -60, -60, 60, 60, 0, 0 + vvtOutput2Gauge = vvtStatus2_output, "vvt: output 2", "", 00, 100, -60, -60, 60, 60, 0, 0 + vvtOutput3Gauge = vvtStatus3_output, "vvt: output 3", "", 00, 100, -60, -60, 60, 60, 0, 0 + vvtOutput4Gauge = vvtStatus4_output, "vvt: output 4", "", 00, 100, -60, -60, 60, 60, 0, 0 + + +gaugeCategory = Ignition + sparkCutReasonGauge = sparkCutReason,"Spark Cut Code", "code", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0 + baseIgnAdvGauge = baseIgnitionAdvance, "Timing: base ignition", "degrees", -100, 100, -999, -999, 999, 999, 1, 1 + correctedIgnAdvGauge = correctedIgnitionAdvance, "Timing: ignition", "degrees", -100, 100, -999, -999, 999, 999, 1, 1 + dwellGauge = sparkDwell, "Dwell", "mSec", 0, 10, 0.5, 1.0, 6.0, 8.0, 1, 1 + coilDutyCycleGauge = coilDutyCycle, "Ignition: coil duty cycle", "%", 0, 110, 0, 0, 90, 100, 1, 1 + ignitionLoadGauge = ignitionLoad, "Ignition: load", "%", 0, 300, 0, 0, 300, 300, 1, 1 + +gaugeCategory = Acceleration Enrichment + deltaTpsGauge = deltaTps, "AE: TPS change", "", 0, 120, 10, 10, 100, 100, 1, 1 + tpsAccelFuelGauge = tpsAccelFuel,"AE: TPS enrich", "ms", 0, 120, 10, 10, 100, 100, 1, 1 + wallFuelAmountGauge = wallFuelAmount, "AE: wall amount", "mg", 0, 100, 0, 0, 100, 100, 0, 0 + wallFuelCorrectionGauge = wallFuelCorrection, "AE: wall correction extra", "mg", -20, 20, -100, -100, 100, 100, 1, 1 + +gaugeCategory = Fueling + ;Name Var Title Units Lo Hi LoD LoW HiW HiD vd ld + fuelCutReasonGauge = fuelCutReason,"Fuel Cut Code", "code", 0.0,0.0, 0.0,0.0, 0.0,0.0, 0,0 + tChargeGauge = sd_tCharge, "Fuel: Estimated charge temperature", "C", -40, 140, -15, 1, 95, 110, 1, 1 + baroCorrectionGauge = baroCorrection,"Fuel: Barometric pressure mult", "ratio", 0.5, 1.5, 0.6, 0.7, 1.3, 1.4, 1, 1 + crankingFuelGauge = crankingFuel_fuel, "Fuel: cranking", "mg", 0, 100, 0, 0, 100, 100, 3, 1 + iatCorrectionGauge = running_intakeTemperatureCoefficient, "Fuel: IAT correction", "mult", 0, 3, 0, 0, 3, 3, 2, 2 + cltCorrectionGauge = running_coolantTemperatureCoefficient, "Fuel: CLT correction", "mult", 0, 3, 0, 0, 3, 3, 2, 2 + injectorDutyCycleGauge=injectorDutyCycle, "Fuel: injector duty cycle","%", 0, 120, 10, 10, 100, 100, 1, 1 + injectorDutyCycleStg2Gauge=injectorDutyCycleStage2, "Fuel: injector duty cycle stage 2","%", 0, 120, 10, 10, 100, 100, 1, 1 + actualLastInjectionGauge = actualLastInjection, "Fuel: Last inj pulse width", "mSec", 0, 25.5, 1.0, 1.2, 20, 25, 3, 1 + actualLastInjectionStg2Gauge = actualLastInjectionStage2, "Fuel: Last inj pulse width stg 2", "mSec", 0, 25.5, 1.0, 1.2, 20, 25, 3, 1 + veValueGauge = veValue, "fuel: VE", "", 0, 120, 10, 10, 100, 100, 1, 1 + gegoGauge = Gego, "EGO", "", 50, 160, 10, 10, 100, 100, 1, 1 + + injectorLagMsGauge = m_deadtime, "Fuel: injector lag", "mSec", 0, 10, 0, 0, 10, 10, 3, 1 + fuelRunningGauge = running_fuel, "Fuel: running", "mg", 0, 100, 0, 0, 100, 100, 3, 1 + baseFuelGauge = running_baseFuel, "Fuel: base cycle mass", "mg", 0, 100, 0, 0, 100, 100, 2, 0 + fuelPidCorrectionGauge = fuelPidCorrection1, "Fuel: fuel trim", "%", -10, 10, -8, -5, 5, 8, 3, 1 + fuelPidCorrectionGauge2= fuelPidCorrection2, "Fuel: fuel trim 2", "%", -10, 10, -8, -5, 5, 8, 3, 1 + fuelingLoadGauge = fuelingLoad, "Fuel: Load", "%", 0, 300, 0, 0, 300, 300, 1, 1 + totalFuelConsumptionGauge = totalFuelConsumption, "Fuel: Total consumed", "g", 0, 10000, 0, 0, 10000, 10000, 0, 0 + fuelFlowRateGauge = fuelFlowRate, "Fuel: Flow rate", "g/s", 0, 50, 0, 0, 50, 50, 2, 0 + targetLambdaGauge = targetLambda,"fuel: target lambda", "", 10, 19.4, 12, 13, 15, 16, 2, 2 + currentTargetAfrGauge = targetAFR,"fuel: target AFR", "", 0.65, 1.2, 0.7, 0.75, 1.1, 1.15, 3, 2 + +gaugeCategory = Throttle Body (incl. ETB) + pedalPositionGauge = throttlePedalPosition, "Throttle pedal position", "%", -20, 120, -10, -5, 105, 110, 1, 1 + tpsADCGauge = tpsADC, "tps1 ADC", "ADC", 0, 1024, 0, 0, 0, 0, 0, 0 + TPSGauge = TPSValue, "Throttle position", "%", 0, 100, 0, 0, 100, 100, 1, 1 + TPS2Gauge = TPS2Value, "Throttle position #2", "%", 0, 100, 0, 0, 100, 100, 1, 1 + + etbTargetGauge = etbTarget, "ETB: position target", "%", 0, 100, 0, 0, 100, 100, 1, 1 + etbErrorGauge = etbStatus_error, "ETB: position error", "%", -20, 20, -10, -5, 5, 10, 2, 0 + tps1SplitGauge = tps1Split, "TPS1 Sensor Split", "%", -20, 20, -10, -5, 5, 10, 2, 0 + tps2SplitGauge = tps2Split, "TPS2 Sensor Split", "%", -20, 20, -10, -5, 5, 10, 2, 0 + accPedalSplitGauge = accPedalSplit, "Pedal Sensor Split", "%", -20, 20, -10, -5, 5, 10, 2, 0 + etbDutyCycleGauge = etb1DutyCycle, "ETB: Duty", "%", -100, 100, -75, -50, 50, 75, 0, 0 + +gaugeCategory = Sensors - Raw + rawTps1PrimaryGauge = rawTps1Primary, "Raw TPS 1 Primary", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawTps1SecondaryGauge = rawTps1Secondary, "Raw TPS 1 Secondary", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawTps2PrimaryGauge = rawTps2Primary, "Raw TPS 2 Primary", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawTps2SecondaryGauge = rawTps2Secondary, "Raw TPS 2 Secondary", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAnalogInput1Gauge = rawAnalogInput1, "Raw Aux 1", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAnalogInput2Gauge = rawAnalogInput2, "Raw Aux 2", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAnalogInput3Gauge = rawAnalogInput3, "Raw Aux 3", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAnalogInput4Gauge = rawAnalogInput4, "Raw Aux 4", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAnalogInput5Gauge = rawAnalogInput5, "Raw Aux 5", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAnalogInput6Gauge = rawAnalogInput6, "Raw Aux 6", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAnalogInput7Gauge = rawAnalogInput7, "Raw Aux 7", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAnalogInput8Gauge = rawAnalogInput8, "Raw Aux 8", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawPpsPrimaryGauge = rawPpsPrimary , "Raw Pedal Primary", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawPpsSecondaryGauge = rawPpsSecondary,"Raw Pedal Secondary","V",0, 5, 0, 0, 5, 5, 3, 0 + rawCltGauge = rawClt , "Raw CLT", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawBatteryGauge = rawBattery , "Raw Battery", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawIatGauge = rawIat , "Raw IAT", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAuxTemp1Gauge = rawAuxTemp1 , "Raw Aux Temp1", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAuxTemp2Gauge = rawAuxTemp2 , "Raw Aux Temp2", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAmbientTempGauge = rawAmbientTemp , "Raw Ambient Temp", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawOilPressureGauge = rawOilPressure, "Raw Oil Pressure", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAcPressureGauge = rawAcPressure, "Raw A/C Pressure", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawIdlePositionSensorGauge = rawIdlePositionSensor, "Raw Idle Position", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawWastegatePositionGauge = rawWastegatePosition,"Raw Wastegate Position","V", 0, 5, 0, 0, 5, 5, 3, 0 + rawLowFuelPressureGauge = rawLowFuelPressure,"Raw fuel pressure (low) voltage","V", 0, 5, 0, 0, 5, 5, 3, 0 + rawHighFuelPressureGauge = rawHighFuelPressure,"Raw fuel pressure (high) voltage","V", 0, 5, 0, 0, 5, 5, 3, 0 + rawMafGauge = rawMaf , "Raw MAF", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawMapGauge = rawMap , "Raw MAP", "V", 0, 5, 0, 0, 5, 5, 3, 0 + rawAfrGauge = rawAfr , "Raw EGO", "V", 0, 5, 0, 0, 5, 5, 3, 0 + vssEdgeCounterGauge = vssEdgeCounter, "Raw VSS", "counter", 0, 5, 0, 0, 5, 5, 0, 0 + issEdgeCounterGauge = issEdgeCounter, "Raw ISS", "counter", 0, 5, 0, 0, 5, 5, 0, 0 + +gaugeCategory = Transmission + detectedGearGauge = detectedGear, "Detected Gear", "gear", 0, 10, 0, 0, 10, 10, 0, 0 + speedToRpmRatioGauge = speedToRpmRatio, "Gearbox Ratio", "", 0, 100, 0, 0, 100, 100, 4, 4 + shiftTimeGauge = lastShiftTime, "Last Shift Time", "S", 0, 2, 0, 0, 2, 2, 4, 4 + idealEngineTorqueGauge = idealEngineTorque, "idealEngineTorque", "", 0, 100, 0, 0, 100, 100, 4, 4 + pressureControlGauge = pressureControlDuty, "EPC Duty Cycle", "%", 0, 100, 0, 0, 100, 100, 0, 0 + torqueConverterGauge = torqueConverterDuty, "TC Duty Cycle", "%", 0, 100, 0, 0, 100, 100, 0, 0 + +gaugeCategory = Knock + knock1Gauge = m_knockCyl1, "Knock Cyl 1", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knock2Gauge = m_knockCyl2, "Knock Cyl 2", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knock3Gauge = m_knockCyl3, "Knock Cyl 3", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knock4Gauge = m_knockCyl4, "Knock Cyl 4", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knock5Gauge = m_knockCyl5, "Knock Cyl 5", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knock6Gauge = m_knockCyl6, "Knock Cyl 6", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knock7Gauge = m_knockCyl7, "Knock Cyl 7", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knock8Gauge = m_knockCyl8, "Knock Cyl 8", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knock9Gauge = m_knockCyl9, "Knock Cyl 9", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knock10Gauge = m_knockCyl10, "Knock Cyl 10", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knock11Gauge = m_knockCyl11, "Knock Cyl 11", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knock12Gauge = m_knockCyl12, "Knock Cyl 12", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knockLevelGauge = m_knockLevel,"Knock level", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 + knockRetardGauge = m_knockRetard, "Knock retard", "deg", 0, 10, 0, 0, 10, 10, 1, 1 + knockCountGauge = m_knockCount, "Knock count", "count", 0, 10000, 0, 0, 10000, 10000, 0, 0 + knockSpectrumChannelCylGauge = m_knockSpectrumChannelCyl, "Knock Frequency Start", "Hz", 0, 0, 0, 0, 10000, 10000, 0, 0 + knockFrequencyStartGauge = m_knockFrequencyStart, "Knock Frequency Start", "Hz", 0, 0, 0, 0, 10000, 10000, 0, 0 + knockFrequencyStepGauge = m_knockFrequencyStep, "Knock Frequency Step", "Hz", 0, 0, 0, 0, 10000, 10000, 0, 0 + knockFuelTrimMultiplier = m_knockFuelTrimMultiplier, "Knock Fuel Trim", "mult", 0, 0, 0, 0, 0, 30, 1, 1 + knockSpectrum1 = m_knockSpectrum1, "Knock Spectrum1", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum2 = m_knockSpectrum2, "knockSpectrum2", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum3 = m_knockSpectrum3, "knockSpectrum3", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum4 = m_knockSpectrum4, "knockSpectrum4", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum5 = m_knockSpectrum5, "knockSpectrum5", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum6 = m_knockSpectrum6, "knockSpectrum6", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum7 = m_knockSpectrum7, "knockSpectrum7", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum8 = m_knockSpectrum8, "knockSpectrum8", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum9 = m_knockSpectrum9, "knockSpectrum9", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum10 = m_knockSpectrum10, "knockSpectrum10", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum11 = m_knockSpectrum11, "knockSpectrum11", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum12 = m_knockSpectrum12, "knockSpectrum12", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum13 = m_knockSpectrum13, "knockSpectrum13", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum14 = m_knockSpectrum14, "knockSpectrum14", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum15 = m_knockSpectrum15, "knockSpectrum15", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + knockSpectrum16 = m_knockSpectrum16, "knockSpectrum16", "Volume", 0, 0, 0, 0, 0, 256, 0, 0 + +gaugeCategory = DynoView + accelGauge = VssAcceleration, "Vehicle acceleration", "m/s2", -10, 10, -6, -4, 4, 6, 2, 2 + +gaugeCategory = GPPWM Outputs + gppwmGauge1 = gppwmOutput1, { stringValue(gpPwmNote1) }, "%", 0, 100, 0, 0, 100, 100, 1, 1 + gppwmGauge2 = gppwmOutput2, { stringValue(gpPwmNote2) }, "%", 0, 100, 0, 0, 100, 100, 1, 1 + gppwmGauge3 = gppwmOutput3, { stringValue(gpPwmNote3) }, "%", 0, 100, 0, 0, 100, 100, 1, 1 + gppwmGauge4 = gppwmOutput4, { stringValue(gpPwmNote4) }, "%", 0, 100, 0, 0, 100, 100, 1, 1 + +[WueAnalyze] + +; wueCurveName, afrTempCompensationCurve, lambdaTargetTableName, lambdaChannel, coolantTempChannel, egoCorrectionChannel, wueChannel, activeCondition +#if LAMBDA + wueAnalyzeMap = wueAnalyzer_warmup_curve, wueAfrTargetOffsetCurve, lambdaTableTbl, lambdaValue, coolant, running_coolantTemperatureCoefficient, egoCorrectionForVeAnalyze + lambdaTargetTables = lambdaTableTbl, afrTSCustom +#else + wueAnalyzeMap = wueAnalyzer_warmup_curve, wueAfrTargetOffsetCurve, afrTableTbl, AFRValue, coolant, running_coolantTemperatureCoefficient, egoCorrectionForVeAnalyze + lambdaTargetTables = afrTableTbl, afrTSCustom +#endif + + wuePercentOffset = 0 ; for working with 0 based enrichment set to 100 + option = disableLiveUpdates + option = burnOnSend + +; filter = std_DeadLambda ; Auto build + + filter = decelFilterMap,"After Start Enrich", engine, & , 4 , , false + filter = accelFilterTp, "TP Accel Enrich" , engine, & , 16, , false + filter = decelFilterTp, "TP Decel Enrich" , engine, & , 32, , false + filter = accelFilterMap,"MAP Accel Enrich" , engine, & , 64, , false + filter = decelFilterMap,"MAP Decel Enrich" , engine, & , 128, , false + ; this works, just another way to skin a cat + ;filter = decelFilter, "Decel Flag" , tpsaccden, > , 0, , false + filter = overrunFilter, "Overrun" , pulseWidth1, = , 0, , false + filter = highThrottle, "High Throttle" , throttle, > , 15, , true + filter = lowRpm, "Low RPM" , rpm, < , 300, , false + filter = std_Custom ; Standard Custom Expression Filter. + + +[FrontPage] + ; Gauges are numbered left to right, top to bottom. + ; + ; 1 2 3 4 + ; 5 6 7 8 + + gauge1 = RPMGauge + gauge2 = CLTGauge + gauge3 = TPSGauge + gauge4 = MAPGauge +#if LAMBDA + gauge5 = lambda1Gauge +#else + gauge5 = afr1Gauge +#endif + gauge6 = VBattGauge + gauge7 = dwellGauge + gauge8 = correctedIgnAdvGauge + + ; = expression, off-label, on-label, off-bg, off-fg, on-bg, on-fg + ; Line 1 + ; important status + ; this is required so that the "config error" feature works in TS + ; DO NOT CHANGE THIS LINE - TS is looking for an indicator with particular text/styling + ; you don't even have to show it by default + ; DO NOT CHANGE THIS LINE + ; DO NOT CHANGE THIS LINE + indicator = { hasCriticalError }, "Config Error", "Config Error", white, black, red, black + ; DO NOT CHANGE THIS LINE + ; DO NOT CHANGE THIS LINE + ; todo: do we want to drop this line since we have "config error" thing above? + indicator = { hasCriticalError }, "No errors", "CRITICAL ERROR", white, black, red, black + indicator = { needBurn }, "Settings saved", "Unsaved changes", white, black, yellow, black + indicator = { isWarnNow }, "No warnings", "Warning", white, black, yellow, black + indicator = { checkEngine }, "No Check Engine", "Check Engine", white, black, red, black + indicator = { isTriggerError}, "Trigger OK", "Trigger ERR", white, black, red, black + indicator = { fuelCutReasonBlinker != 0 }, "Injection OK", { Fuel cut: bitStringValue(fuelIgnCutCodeList, fuelCutReason)}, white, black, yellow, black + indicator = { sparkCutReasonBlinker != 0 }, "Ignition OK", { Ign cut: bitStringValue(fuelIgnCutCodeList, sparkCutReason)}, white, black, yellow, black + indicator = { etbErrorCodeBlinker0 != 0 }, "ETB OK", { ETB: bitStringValue(etbCutCodeList, etbErrorCode0)}, white, black, yellow, black + + ; minor info + indicator = { isFanOn }, "Fan off", "Fan on", white, black, green, black + indicator = { isFan2On }, "Fan 2 off", "Fan 2 on", white, black, green, black + indicator = { isMainRelayOn }, "Main relay off", "Main relay on", white, black, green, black + ; Line 2 + ; = expression, off-label, on-label, off-bg, off-fg, on-bg, on-fg + indicator = { isFuelPumpOn }, "Fuel pump off", "Fuel pump on", white, black, green, black + indicator = { clutchUpState }, "No clutch Up", "Clutch Up", white, black, red, black + indicator = { clutchDownState }, "No clutch down", "Clutch down", white, black, yellow, black + indicator = { brakePedalState }, "No braking", "Brake down", white, black, red, black + indicator = { acButtonState }, "AC Switch off", "AC Switch on", white, black, blue, white + indicator = { m_acEnabled }, "AC Relay off", "AC Relay on", white, black, blue, white + indicator = { isIdleClosedLoop }, "Not idling", "Idling", white, black, green, black + indicator = { isIdleCoasting }, "Not coasting", "Coasting", white, black, green, black + indicator = { dfcoActive }, "Not decel fuel cut", "Decel fuel cut", white, black, yellow, black + indicator = { isAboveAccelThreshold }, "No TPS accel", "TPS accel active", white, black, yellow, black + ; error codes + indicator = { isTpsError }, "TPS OK", "TPS error", white, black, red, black + + ; Line 3 + ; = expression, off-label, on-label, off-bg, off-fg, on-bg, on-fg + indicator = { isTps2Error }, "TPS 2 OK", "TPS 2 error", white, black, red, black + indicator = { isPedalError }, "Pedal OK", "Pedal error", white, black, red, black + indicator = { isCltError }, "CLT OK", "CLT error", white, black, red, black + indicator = { isIatError }, "IAT OK", "IAT error", white, black, red, black + ; not implemented + ; indicator = { ind_map_error}, "map", "map error", white, black, red, black + indicator = { sd_present }, "No SD card", "SD card present", white, black, green, black + indicator = { sd_logging_internal }, "No SD logging", "SD logging", white, black, green, black + indicator = { sd_msd }, "No SD USB", "SD USB", white, black, green, black +; indicator = { sd_active_wr }, "SD WR", "SD WR", white, black, green, black +; indicator = { sd_active_rd }, "SD RD", "SD RD", white, black, green, black + indicator = { etbRevLimitActive0 }, "No ETB RPM Limit", "ETB RPM Limit", white, black, yellow, black + + indicator = { wbo0_hasFault }, { WBO0: bitStringValue(wboFaultCodeList, faultCode0)}, { WBO0: bitStringValue(wboFaultCodeList, faultCode0)}, white, black, red, black + + ; indicator = { isInjectionEnabled && fuelCutReason == 0 }, { Inj: bitStringValue(injModeList, currentInjectionMode) }, { Inj: bitStringValue(injModeList, currentInjectionMode) }, white, black, white, black + ; indicator = { isIgnitionEnabled && sparkCutReason == 0 }, { Ign: bitStringValue(ignModeList, currentIgnitionMode) }, { Ign: bitStringValue(ignModeList, currentIgnitionMode) }, white, black, white, black + + ; this file is used to define custom board-specific indicators see gen_config_common.sh +; see also extra.txt + + +; looks like TS would append four system indicators below: Data Logging, ???, Not Connected, Protocol Error + +[KeyActions] + showPanel = spi, spiBuses + showPanel = con, connection + +; +; this section defines how we log output channels +; see [OutputChannels] +; +[Datalog] + ; Channel Label Type Format + entry = time, "Time", float, "%.3f" +entry = sd_present, "SD: Present", int, "%d" +entry = sd_logging_internal, "SD: Logging", int, "%d" +entry = triggerScopeReady, "triggerScopeReady", int, "%d" +entry = antilagTriggered, "antilagTriggered", int, "%d" +entry = isFanOn, "Radiator Fan", int, "%d" +entry = isO2HeaterOn, "isO2HeaterOn", int, "%d" +entry = checkEngine, "checkEngine", int, "%d" +entry = needBurn, "needBurn", int, "%d" +entry = sd_msd, "SD: MSD", int, "%d" +entry = isFan2On, "Radiator Fan 2", int, "%d" +entry = toothLogReady, "Tooth Logger Ready", int, "%d" +entry = isTpsError, "Error: TPS", int, "%d" +entry = isCltError, "Error: CLT", int, "%d" +entry = isMapError, "Error: MAP", int, "%d" +entry = isIatError, "Error: IAT", int, "%d" +entry = isTriggerError, "Error: Trigger", int, "%d" +entry = hasCriticalError, "Error: Active", int, "%d" +entry = isWarnNow, "Warning: Active", int, "%d" +entry = isPedalError, "Error: Pedal", int, "%d" +entry = isKnockChipOk, "isKnockChipOk", int, "%d" +entry = launchTriggered, "Launch Control Triggered", int, "%d" +entry = isTps2Error, "Error: TPS2", int, "%d" +entry = injectorFault, "Injector Fault", int, "%d" +entry = ignitionFault, "Ignition Fault", int, "%d" +entry = isMainRelayOn, "isMainRelayOn", int, "%d" +entry = isUsbConnected, "isUsbConnected", int, "%d" +entry = dfcoActive, "dfcoActive", int, "%d" +entry = sd_active_wr, "SD card writing", int, "%d" +entry = sd_active_rd, "SD card reading", int, "%d" +entry = isMapValid, "MAP from sensor seems valid", int, "%d" +entry = RPMValue, "RPM", int, "%d" +entry = rpmAcceleration, "dRPM", int, "%d" +entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f" +entry = internalMcuTemperature, "CPU Temperature", int, "%d" +entry = coolant, "CLT", float, "%.3f" +entry = intake, "IAT", float, "%.3f" +entry = auxTemp1, "auxTemp1", float, "%.3f" +entry = auxTemp2, "auxTemp2", float, "%.3f" +entry = TPSValue, "TPS", float, "%.3f" +entry = throttlePedalPosition, "Throttle pedal position", float, "%.3f" +entry = tpsADC, "tpsADC", int, "%d" +entry = rawMaf, "rawMaf", float, "%.3f" +entry = mafMeasured, "MAF", float, "%.3f" +entry = MAPValue, "MAP", float, "%.3f" +entry = baroPressure, "baroPressure", float, "%.3f" +entry = lambdaValue, "Lambda", float, "%.3f" +entry = VBatt, "VBatt", float, "%.3f" +entry = oilPressure, "Oil Pressure", float, "%.3f" +entry = vvtPositionB1I, "VVT: bank 1 intake", float, "%.3f" +entry = actualLastInjection, "Fuel: Last inj pulse width", float, "%.3f" +entry = injectorDutyCycle, "Fuel: injector duty cycle", float, "%.3f" +entry = tempLogging1, "tempLogging1", int, "%d" +entry = injectionOffset, "Fuel: Injection timing SOI", int, "%d" +entry = engineMakeCodeNameCrc16, "Engine CRC16", int, "%d" +entry = wallFuelAmount, "Fuel: wall amount", float, "%.3f" +entry = wallFuelCorrectionValue, "Fuel: wall correction", float, "%.3f" +entry = revolutionCounterSinceStart, "revolutionCounterSinceStart", int, "%d" +entry = canReadCounter, "CAN: Rx", int, "%d" +entry = tpsAccelFuel, "Fuel: TPS AE add fuel ms", float, "%.3f" +entry = currentIgnitionMode, "Ignition: Mode", int, "%d" +entry = currentInjectionMode, "Fuel: Injection mode", int, "%d" +entry = coilDutyCycle, "Ignition: coil duty cycle", float, "%.3f" +entry = etbTarget, "ETB Target", float, "%.3f" +entry = etb1DutyCycle, "ETB: Duty", float, "%.3f" +entry = fuelTankLevel, "Fuel level", float, "%.3f" +entry = totalFuelConsumption, "Fuel: Total consumed", int, "%d" +entry = fuelFlowRate, "Fuel: Flow rate", float, "%.3f" +entry = TPS2Value, "TPS2", float, "%.3f" +entry = tuneCrc16, "Tune CRC16", int, "%d" +entry = veValue, "Fuel: VE", float, "%.3f" +entry = seconds, "Uptime", int, "%d" +entry = engineMode, "Engine Mode", int, "%d" +entry = firmwareVersion, "firmware", int, "%d" +entry = rawIdlePositionSensor, "rawIdlePositionSensor", float, "%.3f" +entry = rawWastegatePosition, "rawWastegatePosition", float, "%.3f" +entry = accelerationLat, "Accel: Lateral", float, "%.3f" +entry = accelerationLon, "Accel: Longitudinal", float, "%.3f" +entry = detectedGear, "Detected Gear", int, "%d" +entry = maxTriggerReentrant, "maxTriggerReentrant", int, "%d" +entry = rawLowFuelPressure, "rawLowFuelPressure", float, "%.3f" +entry = rawHighFuelPressure, "rawHighFuelPressure", float, "%.3f" +entry = lowFuelPressure, "Fuel pressure (low)", float, "%.3f" +entry = tcuDesiredGear, "TCU: Desired Gear", int, "%d" +entry = flexPercent, "Flex Ethanol %", float, "%.3f" +entry = wastegatePositionSensor, "Wastegate position sensor", float, "%.3f" +entry = highFuelPressure, "Fuel pressure (high)", float, "%.3f" +entry = tempLogging3, "tempLogging3", int, "%d" +entry = tempLogging4, "tempLogging4", int, "%d" +entry = calibrationValue, "calibrationValue", float, "%.3f" +entry = calibrationMode, "calibrationMode", int, "%d" +entry = idleStepperTargetPosition, "Idle: Stepper target position", int, "%d" +entry = tsConfigVersion, "tsConfigVersion", int, "%d" +entry = totalTriggerErrorCounter, "Trigger Error Counter", int, "%d" +entry = orderingErrorCounter, "orderingErrorCounter", int, "%d" +entry = warningCounter, "Warning: counter", int, "%d" +entry = lastErrorCode, "Warning: last", int, "%d" +entry = recentErrorCode1, "Warning code 1", int, "%d" +entry = recentErrorCode2, "Warning code 2", int, "%d" +entry = recentErrorCode3, "Warning code 3", int, "%d" +entry = recentErrorCode4, "Warning code 4", int, "%d" +entry = recentErrorCode5, "Warning code 5", int, "%d" +entry = recentErrorCode6, "Warning code 6", int, "%d" +entry = recentErrorCode7, "Warning code 7", int, "%d" +entry = recentErrorCode8, "Warning code 8", int, "%d" +entry = debugFloatField1, "debugFloatField1", float, "%.3f" +entry = debugFloatField2, "debugFloatField2", float, "%.3f" +entry = debugFloatField3, "debugFloatField3", float, "%.3f" +entry = debugFloatField4, "debugFloatField4", float, "%.3f" +entry = debugFloatField5, "debugFloatField5", float, "%.3f" +entry = debugFloatField6, "debugFloatField6", float, "%.3f" +entry = debugFloatField7, "debugFloatField7", float, "%.3f" +entry = debugIntField1, "debugIntField1", int, "%d" +entry = debugIntField2, "debugIntField2", int, "%d" +entry = debugIntField3, "debugIntField3", int, "%d" +entry = debugIntField4, "debugIntField4", int, "%d" +entry = debugIntField5, "debugIntField5", int, "%d" +entry = egt1, "EGT 1", float, "%.3f" +entry = egt2, "EGT 2", float, "%.3f" +entry = egt3, "EGT 3", float, "%.3f" +entry = egt4, "EGT 4", float, "%.3f" +entry = egt5, "EGT 5", float, "%.3f" +entry = egt6, "EGT 6", float, "%.3f" +entry = egt7, "EGT 7", float, "%.3f" +entry = egt8, "EGT 8", float, "%.3f" +entry = rawTps1Primary, "rawTps1Primary", float, "%.3f" +entry = rawClt, "rawClt", float, "%.3f" +entry = rawIat, "rawIat", float, "%.3f" +entry = rawOilPressure, "rawOilPressure", float, "%.3f" +entry = rawAcPressure, "rawAcPressure", float, "%.3f" +entry = fuelClosedLoopBinIdx, "fuelClosedLoopBinIdx", int, "%d" +entry = rawPpsPrimary, "rawPpsPrimary", float, "%.3f" +entry = rawPpsSecondary, "rawPpsSecondary", float, "%.3f" +entry = rawRawPpsPrimary, "rawRawPpsPrimary", float, "%.3f" +entry = rawRawPpsSecondary, "rawRawPpsSecondary", float, "%.3f" +entry = idlePositionSensor, "Idle: Position sensor", float, "%.3f" +entry = AFRValue, "Air/Fuel Ratio", float, "%.3f" +entry = VssAcceleration, "Vss Accel", float, "%.3f" +entry = lambdaValue2, "Lambda 2", float, "%.3f" +entry = AFRValue2, "Air/Fuel Ratio 2", float, "%.3f" +entry = vvtPositionB1E, "VVT: bank 1 exhaust", float, "%.3f" +entry = vvtPositionB2I, "VVT: bank 2 intake", float, "%.3f" +entry = vvtPositionB2E, "VVT: bank 2 exhaust", float, "%.3f" +entry = fuelPidCorrection1, "Fuel: Trim bank 1", float, "%.3f" +entry = fuelPidCorrection2, "Fuel: Trim bank 2", float, "%.3f" +entry = rawTps1Secondary, "rawTps1Secondary", float, "%.3f" +entry = rawTps2Primary, "rawTps2Primary", float, "%.3f" +entry = rawTps2Secondary, "rawTps2Secondary", float, "%.3f" +entry = accelerationVert, "Accel: Vertical", float, "%.3f" +entry = gyroYaw, "Gyro: Yaw rate", float, "%.3f" +entry = vvtTargets1, "vvtTargets 1", int, "%d" +entry = vvtTargets2, "vvtTargets 2", int, "%d" +entry = vvtTargets3, "vvtTargets 3", int, "%d" +entry = vvtTargets4, "vvtTargets 4", int, "%d" +entry = turboSpeed, "Turbocharger Speed", int, "%d" +entry = ignitionAdvanceCyl1, "Ign: Timing Cyl 1", float, "%.3f" +entry = ignitionAdvanceCyl2, "Ign: Timing Cyl 2", float, "%.3f" +entry = ignitionAdvanceCyl3, "Ign: Timing Cyl 3", float, "%.3f" +entry = ignitionAdvanceCyl4, "Ign: Timing Cyl 4", float, "%.3f" +entry = ignitionAdvanceCyl5, "Ign: Timing Cyl 5", float, "%.3f" +entry = ignitionAdvanceCyl6, "Ign: Timing Cyl 6", float, "%.3f" +entry = ignitionAdvanceCyl7, "Ign: Timing Cyl 7", float, "%.3f" +entry = ignitionAdvanceCyl8, "Ign: Timing Cyl 8", float, "%.3f" +entry = ignitionAdvanceCyl9, "Ign: Timing Cyl 9", float, "%.3f" +entry = ignitionAdvanceCyl10, "Ign: Timing Cyl 10", float, "%.3f" +entry = ignitionAdvanceCyl11, "Ign: Timing Cyl 11", float, "%.3f" +entry = ignitionAdvanceCyl12, "Ign: Timing Cyl 12", float, "%.3f" +entry = tps1Split, "tps1Split", float, "%.3f" +entry = tps2Split, "tps2Split", float, "%.3f" +entry = tps12Split, "tps12Split", float, "%.3f" +entry = accPedalSplit, "accPedalSplit", float, "%.3f" +entry = sparkCutReason, "Ign: Cut Code", int, "%d" +entry = fuelCutReason, "Fuel: Cut Code", int, "%d" +entry = mafEstimate, "Air: Flow estimate", float, "%.3f" +entry = instantRpm, "sync: instant RPM", int, "%d" +entry = rawMap, "rawMap", float, "%.3f" +entry = rawAfr, "rawAfr", float, "%.3f" +entry = calibrationValue2, "calibrationValue2", float, "%.3f" +entry = luaInvocationCounter, "Lua: Tick counter", int, "%d" +entry = luaLastCycleDuration, "Lua: Last tick duration", int, "%d" +entry = vssEdgeCounter, "vssEdgeCounter", int, "%d" +entry = issEdgeCounter, "issEdgeCounter", int, "%d" +entry = auxLinear1, "Aux linear #1", float, "%.3f" +entry = auxLinear2, "Aux linear #2", float, "%.3f" +entry = auxLinear3, "Aux linear #3", float, "%.3f" +entry = auxLinear4, "Aux linear #4", float, "%.3f" +entry = fallbackMap, "fallbackMap", float, "%.3f" +entry = instantMAPValue, "Instant MAP", float, "%.3f" +entry = maxLockedDuration, "maxLockedDuration", int, "%d" +entry = canWriteOk, "CAN: Tx OK", int, "%d" +entry = canWriteNotOk, "CAN: Tx err", int, "%d" +entry = triggerPrimaryFall, "triggerPrimaryFall", int, "%d" +entry = triggerPrimaryRise, "triggerPrimaryRise", int, "%d" +entry = triggerSecondaryFall, "triggerSecondaryFall", int, "%d" +entry = triggerSecondaryRise, "triggerSecondaryRise", int, "%d" +entry = triggerVvtFall, "triggerVvtFall", int, "%d" +entry = triggerVvtRise, "triggerVvtRise", int, "%d" +entry = triggerVvt2Fall, "triggerVvt2Fall", int, "%d" +entry = triggerVvt2Rise, "triggerVvt2Rise", int, "%d" +entry = starterState, "starterState", int, "%d" +entry = starterRelayDisable, "starterRelayDisable", int, "%d" +entry = multiSparkCounter, "Ign: Multispark count", int, "%d" +entry = extiOverflowCount, "extiOverflowCount", int, "%d" +entry = alternatorStatus_pTerm, "alternatorStatus_pTerm", float, "%.3f" +entry = alternatorStatus_iTerm, "alternatorStatus_iTerm", float, "%.3f" +entry = alternatorStatus_dTerm, "alternatorStatus_dTerm", float, "%.3f" +entry = alternatorStatus_output, "alternatorStatus_output", float, "%.3f" +entry = alternatorStatus_error, "alternatorStatus_error", float, "%.3f" +entry = alternatorStatus_resetCounter, "alternatorStatus_resetCounter", int, "%d" +entry = idleStatus_pTerm, "idleStatus_pTerm", float, "%.3f" +entry = idleStatus_iTerm, "idleStatus_iTerm", float, "%.3f" +entry = idleStatus_dTerm, "idleStatus_dTerm", float, "%.3f" +entry = idleStatus_output, "idleStatus_output", float, "%.3f" +entry = idleStatus_error, "idleStatus_error", float, "%.3f" +entry = idleStatus_resetCounter, "idleStatus_resetCounter", int, "%d" +entry = etbStatus_pTerm, "etbStatus_pTerm", float, "%.3f" +entry = etbStatus_iTerm, "etbStatus_iTerm", float, "%.3f" +entry = etbStatus_dTerm, "etbStatus_dTerm", float, "%.3f" +entry = etbStatus_output, "etbStatus_output", float, "%.3f" +entry = etbStatus_error, "etbStatus_error", float, "%.3f" +entry = etbStatus_resetCounter, "etbStatus_resetCounter", int, "%d" +entry = boostStatus_pTerm, "boostStatus_pTerm", float, "%.3f" +entry = boostStatus_iTerm, "boostStatus_iTerm", float, "%.3f" +entry = boostStatus_dTerm, "boostStatus_dTerm", float, "%.3f" +entry = boostStatus_output, "boostStatus_output", float, "%.3f" +entry = boostStatus_error, "boostStatus_error", float, "%.3f" +entry = boostStatus_resetCounter, "boostStatus_resetCounter", int, "%d" +entry = wastegateDcStatus_pTerm, "wastegateDcStatus_pTerm", float, "%.3f" +entry = wastegateDcStatus_iTerm, "wastegateDcStatus_iTerm", float, "%.3f" +entry = wastegateDcStatus_dTerm, "wastegateDcStatus_dTerm", float, "%.3f" +entry = wastegateDcStatus_output, "wastegateDcStatus_output", float, "%.3f" +entry = wastegateDcStatus_error, "wastegateDcStatus_error", float, "%.3f" +entry = wastegateDcStatus_resetCounter, "wastegateDcStatus_resetCounter", int, "%d" +entry = vvtStatus1_pTerm, "vvtStatus1_pTerm", float, "%.3f" +entry = vvtStatus1_iTerm, "vvtStatus1_iTerm", float, "%.3f" +entry = vvtStatus1_dTerm, "vvtStatus1_dTerm", float, "%.3f" +entry = vvtStatus1_output, "vvtStatus1_output", float, "%.3f" +entry = vvtStatus1_error, "vvtStatus1_error", float, "%.3f" +entry = vvtStatus1_resetCounter, "vvtStatus1_resetCounter", int, "%d" +entry = vvtStatus2_pTerm, "vvtStatus2_pTerm", float, "%.3f" +entry = vvtStatus2_iTerm, "vvtStatus2_iTerm", float, "%.3f" +entry = vvtStatus2_dTerm, "vvtStatus2_dTerm", float, "%.3f" +entry = vvtStatus2_output, "vvtStatus2_output", float, "%.3f" +entry = vvtStatus2_error, "vvtStatus2_error", float, "%.3f" +entry = vvtStatus2_resetCounter, "vvtStatus2_resetCounter", int, "%d" +entry = vvtStatus3_pTerm, "vvtStatus3_pTerm", float, "%.3f" +entry = vvtStatus3_iTerm, "vvtStatus3_iTerm", float, "%.3f" +entry = vvtStatus3_dTerm, "vvtStatus3_dTerm", float, "%.3f" +entry = vvtStatus3_output, "vvtStatus3_output", float, "%.3f" +entry = vvtStatus3_error, "vvtStatus3_error", float, "%.3f" +entry = vvtStatus3_resetCounter, "vvtStatus3_resetCounter", int, "%d" +entry = vvtStatus4_pTerm, "vvtStatus4_pTerm", float, "%.3f" +entry = vvtStatus4_iTerm, "vvtStatus4_iTerm", float, "%.3f" +entry = vvtStatus4_dTerm, "vvtStatus4_dTerm", float, "%.3f" +entry = vvtStatus4_output, "vvtStatus4_output", float, "%.3f" +entry = vvtStatus4_error, "vvtStatus4_error", float, "%.3f" +entry = vvtStatus4_resetCounter, "vvtStatus4_resetCounter", int, "%d" +entry = auxSpeed1, "Aux speed 1", int, "%d" +entry = auxSpeed2, "Aux speed 2", int, "%d" +entry = ISSValue, "TCU: Input Shaft Speed", int, "%d" +entry = rawAnalogInput1, "rawAnalogInput 1", float, "%.3f" +entry = rawAnalogInput2, "rawAnalogInput 2", float, "%.3f" +entry = rawAnalogInput3, "rawAnalogInput 3", float, "%.3f" +entry = rawAnalogInput4, "rawAnalogInput 4", float, "%.3f" +entry = rawAnalogInput5, "rawAnalogInput 5", float, "%.3f" +entry = rawAnalogInput6, "rawAnalogInput 6", float, "%.3f" +entry = rawAnalogInput7, "rawAnalogInput 7", float, "%.3f" +entry = rawAnalogInput8, "rawAnalogInput 8", float, "%.3f" +entry = gppwmOutput1, "GPPWM Output 1", float, "%.3f" +entry = gppwmOutput2, "GPPWM Output 2", float, "%.3f" +entry = gppwmOutput3, "GPPWM Output 3", float, "%.3f" +entry = gppwmOutput4, "GPPWM Output 4", float, "%.3f" +entry = gppwmXAxis1, "gppwmXAxis 1", int, "%d" +entry = gppwmXAxis2, "gppwmXAxis 2", int, "%d" +entry = gppwmXAxis3, "gppwmXAxis 3", int, "%d" +entry = gppwmXAxis4, "gppwmXAxis 4", int, "%d" +entry = gppwmYAxis1, "gppwmYAxis 1", float, "%.3f" +entry = gppwmYAxis2, "gppwmYAxis 2", float, "%.3f" +entry = gppwmYAxis3, "gppwmYAxis 3", float, "%.3f" +entry = gppwmYAxis4, "gppwmYAxis 4", float, "%.3f" +entry = rawBattery, "rawBattery", float, "%.3f" +entry = ignBlendParameter1, "ignBlendParameter 1", float, "%.3f" +entry = ignBlendParameter2, "ignBlendParameter 2", float, "%.3f" +entry = ignBlendParameter3, "ignBlendParameter 3", float, "%.3f" +entry = ignBlendParameter4, "ignBlendParameter 4", float, "%.3f" +entry = ignBlendBias1, "ignBlendBias 1", float, "%.3f" +entry = ignBlendBias2, "ignBlendBias 2", float, "%.3f" +entry = ignBlendBias3, "ignBlendBias 3", float, "%.3f" +entry = ignBlendBias4, "ignBlendBias 4", float, "%.3f" +entry = ignBlendOutput1, "ignBlendOutput 1", float, "%.3f" +entry = ignBlendOutput2, "ignBlendOutput 2", float, "%.3f" +entry = ignBlendOutput3, "ignBlendOutput 3", float, "%.3f" +entry = ignBlendOutput4, "ignBlendOutput 4", float, "%.3f" +entry = veBlendParameter1, "veBlendParameter 1", float, "%.3f" +entry = veBlendParameter2, "veBlendParameter 2", float, "%.3f" +entry = veBlendParameter3, "veBlendParameter 3", float, "%.3f" +entry = veBlendParameter4, "veBlendParameter 4", float, "%.3f" +entry = veBlendBias1, "veBlendBias 1", float, "%.3f" +entry = veBlendBias2, "veBlendBias 2", float, "%.3f" +entry = veBlendBias3, "veBlendBias 3", float, "%.3f" +entry = veBlendBias4, "veBlendBias 4", float, "%.3f" +entry = veBlendOutput1, "veBlendOutput 1", float, "%.3f" +entry = veBlendOutput2, "veBlendOutput 2", float, "%.3f" +entry = veBlendOutput3, "veBlendOutput 3", float, "%.3f" +entry = veBlendOutput4, "veBlendOutput 4", float, "%.3f" +entry = boostOpenLoopBlendParameter1, "boostOpenLoopBlendParameter 1", float, "%.3f" +entry = boostOpenLoopBlendParameter2, "boostOpenLoopBlendParameter 2", float, "%.3f" +entry = boostOpenLoopBlendBias1, "boostOpenLoopBlendBias 1", float, "%.3f" +entry = boostOpenLoopBlendBias2, "boostOpenLoopBlendBias 2", float, "%.3f" +entry = boostOpenLoopBlendOutput1, "boostOpenLoopBlendOutput 1", int, "%d" +entry = boostOpenLoopBlendOutput2, "boostOpenLoopBlendOutput 2", int, "%d" +entry = boostClosedLoopBlendParameter1, "boostClosedLoopBlendParameter 1", float, "%.3f" +entry = boostClosedLoopBlendParameter2, "boostClosedLoopBlendParameter 2", float, "%.3f" +entry = boostClosedLoopBlendBias1, "boostClosedLoopBlendBias 1", float, "%.3f" +entry = boostClosedLoopBlendBias2, "boostClosedLoopBlendBias 2", float, "%.3f" +entry = boostClosedLoopBlendOutput1, "boostClosedLoopBlendOutput 1", float, "%.3f" +entry = boostClosedLoopBlendOutput2, "boostClosedLoopBlendOutput 2", float, "%.3f" +entry = coilState1, "coilState1", int, "%d" +entry = coilState2, "coilState2", int, "%d" +entry = coilState3, "coilState3", int, "%d" +entry = coilState4, "coilState4", int, "%d" +entry = coilState5, "coilState5", int, "%d" +entry = coilState6, "coilState6", int, "%d" +entry = coilState7, "coilState7", int, "%d" +entry = coilState8, "coilState8", int, "%d" +entry = coilState9, "coilState9", int, "%d" +entry = coilState10, "coilState10", int, "%d" +entry = coilState11, "coilState11", int, "%d" +entry = coilState12, "coilState12", int, "%d" +entry = injectorState1, "injectorState1", int, "%d" +entry = injectorState2, "injectorState2", int, "%d" +entry = injectorState3, "injectorState3", int, "%d" +entry = injectorState4, "injectorState4", int, "%d" +entry = injectorState5, "injectorState5", int, "%d" +entry = injectorState6, "injectorState6", int, "%d" +entry = injectorState7, "injectorState7", int, "%d" +entry = injectorState8, "injectorState8", int, "%d" +entry = injectorState9, "injectorState9", int, "%d" +entry = injectorState10, "injectorState10", int, "%d" +entry = injectorState11, "injectorState11", int, "%d" +entry = injectorState12, "injectorState12", int, "%d" +entry = triggerChannel1, "triggerChannel1", int, "%d" +entry = triggerChannel2, "triggerChannel2", int, "%d" +entry = vvtChannel1, "bank 1 intake cam input", int, "%d" +entry = vvtChannel2, "bank 1 exhaust cam input", int, "%d" +entry = vvtChannel3, "bank 2 intake cam input", int, "%d" +entry = vvtChannel4, "bank 2 exhaust cam input", int, "%d" +entry = outputRequestPeriod, "outputRequestPeriod", int, "%d" +entry = mapFast, "mapFast", float, "%.3f" +entry = luaGauges1, "Lua: Gauge 1", float, "%.3f" +entry = luaGauges2, "Lua: Gauge 2", float, "%.3f" +entry = luaGauges3, "Lua: Gauge 3", float, "%.3f" +entry = luaGauges4, "Lua: Gauge 4", float, "%.3f" +entry = luaGauges5, "Lua: Gauge 5", float, "%.3f" +entry = luaGauges6, "Lua: Gauge 6", float, "%.3f" +entry = luaGauges7, "Lua: Gauge 7", float, "%.3f" +entry = luaGauges8, "Lua: Gauge 8", float, "%.3f" +entry = rawMaf2, "rawMaf2", float, "%.3f" +entry = mafMeasured2, "MAF #2", float, "%.3f" +entry = schedulingUsedCount, "schedulingUsedCount", int, "%d" +entry = vehicleSpeedKph, "Vehicle Speed", float, "%.3f" +entry = Gego, "Gego", float, "%.3f" +entry = testBenchIter, "testBenchIter", int, "%d" +entry = oilTemp, "oilTemp", float, "%.3f" +entry = fuelTemp, "fuelTemp", float, "%.3f" +entry = ambientTemp, "ambientTemp", float, "%.3f" +entry = compressorDischargeTemp, "compressorDischargeTemp", float, "%.3f" +entry = compressorDischargePressure, "compressorDischargePressure", float, "%.3f" +entry = throttleInletPressure, "throttleInletPressure", float, "%.3f" +entry = ignitionOnTime, "ignitionOnTime", int, "%d" +entry = engineRunTime, "engineRunTime", int, "%d" +entry = distanceTraveled, "distanceTraveled", float, "%.3f" +entry = afrGasolineScale, "Air/Fuel Ratio (Gas Scale)", float, "%.3f" +entry = afr2GasolineScale, "Air/Fuel Ratio 2 (Gas Scale)", float, "%.3f" +entry = wheelSlipRatio, "wheelSlipRatio", float, "%.3f" +entry = ignitorDiagnostic1, "ignitorDiagnostic 1", int, "%d" +entry = ignitorDiagnostic2, "ignitorDiagnostic 2", int, "%d" +entry = ignitorDiagnostic3, "ignitorDiagnostic 3", int, "%d" +entry = ignitorDiagnostic4, "ignitorDiagnostic 4", int, "%d" +entry = ignitorDiagnostic5, "ignitorDiagnostic 5", int, "%d" +entry = ignitorDiagnostic6, "ignitorDiagnostic 6", int, "%d" +entry = ignitorDiagnostic7, "ignitorDiagnostic 7", int, "%d" +entry = ignitorDiagnostic8, "ignitorDiagnostic 8", int, "%d" +entry = ignitorDiagnostic9, "ignitorDiagnostic 9", int, "%d" +entry = ignitorDiagnostic10, "ignitorDiagnostic 10", int, "%d" +entry = ignitorDiagnostic11, "ignitorDiagnostic 11", int, "%d" +entry = ignitorDiagnostic12, "ignitorDiagnostic 12", int, "%d" +entry = injectorDiagnostic1, "injectorDiagnostic 1", int, "%d" +entry = injectorDiagnostic2, "injectorDiagnostic 2", int, "%d" +entry = injectorDiagnostic3, "injectorDiagnostic 3", int, "%d" +entry = injectorDiagnostic4, "injectorDiagnostic 4", int, "%d" +entry = injectorDiagnostic5, "injectorDiagnostic 5", int, "%d" +entry = injectorDiagnostic6, "injectorDiagnostic 6", int, "%d" +entry = injectorDiagnostic7, "injectorDiagnostic 7", int, "%d" +entry = injectorDiagnostic8, "injectorDiagnostic 8", int, "%d" +entry = injectorDiagnostic9, "injectorDiagnostic 9", int, "%d" +entry = injectorDiagnostic10, "injectorDiagnostic 10", int, "%d" +entry = injectorDiagnostic11, "injectorDiagnostic 11", int, "%d" +entry = injectorDiagnostic12, "injectorDiagnostic 12", int, "%d" +entry = actualLastInjectionStage2, "Fuel: Last inj pulse width stg 2", float, "%.3f" +entry = injectorDutyCycleStage2, "Fuel: injector duty cycle stage 2", float, "%.3f" +entry = fastAdcErrorsCount, "fastAdcErrorsCount", int, "%d" +entry = deviceUid, "deviceUid", int, "%d" +entry = mc33810spiErrorCounter, "mc33810spiErrorCounter", int, "%d" +entry = sadDwellRatioCounter, "sadDwellRatioCounter", int, "%d" +entry = injectionPrimingCounter, "injectionPrimingCounter", int, "%d" +entry = tempLogging2, "tempLogging2", int, "%d" +entry = acPressure, "A/C pressure", float, "%.3f" +entry = rawAuxAnalog1, "rawAuxAnalog1", float, "%.3f" +entry = rawAuxAnalog2, "rawAuxAnalog2", float, "%.3f" +entry = rawAuxAnalog3, "rawAuxAnalog3", float, "%.3f" +entry = rawAuxAnalog4, "rawAuxAnalog4", float, "%.3f" +entry = fastAdcErrorCallbackCount, "fastAdcErrorCallbackCount", int, "%d" +entry = slowAdcErrorsCount, "slowAdcErrorsCount", int, "%d" +entry = rawAuxTemp1, "rawAuxTemp1", float, "%.3f" +entry = rawAuxTemp2, "rawAuxTemp2", float, "%.3f" +entry = rawAmbientTemp, "rawAmbientTemp", float, "%.3f" +entry = rtcUnixEpochTime, "rtcUnixEpochTime", int, "%d" +entry = sparkCutReasonBlinker, "sparkCutReasonBlinker", int, "%d" +entry = fuelCutReasonBlinker, "fuelCutReasonBlinker", int, "%d" +entry = totalFuelCorrection, "Fuel: Total correction", float, "%.3f" +entry = running_postCrankingFuelCorrection, "Fuel: Post cranking mult", float, "%.3f" +entry = running_intakeTemperatureCoefficient, "Fuel: IAT correction", float, "%.3f" +entry = running_coolantTemperatureCoefficient, "Fuel: CLT correction", float, "%.3f" +entry = running_timeSinceCrankingInSecs, "running_timeSinceCrankingInSecs", float, "%.3f" +entry = running_baseFuel, "Fuel: base cycle mass", float, "%.3f" +entry = running_fuel, "Fuel: running", float, "%.3f" +entry = afrTableYAxis, "afrTableYAxis", float, "%.3f" +entry = targetLambda, "Fuel: target lambda", float, "%.3f" +entry = targetAFR, "Fuel: target AFR", float, "%.3f" +entry = stoichiometricRatio, "Fuel: Stoich ratio", float, "%.3f" +entry = sdTcharge_coff, "sdTcharge_coff", float, "%.3f" +entry = sdAirMassInOneCylinder, "Air: Cylinder airmass", float, "%.3f" +entry = normalizedCylinderFilling, "Air: Normalized cyl filling", float, "%.3f" +entry = brokenInjector, "brokenInjector", int, "%d" +entry = idealEngineTorque, "idealEngineTorque", int, "%d" +entry = injectorHwIssue, "injectorHwIssue", int, "%d" +entry = baseDwell, "Ignition: base dwell", float, "%.3f" +entry = sparkDwell, "Ignition: coil charge time", float, "%.3f" +entry = dwellDurationAngle, "Ignition: dwell duration", float, "%.3f" +entry = cltTimingCorrection, "Ign: CLT correction", float, "%.3f" +entry = timingIatCorrection, "Ign: IAT correction", float, "%.3f" +entry = timingPidCorrection, "Idle: Timing adjustment", float, "%.3f" +entry = baseIgnitionAdvance, "Timing: base ignition", float, "%.3f" +entry = correctedIgnitionAdvance, "Timing: ignition", float, "%.3f" +entry = tractionAdvanceDrop, "Traction: timing correction", float, "%.3f" +entry = dwellVoltageCorrection, "Ign: Dwell voltage correction", float, "%.3f" +entry = luaTimingAdd, "Ign: Lua timing add", float, "%.3f" +entry = luaTimingMult, "Ign: Lua timing mult", float, "%.3f" +entry = luaIgnitionSkip, "Ign: Lua Spark Skip", int, "%d" +entry = m_knockLevel, "Knock: Current level", float, "%.3f" +entry = m_knockCyl1, "Knock: Cyl 1", int, "%d" +entry = m_knockCyl2, "Knock: Cyl 2", int, "%d" +entry = m_knockCyl3, "Knock: Cyl 3", int, "%d" +entry = m_knockCyl4, "Knock: Cyl 4", int, "%d" +entry = m_knockCyl5, "Knock: Cyl 5", int, "%d" +entry = m_knockCyl6, "Knock: Cyl 6", int, "%d" +entry = m_knockCyl7, "Knock: Cyl 7", int, "%d" +entry = m_knockCyl8, "Knock: Cyl 8", int, "%d" +entry = m_knockCyl9, "Knock: Cyl 9", int, "%d" +entry = m_knockCyl10, "Knock: Cyl 10", int, "%d" +entry = m_knockCyl11, "Knock: Cyl 11", int, "%d" +entry = m_knockCyl12, "Knock: Cyl 12", int, "%d" +entry = m_knockRetard, "Knock: Retard", float, "%.3f" +entry = m_knockThreshold, "Knock: Threshold", float, "%.3f" +entry = m_knockCount, "Knock: Count", int, "%d" +entry = m_maximumRetard, "Knock: Max retard", float, "%.3f" +entry = m_knockSpectrum1, "Knock: SpectrumData 1", int, "%d" +entry = m_knockSpectrum2, "Knock: SpectrumData 2", int, "%d" +entry = m_knockSpectrum3, "Knock: SpectrumData 3", int, "%d" +entry = m_knockSpectrum4, "Knock: SpectrumData 4", int, "%d" +entry = m_knockSpectrum5, "Knock: SpectrumData 5", int, "%d" +entry = m_knockSpectrum6, "Knock: SpectrumData 6", int, "%d" +entry = m_knockSpectrum7, "Knock: SpectrumData 7", int, "%d" +entry = m_knockSpectrum8, "Knock: SpectrumData 8", int, "%d" +entry = m_knockSpectrum9, "Knock: SpectrumData 9", int, "%d" +entry = m_knockSpectrum10, "Knock: SpectrumData 10", int, "%d" +entry = m_knockSpectrum11, "Knock: SpectrumData 11", int, "%d" +entry = m_knockSpectrum12, "Knock: SpectrumData 12", int, "%d" +entry = m_knockSpectrum13, "Knock: SpectrumData 13", int, "%d" +entry = m_knockSpectrum14, "Knock: SpectrumData 14", int, "%d" +entry = m_knockSpectrum15, "Knock: SpectrumData 15", int, "%d" +entry = m_knockSpectrum16, "Knock: SpectrumData 16", int, "%d" +entry = m_knockSpectrumChannelCyl, "Knock: ChannelAndCylNumber", int, "%d" +entry = m_knockFrequencyStart, "Knock: Start Freq", int, "%d" +entry = m_knockFrequencyStep, "Knock: Step Freq", float, "%.3f" +entry = m_knockFuelTrimMultiplier, "Knock: Fuel trim when knock", float, "%.3f" +entry = tcuCurrentGear, "TCU: Current Gear", int, "%d" +entry = tcRatio, "TCU: Torque Converter Ratio", float, "%.3f" +entry = lastShiftTime, "lastShiftTime", float, "%.3f" +entry = tcu_currentRange, "TCU: Current Range", int, "%d" +entry = pressureControlDuty, "TCU: EPC Duty", int, "%d" +entry = torqueConverterDuty, "TCU: TC Duty", int, "%d" +entry = isShifting, "isShifting", int, "%d" +entry = throttleUseWotModel, "Air: Throttle model WOT", int, "%d" +entry = throttleModelCrossoverAngle, "Air: Throttle crossover pos", float, "%.3f" +entry = throttleEstimatedFlow, "Air: Throttle flow estimate", float, "%.3f" +entry = m_requested_pump, "GDI: HPFP duration", float, "%.3f" +entry = fuel_requested_percent, "GDI: requested_percent", float, "%.3f" +entry = fuel_requested_percent_pi, "GDI: percent_pi", float, "%.3f" +entry = noValve, "noValve", int, "%d" +entry = angleAboveMin, "angleAboveMin", int, "%d" +entry = isHpfpInactive, "isHpfpInactive", int, "%d" +entry = m_pressureTarget_kPa, "GDI: target pressure", float, "%.3f" +entry = nextLobe, "GDI: nextLobe", float, "%.3f" +entry = di_nextStart, "GDI: next start", float, "%.3f" +entry = m_deadtime, "Fuel: injector lag", float, "%.3f" +entry = pressureDelta, "Fuel: Injector pressure delta", float, "%.3f" +entry = pressureRatio, "Fuel: Injector pressure ratio", float, "%.3f" +entry = retardThresholdRpm, "retardThresholdRpm", int, "%d" +entry = launchActivatePinState, "launchActivatePinState", int, "%d" +entry = isPreLaunchCondition, "isPreLaunchCondition", int, "%d" +entry = isLaunchCondition, "isLaunchCondition", int, "%d" +entry = isSwitchActivated, "isSwitchActivated", int, "%d" +entry = isClutchActivated, "isClutchActivated", int, "%d" +entry = isBrakePedalActivated, "isBrakePedalActivated", int, "%d" +entry = isValidInputPin, "isValidInputPin", int, "%d" +entry = activateSwitchCondition, "activateSwitchCondition", int, "%d" +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 = isTimeConditionSatisfied, "isTimeConditionSatisfied", int, "%d" +entry = isRpmConditionSatisfied, "isRpmConditionSatisfied", int, "%d" +entry = isAppConditionSatisfied, "isAppConditionSatisfied", int, "%d" +entry = isFlatShiftConditionSatisfied, "isFlatShiftConditionSatisfied", int, "%d" +entry = isAntilagCondition, "isAntilagCondition", int, "%d" +entry = ALSMinRPMCondition, "ALSMinRPMCondition", int, "%d" +entry = ALSMaxRPMCondition, "ALSMaxRPMCondition", int, "%d" +entry = ALSMinCLTCondition, "ALSMinCLTCondition", int, "%d" +entry = ALSMaxCLTCondition, "ALSMaxCLTCondition", int, "%d" +entry = ALSMaxThrottleIntentCondition, "ALSMaxThrottleIntentCondition", int, "%d" +entry = isALSSwitchActivated, "isALSSwitchActivated", int, "%d" +entry = ALSActivatePinState, "ALSActivatePinState", int, "%d" +entry = ALSSwitchCondition, "ALSSwitchCondition", int, "%d" +entry = ALSTimerCondition, "ALSTimerCondition", int, "%d" +entry = fuelALSCorrection, "fuelALSCorrection", float, "%.3f" +entry = timingALSCorrection, "timingALSCorrection", float, "%.3f" +entry = timingALSSkip, "timingALSSkip", float, "%.3f" +entry = isTpsInvalid, "isTpsInvalid", int, "%d" +entry = m_shouldResetPid, "m_shouldResetPid", int, "%d" +entry = isBelowClosedLoopThreshold, "isBelowClosedLoopThreshold", int, "%d" +entry = isNotClosedLoop, "isNotClosedLoop", int, "%d" +entry = isZeroRpm, "isZeroRpm", int, "%d" +entry = hasInitBoost, "hasInitBoost", int, "%d" +entry = rpmTooLow, "rpmTooLow", int, "%d" +entry = tpsTooLow, "tpsTooLow", int, "%d" +entry = mapTooLow, "mapTooLow", int, "%d" +entry = isPlantValid, "isPlantValid", int, "%d" +entry = isBoostControlled, "isBoostControlled", int, "%d" +entry = luaTargetAdd, "Boost: Lua target add", float, "%.3f" +entry = boostOutput, "Boost: Output", float, "%.3f" +entry = luaTargetMult, "Boost: Lua target mult", float, "%.3f" +entry = openLoopPart, "Boost: Open loop", float, "%.3f" +entry = luaOpenLoopAdd, "Boost: Lua open loop add", float, "%.3f" +entry = boostControllerClosedLoopPart, "Boost: Closed loop", float, "%.3f" +entry = boostControlTarget, "Boost: Target", float, "%.3f" +entry = acButtonState, "AC switch", int, "%d" +entry = m_acEnabled, "AC enabled", int, "%d" +entry = engineTooSlow, "AC engine too slow", int, "%d" +entry = engineTooFast, "AC engine too fast", int, "%d" +entry = noClt, "AC no CLT", int, "%d" +entry = engineTooHot, "AC engine too hot", int, "%d" +entry = tpsTooHigh, "AC tps too high", int, "%d" +entry = isDisabledByLua, "AC disabled by Lua", int, "%d" +entry = acCompressorState, "AC compressor on", int, "%d" +entry = acPressureTooLow, "AC pressure too low", int, "%d" +entry = acPressureTooHigh, "AC pressure too high", int, "%d" +entry = cranking0, "cranking0", int, "%d" +entry = notRunning0, "notRunning0", int, "%d" +entry = disabledWhileEngineStopped0, "disabledWhileEngineStopped0", int, "%d" +entry = brokenClt0, "brokenClt0", int, "%d" +entry = enabledForAc0, "enabledForAc0", int, "%d" +entry = hot0, "hot0", int, "%d" +entry = cold0, "cold0", int, "%d" +entry = disabledBySpeed0, "disabledBySpeed0", int, "%d" +entry = radiatorFanStatus0, "radiatorFanStatus0", int, "%d" +entry = cranking1, "cranking1", int, "%d" +entry = notRunning1, "notRunning1", int, "%d" +entry = disabledWhileEngineStopped1, "disabledWhileEngineStopped1", int, "%d" +entry = brokenClt1, "brokenClt1", int, "%d" +entry = enabledForAc1, "enabledForAc1", int, "%d" +entry = hot1, "hot1", int, "%d" +entry = cold1, "cold1", int, "%d" +entry = disabledBySpeed1, "disabledBySpeed1", int, "%d" +entry = radiatorFanStatus1, "radiatorFanStatus1", int, "%d" +entry = isPrime, "isPrime", int, "%d" +entry = engineTurnedRecently, "engineTurnedRecently", int, "%d" +entry = isFuelPumpOn, "isFuelPumpOn", int, "%d" +entry = ignitionOn, "ignitionOn", int, "%d" +entry = isBenchTest, "isBenchTest", int, "%d" +entry = hasIgnitionVoltage, "hasIgnitionVoltage", int, "%d" +entry = mainRelayState, "mainRelayState", int, "%d" +entry = delayedShutoffRequested, "delayedShutoffRequested", int, "%d" +entry = lua_fuelAdd, "Lua: Fuel add", float, "%.3f" +entry = lua_fuelMult, "Lua: Fuel mult", float, "%.3f" +entry = lua_clutchUpState, "lua_clutchUpState", int, "%d" +entry = lua_brakePedalState, "lua_brakePedalState", int, "%d" +entry = lua_acRequestState, "lua_acRequestState", int, "%d" +entry = lua_luaDisableEtb, "lua_luaDisableEtb", int, "%d" +entry = lua_luaIgnCut, "lua_luaIgnCut", int, "%d" +entry = lua_luaFuelCut, "lua_luaFuelCut", int, "%d" +entry = lua_clutchDownState, "lua_clutchDownState", int, "%d" +entry = lua_disableDecelerationFuelCutOff, "lua_disableDecelerationFuelCutOff", int, "%d" +entry = sd_tCharge, "Air: Charge temperature estimate", float, "%.3f" +entry = sd_tChargeK, "Air: Charge temperature estimate K", float, "%.3f" +entry = crankingFuel_coolantTemperatureCoefficient, "Fuel: cranking CLT mult", float, "%.3f" +entry = crankingFuel_tpsCoefficient, "Fuel: cranking TPS mult", float, "%.3f" +entry = crankingFuel_durationCoefficient, "Fuel: cranking duration mult", float, "%.3f" +entry = crankingFuel_fuel, "Fuel: Cranking cycle mass", float, "%.3f" +entry = baroCorrection, "Fuel: Barometric pressure mult", float, "%.3f" +entry = hellenBoardId, "Detected Board ID", int, "%d" +entry = clutchUpState, "Clutch: up", int, "%d" +entry = clutchDownState, "Clutch: down", int, "%d" +entry = brakePedalState, "Brake switch", int, "%d" +entry = startStopState, "startStopState", int, "%d" +entry = smartChipState, "smartChipState", int, "%d" +entry = smartChipRestartCounter, "smartChipRestartCounter", int, "%d" +entry = smartChipAliveCounter, "smartChipAliveCounter", int, "%d" +entry = startStopPhysicalState, "startStopPhysicalState", int, "%d" +entry = acrActive, "Harley ACR Active", int, "%d" +entry = acrEngineMovedRecently, "acrEngineMovedRecently", int, "%d" +entry = heaterControlEnabled, "heaterControlEnabled", int, "%d" +entry = luaDigitalState0, "luaDigitalState0", int, "%d" +entry = luaDigitalState1, "luaDigitalState1", int, "%d" +entry = luaDigitalState2, "luaDigitalState2", int, "%d" +entry = luaDigitalState3, "luaDigitalState3", int, "%d" +entry = startStopStateToggleCounter, "startStopStateToggleCounter", int, "%d" +entry = luaSoftSparkSkip, "luaSoftSparkSkip", float, "%.3f" +entry = luaHardSparkSkip, "luaHardSparkSkip", float, "%.3f" +entry = tractionControlSparkSkip, "tractionControlSparkSkip", float, "%.3f" +entry = desiredRpmLimit, "User-defined RPM hard limit", int, "%d" +entry = fuelInjectionCounter, "Fuel: Injection counter", int, "%d" +entry = globalSparkCounter, "Ign: Spark counter", int, "%d" +entry = fuelingLoad, "Fuel: Load", float, "%.3f" +entry = ignitionLoad, "Ignition: load", float, "%.3f" +entry = veTableYAxis, "veTableYAxis", float, "%.3f" +entry = overDwellCounter, "overDwellCounter", int, "%d" +entry = overDwellNotScheduledCounter, "overDwellNotScheduledCounter", int, "%d" +entry = sparkOutOfOrderCounter, "sparkOutOfOrderCounter", int, "%d" +entry = tpsFrom, "Fuel: TPS AE from", float, "%.3f" +entry = tpsTo, "Fuel: TPS AE to", float, "%.3f" +entry = deltaTps, "Fuel: TPS AE change", float, "%.3f" +entry = extraFuel, "extraFuel", float, "%.3f" +entry = valueFromTable, "valueFromTable", float, "%.3f" +entry = isAboveAccelThreshold, "Fuel: TPS AE Active", int, "%d" +entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d" +entry = isTimeToResetAccumulator, "Fuel: TPS AE: reset time", int, "%d" +entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d" +entry = belowEpsilon, "Fuel: TPS AE: below threshold", int, "%d" +entry = tooShort, "Fuel: TPS AE: too short", int, "%d" +entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f" +entry = accumulatedValue, "accumulatedValue", float, "%.3f" +entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f" +entry = maxExtraPerPeriod, "maxExtraPerPeriod", float, "%.3f" +entry = maxInjectedPerPeriod, "maxInjectedPerPeriod", float, "%.3f" +entry = cycleCnt, "cycleCnt", int, "%d" +entry = hwEventCounters1, "Hardware events since boot 1", int, "%d" +entry = hwEventCounters2, "Hardware events since boot 2", int, "%d" +entry = hwEventCounters3, "Hardware events since boot 3", int, "%d" +entry = hwEventCounters4, "Hardware events since boot 4", int, "%d" +entry = hwEventCounters5, "Hardware events since boot 5", int, "%d" +entry = hwEventCounters6, "Hardware events since boot 6", int, "%d" +entry = vvtCamCounter, "Sync: total cams front counter", int, "%d" +entry = mapVvt_MAP_AT_SPECIAL_POINT, "InstantMAP at readout angle", float, "%.3f" +entry = mapVvt_MAP_AT_DIFF, "InstantMAP delta @ readout angles", float, "%.3f" +entry = mapVvt_MAP_AT_CYCLE_COUNT, "mapVvt_MAP_AT_CYCLE_COUNT", int, "%d" +entry = mapVvt_sync_counter, "Instant MAP sync counter", int, "%d" +entry = currentEngineDecodedPhase, "Sync: Engine Phase", float, "%.3f" +entry = triggerToothAngleError, "Sync: trigger angle error", float, "%.3f" +entry = triggerIgnoredToothCount, "triggerIgnoredToothCount", int, "%d" +entry = mapCamPrevToothAngle, "Sync: MAP: prev angle", float, "%.3f" +entry = isDecodingMapCam, "isDecodingMapCam", int, "%d" +entry = triggerElapsedUs, "triggerElapsedUs", int, "%d" +entry = crankSynchronizationCounter0, "sync: Crank sync counter0", int, "%d" +entry = vvtSyncGapRatio0, "vvtSyncGapRatio0", float, "%.3f" +entry = vvtToothDurations00, "vvtToothDurations00", int, "%d" +entry = vvtCurrentPosition0, "vvtCurrentPosition0", float, "%.3f" +entry = vvtToothPosition10, "vvtToothPosition 10", float, "%.3f" +entry = vvtToothPosition20, "vvtToothPosition 20", float, "%.3f" +entry = vvtToothPosition30, "vvtToothPosition 30", float, "%.3f" +entry = vvtToothPosition40, "vvtToothPosition 40", float, "%.3f" +entry = triggerSyncGapRatio0, "Trigger Sync Latest Ratio0", float, "%.3f" +entry = triggerStateIndex0, "triggerStateIndex0", int, "%d" +entry = vvtStateIndex0, "vvtStateIndex0", int, "%d" +entry = crankSynchronizationCounter1, "sync: Crank sync counter1", int, "%d" +entry = vvtSyncGapRatio1, "vvtSyncGapRatio1", float, "%.3f" +entry = vvtToothDurations01, "vvtToothDurations01", int, "%d" +entry = vvtCurrentPosition1, "vvtCurrentPosition1", float, "%.3f" +entry = vvtToothPosition11, "vvtToothPosition 11", float, "%.3f" +entry = vvtToothPosition21, "vvtToothPosition 21", float, "%.3f" +entry = vvtToothPosition31, "vvtToothPosition 31", float, "%.3f" +entry = vvtToothPosition41, "vvtToothPosition 41", float, "%.3f" +entry = triggerSyncGapRatio1, "Trigger Sync Latest Ratio1", float, "%.3f" +entry = triggerStateIndex1, "triggerStateIndex1", int, "%d" +entry = vvtStateIndex1, "vvtStateIndex1", int, "%d" +entry = crankSynchronizationCounter2, "sync: Crank sync counter2", int, "%d" +entry = vvtSyncGapRatio2, "vvtSyncGapRatio2", float, "%.3f" +entry = vvtToothDurations02, "vvtToothDurations02", int, "%d" +entry = vvtCurrentPosition2, "vvtCurrentPosition2", float, "%.3f" +entry = vvtToothPosition12, "vvtToothPosition 12", float, "%.3f" +entry = vvtToothPosition22, "vvtToothPosition 22", float, "%.3f" +entry = vvtToothPosition32, "vvtToothPosition 32", float, "%.3f" +entry = vvtToothPosition42, "vvtToothPosition 42", float, "%.3f" +entry = triggerSyncGapRatio2, "Trigger Sync Latest Ratio2", float, "%.3f" +entry = triggerStateIndex2, "triggerStateIndex2", int, "%d" +entry = vvtStateIndex2, "vvtStateIndex2", int, "%d" +entry = crankSynchronizationCounter3, "sync: Crank sync counter3", int, "%d" +entry = vvtSyncGapRatio3, "vvtSyncGapRatio3", float, "%.3f" +entry = vvtToothDurations03, "vvtToothDurations03", int, "%d" +entry = vvtCurrentPosition3, "vvtCurrentPosition3", float, "%.3f" +entry = vvtToothPosition13, "vvtToothPosition 13", float, "%.3f" +entry = vvtToothPosition23, "vvtToothPosition 23", float, "%.3f" +entry = vvtToothPosition33, "vvtToothPosition 33", float, "%.3f" +entry = vvtToothPosition43, "vvtToothPosition 43", float, "%.3f" +entry = triggerSyncGapRatio3, "Trigger Sync Latest Ratio3", float, "%.3f" +entry = triggerStateIndex3, "triggerStateIndex3", int, "%d" +entry = vvtStateIndex3, "vvtStateIndex3", int, "%d" +entry = crankSynchronizationCounter4, "sync: Crank sync counter4", int, "%d" +entry = vvtSyncGapRatio4, "vvtSyncGapRatio4", float, "%.3f" +entry = vvtToothDurations04, "vvtToothDurations04", int, "%d" +entry = vvtCurrentPosition4, "vvtCurrentPosition4", float, "%.3f" +entry = vvtToothPosition14, "vvtToothPosition 14", float, "%.3f" +entry = vvtToothPosition24, "vvtToothPosition 24", float, "%.3f" +entry = vvtToothPosition34, "vvtToothPosition 34", float, "%.3f" +entry = vvtToothPosition44, "vvtToothPosition 44", float, "%.3f" +entry = triggerSyncGapRatio4, "Trigger Sync Latest Ratio4", float, "%.3f" +entry = triggerStateIndex4, "triggerStateIndex4", int, "%d" +entry = vvtStateIndex4, "vvtStateIndex4", int, "%d" +entry = camResyncCounter, "sync: Phase Re-Sync Counter", int, "%d" +entry = m_hasSynchronizedPhase, "sync: Known Engine Phase", int, "%d" +entry = wallFuelCorrection, "fuel wallwetting injection time", float, "%.3f" +entry = wallFuel, "Fuel on the wall", float, "%.3f" +entry = idleState, "idleState", int, "%d" +entry = currentIdlePosition, "Idle: Position", float, "%.3f" +entry = baseIdlePosition, "idle: base value", float, "%.3f" +entry = idleClosedLoop, "Idle: Closed loop", float, "%.3f" +entry = iacByTpsTaper, "idle: iacByTpsTaper portion", float, "%.3f" +entry = throttlePedalUpState, "idle: throttlePedalUpState", int, "%d" +entry = mightResetPid, "idle: mightResetPid", int, "%d" +entry = shouldResetPid, "Idle: shouldResetPid", int, "%d" +entry = wasResetPid, "Idle: wasResetPid", int, "%d" +entry = mustResetPid, "Idle: mustResetPid", int, "%d" +entry = isCranking, "Idle: cranking", int, "%d" +entry = isIacTableForCoasting, "isIacTableForCoasting", int, "%d" +entry = notIdling, "notIdling", int, "%d" +entry = needReset, "Idle: reset", int, "%d" +entry = isInDeadZone, "Idle: dead zone", int, "%d" +entry = isBlipping, "isBlipping", int, "%d" +entry = useClosedLoop, "useClosedLoop", int, "%d" +entry = badTps, "badTps", int, "%d" +entry = looksLikeRunning, "looksLikeRunning", int, "%d" +entry = looksLikeCoasting, "looksLikeCoasting", int, "%d" +entry = looksLikeCrankToIdle, "looksLikeCrankToIdle", int, "%d" +entry = isIdleCoasting, "Idle: coasting", int, "%d" +entry = isIdleClosedLoop, "Idle: Closed loop active", int, "%d" +entry = idleTarget, "Idle: Target RPM", int, "%d" +entry = targetRpmByClt, "Idle: Target RPM base", int, "%d" +entry = targetRpmAc, "Idle: Target A/C RPM", int, "%d" +entry = iacByRpmTaper, "idle: iacByRpmTaper portion", float, "%.3f" +entry = luaAdd, "idle: Lua Adder", float, "%.3f" +entry = targetWithIdlePosition0, "ETB: target with idle0", float, "%.3f" +entry = trim0, "ETB: trim0", float, "%.3f" +entry = luaAdjustment0, "ETB: luaAdjustment0", float, "%.3f" +entry = m_wastegatePosition0, "DC: wastegatePosition0", float, "%.3f" +entry = etbFeedForward0, "etbFeedForward0", float, "%.3f" +entry = etbIntegralError0, "etbIntegralError0", float, "%.3f" +entry = etbCurrentTarget0, "ETB: target for current pedal0", float, "%.3f" +entry = etbCurrentAdjustedTarget0, "etbCurrentAdjustedTarget0", float, "%.3f" +entry = etbRevLimitActive0, "etbRevLimitActive0", int, "%d" +entry = jamDetected0, "jamDetected0", int, "%d" +entry = validPlantPosition0, "validPlantPosition0", int, "%d" +entry = etbTpsErrorCounter0, "ETB TPS error counter0", int, "%d" +entry = etbPpsErrorCounter0, "ETB pedal error counter0", int, "%d" +entry = etbErrorCode0, "etbErrorCode0", int, "%d" +entry = etbErrorCodeBlinker0, "etbErrorCodeBlinker0", int, "%d" +entry = tcEtbDrop0, "ETB traction control0", int, "%d" +entry = jamTimer0, "ETB jam timer0", float, "%.3f" +entry = adjustedEtbTarget0, "ETB with adjustments0", int, "%d" +entry = state0, "state0", int, "%d" +entry = targetWithIdlePosition1, "ETB: target with idle1", float, "%.3f" +entry = trim1, "ETB: trim1", float, "%.3f" +entry = luaAdjustment1, "ETB: luaAdjustment1", float, "%.3f" +entry = m_wastegatePosition1, "DC: wastegatePosition1", float, "%.3f" +entry = etbFeedForward1, "etbFeedForward1", float, "%.3f" +entry = etbIntegralError1, "etbIntegralError1", float, "%.3f" +entry = etbCurrentTarget1, "ETB: target for current pedal1", float, "%.3f" +entry = etbCurrentAdjustedTarget1, "etbCurrentAdjustedTarget1", float, "%.3f" +entry = etbRevLimitActive1, "etbRevLimitActive1", int, "%d" +entry = jamDetected1, "jamDetected1", int, "%d" +entry = validPlantPosition1, "validPlantPosition1", int, "%d" +entry = etbTpsErrorCounter1, "ETB TPS error counter1", int, "%d" +entry = etbPpsErrorCounter1, "ETB pedal error counter1", int, "%d" +entry = etbErrorCode1, "etbErrorCode1", int, "%d" +entry = etbErrorCodeBlinker1, "etbErrorCodeBlinker1", int, "%d" +entry = tcEtbDrop1, "ETB traction control1", int, "%d" +entry = jamTimer1, "ETB jam timer1", float, "%.3f" +entry = adjustedEtbTarget1, "ETB with adjustments1", int, "%d" +entry = state1, "state1", int, "%d" +entry = faultCode0, "WBO: Fault code0", int, "%d" +entry = heaterDuty0, "WBO: Heater duty0", int, "%d" +entry = pumpDuty0, "WBO: Pump duty0", int, "%d" +entry = tempC0, "WBO: Temperature0", int, "%d" +entry = nernstVoltage0, "WBO: Nernst Voltage0", float, "%.3f" +entry = esr0, "WBO: ESR0", int, "%d" +entry = faultCode1, "WBO: Fault code1", int, "%d" +entry = heaterDuty1, "WBO: Heater duty1", int, "%d" +entry = pumpDuty1, "WBO: Pump duty1", int, "%d" +entry = tempC1, "WBO: Temperature1", int, "%d" +entry = nernstVoltage1, "WBO: Nernst Voltage1", float, "%.3f" +entry = esr1, "WBO: ESR1", int, "%d" +entry = dcOutput0, "DC: output0", float, "%.3f" +entry = isEnabled0_int, "DC: en0", int, "%d" +entry = isEnabled0, "isEnabled0", int, "%d" +entry = value0, "ETB: SENT value0", int, "%d" +entry = value1, "ETB: SENT value1", int, "%d" +entry = errorRate, "ETB: SENT error rate", float, "%.3f" +entry = vvtTarget, "vvtTarget", float, "%.3f" +entry = vvtOutput, "vvtOutput", float, "%.3f" +entry = lambdaCurrentlyGood, "lambdaCurrentlyGood", int, "%d" +entry = lambdaMonitorCut, "lambdaMonitorCut", int, "%d" +entry = lambdaTimeSinceGood, "lambdaTimeSinceGood", float, "%.3f" + + +[Menu] + +menuDialog = main +; see #1653 +; menu = "Data Logging" +; subMenu = std_ms3SdConsole, "Browse / Import SD Card" + + menu = "&Base &Engine" + subMenu = engineChars, "Base engine" + + groupMenu = "Limits and protection", {1}, { uiMode == 0 || uiMode == 1 } + groupChildMenu = limitsAndFallback, "Limits and fallbacks" + groupChildMenu = oilPressureProtection, "Oil pressure protection" + groupChildMenu = lambdaProtection, "Lambda protection", 0, { isInjectionEnabled } + + subMenu = triggerConfiguration, "Trigger" + subMenu = trigger_advanced, "Advanced Trigger", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = triggerConfiguration_gap, "Trigger Gap Override", {1}, { uiMode == 0 || uiMode == 1 } + subMenu = std_separator + subMenu = energySystems, "Battery and alternator" + subMenu = std_separator + + # Digital outputs + subMenu = outputsDialog, "Outputs" + subMenu = acSettings, "Air Conditioning" + subMenu = statusLeds, "Status LEDs" + + menu = "Fuel" + # basic + subMenu = injectorConfig, "Injection configuration" + subMenu = injectionSettings, "Injection hardware", {isInjectionEnabled == 1}, { uiMode == 0 || uiMode == 1 } + subMenu = cylinderBankSelect, "Cylinder bank selection", {isInjectionEnabled == 1}, { uiMode == 0 || uiMode == 1 } + subMenu = injectorNonlinear, "Injector small-pulse correction", {isInjectionEnabled == 1}, { uiMode == 0 || uiMode == 1 } + + subMenu = stagedInjection, "Staged injection", 0, {isInjectionEnabled} + subMenu = stagedInjectionOutputs, "Staged injection outputs", 0, {isInjectionEnabled && enableStagedInjection} + subMenu = stagedInjectionTbl, "Staged injection % table", 0, {isInjectionEnabled && enableStagedInjection} + + groupMenu = "Cylinder fuel trims" + groupChildMenu = fuelTrimTbl1, "Fuel trim cyl 1" + groupChildMenu = fuelTrimTbl2, "Fuel trim cyl 2", 0, { isInjectionEnabled && cylindersCount >= 2 } + groupChildMenu = fuelTrimTbl3, "Fuel trim cyl 3", 0, { isInjectionEnabled && cylindersCount >= 3 } + groupChildMenu = fuelTrimTbl4, "Fuel trim cyl 4", 0, { isInjectionEnabled && cylindersCount >= 4 } + groupChildMenu = fuelTrimTbl5, "Fuel trim cyl 5", 0, { isInjectionEnabled && cylindersCount >= 5 } + groupChildMenu = fuelTrimTbl6, "Fuel trim cyl 6", 0, { isInjectionEnabled && cylindersCount >= 6 } + groupChildMenu = fuelTrimTbl7, "Fuel trim cyl 7", 0, { isInjectionEnabled && cylindersCount >= 7 } + groupChildMenu = fuelTrimTbl8, "Fuel trim cyl 8", 0, { isInjectionEnabled && cylindersCount >= 8 } + groupChildMenu = fuelTrimTbl9, "Fuel trim cyl 9", 0, { isInjectionEnabled && cylindersCount >= 9 } + groupChildMenu = fuelTrimTbl10, "Fuel trim cyl 10", 0, { isInjectionEnabled && cylindersCount >= 10 } + groupChildMenu = fuelTrimTbl11, "Fuel trim cyl 11", 0, { isInjectionEnabled && cylindersCount >= 11 } + groupChildMenu = fuelTrimTbl12, "Fuel trim cyl 12", 0, { isInjectionEnabled && cylindersCount >= 12 } + + subMenu = std_separator + + # Air mass model + subMenu = veTableDialog, "VE", 0, {isInjectionEnabled == 1} + subMenu = veTableMap, "VE 3D view", 0, {isInjectionEnabled} + + + groupMenu = "VE blend tables" + groupChildMenu = veBlend1Cfg, "VE blend 1 bias", 0, {isInjectionEnabled} + groupChildMenu = veBlend1Table, "VE blend table 1", 0, { isInjectionEnabled && veBlends1_blendParameter != 0 } + groupChildMenu = veBlend2Cfg, "VE blend 2 bias", 0, {isInjectionEnabled} + groupChildMenu = veBlend2Table, "VE blend table 2", 0, { isInjectionEnabled && veBlends2_blendParameter != 0 } + groupChildMenu = veBlend3Cfg, "VE blend 3 bias", 0, {isInjectionEnabled} + groupChildMenu = veBlend3Table, "VE blend table 3", 0, { isInjectionEnabled && veBlends3_blendParameter != 0 } + groupChildMenu = veBlend4Cfg, "VE blend 4 bias", 0, {isInjectionEnabled} + groupChildMenu = veBlend4Table, "VE blend table 4", 0, { isInjectionEnabled && veBlends4_blendParameter != 0 } + +#if LAMBDA + subMenu = lambdaTableTbl, "Target lambda", 0, {isInjectionEnabled == 1} +#else + subMenu = afrTableTbl, "Target AFR", 0, {isInjectionEnabled == 1} +#endif + subMenu = std_separator + + subMenu = tChargeSettings, "Charge temperature estimation", 0, {isInjectionEnabled == 1} + subMenu = baroCorrTbl, "Barometric pressure correction", {isInjectionEnabled == 1 && fuelAlgorithm == 0}, { uiMode == 0 || uiMode == 1 } + subMenu = mapEstimateTableTbl, "MAP estimate table", {isInjectionEnabled == 1 && fuelAlgorithm == 0}, { uiMode == 0 || uiMode == 1 } + + subMenu = std_separator + + subMenu = cltFuelCorrCurve, "CLT multiplier", 0, {isInjectionEnabled == 1} + subMenu = iatFuelCorrCurve, "IAT multiplier", 0, {isInjectionEnabled == 1} + subMenu = fuelClosedLoopDialog, "Closed loop fuel correction", 0, {isInjectionEnabled == 1} + subMenu = coastingFuelCutControl, "Deceleration fuel cutoff (DFCO)", 0, {isInjectionEnabled == 1} + subMenu = std_separator + + # Injector model + subMenu = injPhaseTableTbl, "Injection phase", 0, {isInjectionEnabled == 1} + subMenu = std_separator + + # Accel enrichment + subMenu = AccelEnrich, "Acceleration enrichment", 0, {isInjectionEnabled == 1} + subMenu = tpsTpsDialog, "TPS/TPS acceleration extra fuel", 0, {isInjectionEnabled == 1} + subMenu = tpsTspRpmCorrection, "TPS/TPS extra fuel RPM correction", 0, {isInjectionEnabled == 1} + + groupMenu = "Wall wetting AE" + groupChildMenu = wwTauCurves, "Evap time", 0, { complexWallModel != 0 } + groupChildMenu = wwBetaCurves, "Impact fraction", 0, { complexWallModel != 0 } + + menu = "Ignition" + subMenu = ignitionSettings, "Ignition settings" + subMenu = std_separator + + subMenu = ignitionTableTbl, "Ignition advance", 0, {isIgnitionEnabled} + subMenu = ignitionTableMap, "Ignition advance", 0, {isIgnitionEnabled} + subMenu = cltTimingCorrCurve, "Ign CLT correction", 0, {isIgnitionEnabled == 1} + subMenu = ignitionIatCorrTableTbl, "Ign IAT correction", 0, {isIgnitionEnabled == 1} + subMenu = std_separator + + subMenu = dwellSettings, "Dwell", 0, {isIgnitionEnabled == 1} + groupMenu = "Ignition blend tables" + groupChildMenu = ignAdder1Cfg, "Ignition blend 1 bias", 0, {isIgnitionEnabled} + groupChildMenu = ignAdder1Table, "Ignition blend table 1", 0, { isIgnitionEnabled && ignBlends1_blendParameter != 0 } + groupChildMenu = ignAdder2Cfg, "Ignition blend 2 bias", 0, {isIgnitionEnabled} + groupChildMenu = ignAdder2Table, "Ignition blend table 2", 0, { isIgnitionEnabled && ignBlends2_blendParameter != 0 } + groupChildMenu = ignAdder3Cfg, "Ignition blend 3 bias", 0, {isIgnitionEnabled} + groupChildMenu = ignAdder3Table, "Ignition blend table 3", 0, { isIgnitionEnabled && ignBlends3_blendParameter != 0 } + groupChildMenu = ignAdder4Cfg, "Ignition blend 4 bias", 0, {isIgnitionEnabled} + groupChildMenu = ignAdder4Table, "Ignition blend table 4", 0, { isIgnitionEnabled && ignBlends4_blendParameter != 0 } + groupMenu = "Cylinder ign trims" + groupChildMenu = ignTrimTbl1, "Ignition trim cyl 1" + groupChildMenu = ignTrimTbl2, "Ignition trim cyl 2", 0, { isInjectionEnabled && cylindersCount >= 2 } + groupChildMenu = ignTrimTbl3, "Ignition trim cyl 3", 0, { isInjectionEnabled && cylindersCount >= 3 } + groupChildMenu = ignTrimTbl4, "Ignition trim cyl 4", 0, { isInjectionEnabled && cylindersCount >= 4 } + groupChildMenu = ignTrimTbl5, "Ignition trim cyl 5", 0, { isInjectionEnabled && cylindersCount >= 5 } + groupChildMenu = ignTrimTbl6, "Ignition trim cyl 6", 0, { isInjectionEnabled && cylindersCount >= 6 } + groupChildMenu = ignTrimTbl7, "Ignition trim cyl 7", 0, { isInjectionEnabled && cylindersCount >= 7 } + groupChildMenu = ignTrimTbl8, "Ignition trim cyl 8", 0, { isInjectionEnabled && cylindersCount >= 8 } + groupChildMenu = ignTrimTbl9, "Ignition trim cyl 9", 0, { isInjectionEnabled && cylindersCount >= 9 } + groupChildMenu = ignTrimTbl10, "Ignition trim cyl 10", 0, { isInjectionEnabled && cylindersCount >= 10 } + groupChildMenu = ignTrimTbl11, "Ignition trim cyl 11", 0, { isInjectionEnabled && cylindersCount >= 11 } + groupChildMenu = ignTrimTbl12, "Ignition trim cyl 12", 0, { isInjectionEnabled && cylindersCount >= 12 } + subMenu = std_separator + + subMenu = multisparkSettings, "Multispark", 0, {isIgnitionEnabled == 1} + + menu = "&Cranking" + subMenu = crankingDialog, "Cranking settings" + subMenu = postCrankingEnrichmentTbl,"After-start enrichment", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = primingFuelPulsePanel, "Priming pulse", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = std_separator + + subMenu = crankingCltCurve, "Fuel CLT multiplier" + subMenu = crankingCltCurveE100, "Fuel CLT multiplier (Flex Fuel E85)", { flexSensorPin != 0 && flexCranking }, { uiMode == 0 || uiMode == 1 } + subMenu = crankingCycleFuelMultTbl, "Fuel duration multiplier" + subMenu = crankingTpsCurve, "Fuel TPS multiplier" + subMenu = std_separator + + subMenu = crankingAdvanceCurve, "Cranking ignition advance", {useSeparateAdvanceForCranking == 1}, { uiMode == 0 || uiMode == 1 } + subMenu = std_separator + + subMenu = cltCrankingCurve, "Cranking Idle Air CLT multiplier", {overrideCrankingIacSetting == 1}, { uiMode == 0 || uiMode == 1 } + + menu = "&Idle" + subMenu = idleSettings, "Idle settings" + subMenu = idlehw, "Idle hardware" + subMenu = std_separator + subMenu = cltIdleRPMCurve, "Target RPM" + subMenu = cltIdleCurve, "Idle CLT multiplier" + subMenu = std_separator + subMenu = idleTimingPidCorrDialog, "Closed-loop idle timing" + subMenu = iacPidMultTbl, "IAC PID multiplier", 0, {idleMode == 0 && useIacPidMultTable == 1} + subMenu = iacCoastingCurve, "Coasting IAC position", 0, {useIacTableForCoasting == 1} + subMenu = std_separator + subMenu = idleVeTableTbl, "Idle VE", 0, {useSeparateVeForIdle == 1} + subMenu = idleAdvanceCurve, "Idle Ignition advance", 0, {useSeparateAdvanceForIdle == 1} + + menu = "&Advanced" + subMenu = smLaunchControl, "Launch Control" + subMenu = ShiftTorqueReductionDialog, "Shift Torque Reduction (Flat Shift)" + subMenu = ignitionCylExtra, "Cylinder offsets", 0 + + subMenu = std_separator + subMenu = boostDialog, "Boost control" + subMenu = boostOpenLoopDialog, "Boost control open loop", { isBoostControlEnabled } + subMenu = boostOpenLoopGearAdderDialog, "Boost control open loop gear adder", { isBoostControlEnabled } + subMenu = boostPidDialog, "Boost control PID", { isBoostControlEnabled && boostType == 1 } + subMenu = boostTargetDialog, "Boost control target", { isBoostControlEnabled && boostType == 1 } + subMenu = cltBoostCorrCurve, "CLT boost duty multiplier", { isBoostControlEnabled }, { uiMode == 0 || uiMode == 1 } + subMenu = iatBoostCorrCurve, "IAT boost duty multiplier", { isBoostControlEnabled }, { uiMode == 0 || uiMode == 1 } + subMenu = cltBoostAdderCurve, "CLT boost target adder", { isBoostControlEnabled && boostType == 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = iatBoostAdderCurve, "IAT boost target adder", { isBoostControlEnabled && boostType == 1 }, { uiMode == 0 || uiMode == 1 } + + groupMenu = "Boost blend tables" + groupChildMenu = boostOpenBlend1Cfg, "Open loop 1 bias", { isBoostControlEnabled } + groupChildMenu = boostOpenBlend1Table, "Open loop 1 adder", { isBoostControlEnabled && boostOpenLoopBlends1_blendParameter != 0 } + groupChildMenu = boostOpenBlend2Cfg, "Open loop 2 bias", { isBoostControlEnabled } + groupChildMenu = boostOpenBlend2Table, "Open loop 2 adder", { isBoostControlEnabled && boostOpenLoopBlends2_blendParameter != 0 } + groupChildMenu = boostClosedBlend1Cfg, "Closed loop 1 bias", { isBoostControlEnabled && boostType == 1 } + groupChildMenu = boostClosedBlend2Table, "Closed loop 1 adder", { isBoostControlEnabled && boostType == 1 && boostClosedLoopBlends1_blendParameter != 0 } + groupChildMenu = boostClosedBlend2Cfg, "Closed loop 2 bias", { isBoostControlEnabled && boostType == 1 } + groupChildMenu = boostClosedBlend2Table, "Closed loop 2 adder", { isBoostControlEnabled && boostType == 1 && boostClosedLoopBlends2_blendParameter != 0 } + + subMenu = boostEtbPid, "ETB-style Wastegate Actuator", { etbFunctions1 == 4 || etbFunctions2 == 4 } + + subMenu = std_separator + subMenu = gppwm1, "General Purpose PWM 1", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = gppwm2, "General Purpose PWM 2", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = gppwm3, "General Purpose PWM 3", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = gppwm4, "General Purpose PWM 4", { 1 }, { uiMode == 0 || uiMode == 1 } + + subMenu = std_separator + subMenu = etbDialog, "Electronic throttle body", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = etbTpsBiasCurve, "ETB bias curve (feed forward)", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = pedalToTpsTbl, "ETB pedal target" + subMenu = throttle2TrimTbl, "ETB #2 Trim", { tps2_1AdcChannel != 0 } + + subMenu = std_separator + subMenu = vvtPidDialog, "VVT outputs and PID", { vvtMode1 != 0 }, { uiMode == 0 || uiMode == 1 } + subMenu = vvtTable1Tbl, "VVT intake target", { vvtMode1 != 0 && vvtPins1 != 0 } + subMenu = vvtTable2Tbl, "VVT exhaust target", { vvtMode2 != 0 && vvtPins2 != 0 } + + subMenu = std_separator + subMenu = auxInputsDialog, "Lua Analog Inputs", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = luaDigitalInputsDialog, "Lua Digital Inputs", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = luaOutputs, "Lua Script PWM Outputs", { 1 }, { uiMode == 0 || uiMode == 1 } + + groupMenu = "Lua Calibrations", { 1 }, { uiMode == 0 || uiMode == 1 } + groupChildMenu = scriptSetting, "Lua Script Settings" + + groupChildMenu = scriptTable1TblSettings, "Script Table #1" + groupChildMenu = scriptTable2TblSettings, "Script Table #2" + groupChildMenu = scriptTable3TblSettings, "Script Table #3" + groupChildMenu = scriptTable4TblSettings, "Script Table #4" + + groupChildMenu = scriptCurve1Settings, "Script Curve #1" + groupChildMenu = scriptCurve2Settings, "Script Curve #2" + groupChildMenu = scriptCurve3Settings, "Script Curve #3" + groupChildMenu = scriptCurve4Settings, "Script Curve #4" + groupChildMenu = scriptCurve5Settings, "Script Curve #5" + groupChildMenu = scriptCurve6Settings, "Script Curve #6" + + + menu = "&Sensors", { 1 }, { uiMode == 0 || uiMode == 1 } + groupMenu = "Chassis sensors" + groupChildMenu = otherSensorInputs, "Misc sensors", { 1 }, { uiMode == 0 || uiMode == 1 } + groupChildMenu = speedSensor, "Vehicle speed sensor" + groupChildMenu = ambientTempSensor, "Ambient temp sensor", { 1 }, { uiMode == 0 || uiMode == 1 } + groupChildMenu = acPressureSensor, "A/C Pressure" + + # Base analog input settings + subMenu = analogInputSettings, "Analog input settings", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = std_separator + + # Thermistors + subMenu = cltSensor, "CLT sensor", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = iatSensor, "IAT sensor", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = std_separator + + # TPS/pedal + subMenu = tpsSensor, "TPS", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = pedalSensor, "Accelerator pedal", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = std_separator + + # MAP/Baro + subMenu = mapSettings, "MAP sensor", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = mapCurves, "MAP sampling", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = baroSettings, "Baro sensor", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = std_separator + + # MAF + subMenu = mafSettings, "MAF sensor" + subMenu = mafDecodingCurve, "MAF transfer function", 0, {mafAdcChannel != 0 } + subMenu = std_separator + + # O2 sensor(s) + subMenu = egoSettings, "O2 sensor", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = widebandConfig, "rusEFI Wideband Controller", 0, { canReadEnabled && canWriteEnabled } + subMenu = std_separator + + # Misc sensors + groupMenu = "Oil sensors" + groupChildMenu = oilPressureSensor, "Oil pressure" + groupChildMenu = oilTempSensor, "Oil temp sensor" + + groupMenu = "Fuel sensors" + groupChildMenu = fuelPressureSensor, "Fuel pressure" + groupChildMenu = fuelTempSensor, "Fuel temp sensor" + groupChildMenu = fuelLevelDialog, "Fuel level sensor" + + groupMenu = "Turbo sensors" + groupChildMenu = egtInputs, "EGT" + groupChildMenu = wastegateIdlePos, "Wastegate and idle position sensors" + groupChildMenu = compressorDischargeTemperature, "Compressor discharge temp" + + groupMenu = "Aux sensors" + groupChildMenu = auxTempSensor1Sensor, "AuxTemp1 sensor", { 1 }, { uiMode == 0 || uiMode == 1 } + groupChildMenu = auxTempSensor2Sensor, "AuxTemp2 sensor", { 1 }, { uiMode == 0 || uiMode == 1 } + groupChildMenu = auxLinearSensors, "Aux Sensors" + + menu = "CAN-bus" + subMenu = canBusMain, "CAN Bus Settings" + subMenu = std_separator + + subMenu = speedSensorCan "CAN Vehicle speed sensor" + subMenu = uegoCan, "CAN O2 sensors" + subMenu = egtInputsCan, "CAN EGT sensors" + subMenu = msIoBox, "CAN MS IO-Box Settings" + + menu = "&Controller" + subMenu = ecuStimulator, "ECU stimulator" + subMenu = ioTest, "Bench test" + subMenu = injTest, "Injector test" + subMenu = engineTypeDialog, "Popular vehicles" + subMenu = std_separator + + subMenu = spiBuses, "SPI Buses" + subMenu = spiDevices, "SPI Devices" + subMenu = monitoringSettings, "rusEFI console" + subMenu = std_separator + + subMenu = sdCard, "SD Card Logger" + subMenu = connection, "Connection" + subMenu = std_separator + + subMenu = std_separator + + subMenu = allPins1, "Full pinout 1/3" + subMenu = allPins2, "Full pinout 2/3" + subMenu = allPins3_1_and_2 "Full pinout 3/3" + + # EXPERIMENTAL FEATURES + + + subMenu = std_separator + + subMenu = tractionEtbTableTbl, "Traction Control ETB Drop" + subMenu = tractionTimingTableTbl, "Traction Control Timing Adjustment" + subMenu = tractionIgnitionSkipDialog, "Traction Control Skip Ignition" + subMenu = std_separator + + + subMenu = parkingLot, "Experimental 1" + subMenu = parkingLot2, "Experimental 2" + subMenu = parkingLot3, "Experimental 3" + subMenu = harleyAcr, "Harley" + subMenu = antiLagDialog, "Anti-Lag ALS" + subMenu = rotaryDialog, "Rotary" + subMenu = throttleEffectiveArea, "Throttle effective area", { 1 }, { uiMode == 0 || uiMode == 1 } + + menu = "Help" + subMenu = helpGeneral, "rusEFI Info" + + menu = "&View", { 1 }, { uiMode == 0 || uiMode == 1 } + subMenu = fuel_computerDialog, "fuel_computer" + subMenu = ignition_stateDialog, "ignition_state" + subMenu = knock_controllerDialog, "knock_controller" + subMenu = tcu_controllerDialog, "tcu_controller" + subMenu = throttle_modelDialog, "throttle_model" + 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" + subMenu = fan_control0Dialog, "fan_control0" + subMenu = fan_control1Dialog, "fan_control1" + subMenu = fuel_pump_controlDialog, "fuel_pump_control" + subMenu = main_relayDialog, "main_relay" + subMenu = engine_stateDialog, "engine_state" + subMenu = tps_accel_stateDialog, "tps_accel_state" + subMenu = trigger_centralDialog, "trigger_central" + subMenu = trigger_state0Dialog, "trigger_state0" + subMenu = trigger_state1Dialog, "trigger_state1" + subMenu = trigger_state2Dialog, "trigger_state2" + subMenu = trigger_state3Dialog, "trigger_state3" + subMenu = trigger_state4Dialog, "trigger_state4" + subMenu = trigger_state_primaryDialog, "trigger_state_primary" + subMenu = wall_fuel_stateDialog, "wall_fuel_state" + subMenu = idle_stateDialog, "idle_state" + subMenu = electronic_throttle0Dialog, "electronic_throttle0" + subMenu = electronic_throttle1Dialog, "electronic_throttle1" + subMenu = wideband_state0Dialog, "wideband_state0" + subMenu = wideband_state1Dialog, "wideband_state1" + subMenu = dc_motorsDialog, "dc_motors" + subMenu = sent_stateDialog, "sent_state" + subMenu = vvtDialog, "vvt" + subMenu = lambda_monitorDialog, "lambda_monitor" + + + +[ControllerCommands] +; commandName = command1, command2, commandn... +; command in standard ini format, a command name can be assigned to 1 to n commands that will be executed in order. +; This does not include any resultant protocol envelope data, only the response data itself. + +; WARNING!! These commands bypass TunerStudio's normal memory synchronization. If these commands +; alter mapped settings (Constant) memory in the controller, TunerStudio will have an out of sync condition +; and may create error messages. +; It is expected that these commands would not typically alter any ram mapped to a Constant. + +; +; see TS_IO_TEST_COMMAND in firmware code +; + +cmd_test_spk1 = "Z\x00\x12\x00\x01" +cmd_test_spk2 = "Z\x00\x12\x00\x02" +cmd_test_spk3 = "Z\x00\x12\x00\x03" +cmd_test_spk4 = "Z\x00\x12\x00\x04" +cmd_test_spk5 = "Z\x00\x12\x00\x05" +cmd_test_spk6 = "Z\x00\x12\x00\x06" +cmd_test_spk7 = "Z\x00\x12\x00\x07" +cmd_test_spk8 = "Z\x00\x12\x00\x08" +cmd_test_spk9 = "Z\x00\x12\x00\x09" +cmd_test_spk10 = "Z\x00\x12\x00\x0a" +cmd_test_spk11 = "Z\x00\x12\x00\x0b" +cmd_test_spk12 = "Z\x00\x12\x00\x0c" + +cmd_test_lua1 = "Z\x00\x20\x00\x01" +cmd_test_lua2 = "Z\x00\x20\x00\x02" +cmd_test_lua3 = "Z\x00\x20\x00\x03" +cmd_test_lua4 = "Z\x00\x20\x00\x04" +cmd_test_lua5 = "Z\x00\x20\x00\x05" +cmd_test_lua6 = "Z\x00\x20\x00\x06" +cmd_test_lua7 = "Z\x00\x20\x00\x07" +cmd_test_lua8 = "Z\x00\x20\x00\x08" + +cmd_test_inj1 = "Z\x00\x13\x00\x01" +cmd_test_inj2 = "Z\x00\x13\x00\x02" +cmd_test_inj3 = "Z\x00\x13\x00\x03" +cmd_test_inj4 = "Z\x00\x13\x00\x04" +cmd_test_inj5 = "Z\x00\x13\x00\x05" +cmd_test_inj6 = "Z\x00\x13\x00\x06" +cmd_test_inj7 = "Z\x00\x13\x00\x07" +cmd_test_inj8 = "Z\x00\x13\x00\x08" +cmd_test_inj9 = "Z\x00\x13\x00\x09" +cmd_test_inj10 = "Z\x00\x13\x00\x0a" +cmd_test_inj11 = "Z\x00\x13\x00\x0b" +cmd_test_inj12 = "Z\x00\x13\x00\x0c" + +cmd_test_cancel = "Z\x00\x16\x00\x0f" + +cmd_test_sol1 = "Z\x00\x19\x00\x01" +cmd_test_sol2 = "Z\x00\x19\x00\x02" +cmd_test_sol3 = "Z\x00\x19\x00\x03" +cmd_test_sol4 = "Z\x00\x19\x00\x04" +cmd_test_sol5 = "Z\x00\x19\x00\x05" +cmd_test_sol6 = "Z\x00\x19\x00\x06" + +cmd_test_main_relay = "Z\x00\x16\x00\x00" +cmd_test_fuel_pump = "Z\x00\x16\x00\x01" +cmd_test_starter_relay = "Z\x00\x16\x00\x02" +cmd_test_starter_disable_relay = "Z\x00\x16\x00\x03" +cmd_test_ac_relay = "Z\x00\x16\x00\x06" +cmd_test_fan_1 = "Z\x00\x16\x00\x04" +cmd_test_fan_2 = "Z\x00\x16\x00\x05" +cmd_test_check_engine_light = "Z\x00\x16\x00\x07" +cmd_test_idle_valve = "Z\x00\x16\x00\x08" +cmd_test_second_idle_valve = "Z\x00\x16\x00\x0e" +cmd_test_hpfp_valve = "Z\x00\x16\x00\x09" +cmd_test_acr_valve = "Z\x00\x16\x00\x1c" +cmd_test_acr2_valve = "Z\x00\x16\x00\x1d" +cmd_test_vvt0_valve = "Z\x00\x16\x00\x10" +cmd_test_vvt1_valve = "Z\x00\x16\x00\x11" +cmd_test_vvt2_valve = "Z\x00\x16\x00\x12" +cmd_test_vvt3_valve = "Z\x00\x16\x00\x13" + +cmd_calibrate_pedal_up = "Z\x00\x14\x00\x06" +cmd_calibrate_pedal_down = "Z\x00\x14\x00\x07" +cmd_tle8888_init = "Z\x00\x14\x00\x08" +cmd_mc33810_init = "Z\x00\x14\x00\x14" +cmd_write_config = "Z\x00\x14\x00\x0a" +;cmd_etb_reset = "Z\x00\x14\x00\x0b" +cmd_etb_autotune = "Z\x00\x14\x00\x0C" +cmd_enable_self_stim = "Z\x00\x14\x00\x0D" +cmd_etb_auto_calibrate = "Z\x00\x14\x00\x0E" +cmd_disable_self_stim = "Z\x00\x14\x00\x0e" +cmd_etb_autotune_stop = "Z\x00\x14\x00\x10" +cmd_etb_auto_calibrate_2 = "Z\x00\x14\x00\x11" +cmd_wideband_firmare_update = "Z\x00\x14\x00\x12" +cmd_enable_ext_stim = "Z\x00\x14\x00\x13" +cmd_etb_disable_jam_detect = "Z\x00\x14\x00\x14" +cmd_burn_without_flash = "Z\x00\x14\x00\x15" + +cmd_set_wideband_idx_0 = "Z\x00\x15\x00\x00" +cmd_set_wideband_idx_1 = "Z\x00\x15\x00\x01" + +cmd_stop_engine = "Z\x00\x79\x00\x00" + +; reboot ECU +cmd_reset_controller = "Z\x00\xbb\x00\x00" +; jump to DFU mode +cmd_dfu = "Z\x00\xba\x00\x00" +; jump to OpenBLT bootloader +cmd_openblt = "Z\x00\xbc\x00\x00" + +; See 'executeTSCommand' in firmware source code + + + +cmd_set_engine_type_default = "Z\x00\x1f\x00\x00" + +[UserDefined] +indicatorPanel = fuel_computerIndicatorPanel, 2 + indicator = {injectorHwIssue}, "injectorHwIssue No", "injectorHwIssue Yes" + +dialog = fuel_computerDialog, "fuel_computer" + panel = fuel_computerIndicatorPanel + liveGraph = fuel_computer_1_Graph, "Graph", South + graphLine = totalFuelCorrection + graphLine = running_postCrankingFuelCorrection + graphLine = running_intakeTemperatureCoefficient + graphLine = running_coolantTemperatureCoefficient + liveGraph = fuel_computer_2_Graph, "Graph", South + graphLine = running_timeSinceCrankingInSecs + graphLine = running_baseFuel + graphLine = running_fuel + graphLine = afrTableYAxis + liveGraph = fuel_computer_3_Graph, "Graph", South + graphLine = targetLambda + graphLine = targetAFR + graphLine = stoichiometricRatio + graphLine = sdTcharge_coff + liveGraph = fuel_computer_4_Graph, "Graph", South + graphLine = sdAirMassInOneCylinder + graphLine = normalizedCylinderFilling + graphLine = brokenInjector + graphLine = unused88 + liveGraph = fuel_computer_5_Graph, "Graph", South + graphLine = idealEngineTorque + +indicatorPanel = ignition_stateIndicatorPanel, 2 + indicator = {luaIgnitionSkip}, "luaIgnitionSkip No", "luaIgnitionSkip Yes" + +dialog = ignition_stateDialog, "ignition_state" + panel = ignition_stateIndicatorPanel + liveGraph = ignition_state_1_Graph, "Graph", South + graphLine = baseDwell + graphLine = sparkDwell + graphLine = dwellDurationAngle + graphLine = cltTimingCorrection + liveGraph = ignition_state_2_Graph, "Graph", South + graphLine = timingIatCorrection + graphLine = timingPidCorrection + graphLine = baseIgnitionAdvance + graphLine = correctedIgnitionAdvance + liveGraph = ignition_state_3_Graph, "Graph", South + graphLine = tractionAdvanceDrop + graphLine = dwellVoltageCorrection + graphLine = luaTimingAdd + graphLine = luaTimingMult + + +dialog = knock_controllerDialog, "knock_controller" + liveGraph = knock_controller_1_Graph, "Graph", South + graphLine = m_knockLevel + graphLine = m_knockCyl1 + graphLine = m_knockCyl2 + graphLine = m_knockCyl3 + liveGraph = knock_controller_2_Graph, "Graph", South + graphLine = m_knockCyl4 + graphLine = m_knockCyl5 + graphLine = m_knockCyl6 + graphLine = m_knockCyl7 + liveGraph = knock_controller_3_Graph, "Graph", South + graphLine = m_knockCyl8 + graphLine = m_knockCyl9 + graphLine = m_knockCyl10 + graphLine = m_knockCyl11 + liveGraph = knock_controller_4_Graph, "Graph", South + graphLine = m_knockCyl12 + graphLine = m_knockRetard + graphLine = m_knockThreshold + graphLine = m_knockCount + liveGraph = knock_controller_5_Graph, "Graph", South + graphLine = m_maximumRetard + graphLine = m_knockSpectrum1 + graphLine = m_knockSpectrum2 + graphLine = m_knockSpectrum3 + liveGraph = knock_controller_6_Graph, "Graph", South + graphLine = m_knockSpectrum4 + graphLine = m_knockSpectrum5 + graphLine = m_knockSpectrum6 + graphLine = m_knockSpectrum7 + liveGraph = knock_controller_7_Graph, "Graph", South + graphLine = m_knockSpectrum8 + graphLine = m_knockSpectrum9 + graphLine = m_knockSpectrum10 + graphLine = m_knockSpectrum11 + liveGraph = knock_controller_8_Graph, "Graph", South + graphLine = m_knockSpectrum12 + graphLine = m_knockSpectrum13 + graphLine = m_knockSpectrum14 + graphLine = m_knockSpectrum15 + liveGraph = knock_controller_9_Graph, "Graph", South + graphLine = m_knockSpectrum16 + graphLine = m_knockSpectrumChannelCyl + graphLine = m_knockFrequencyStart + graphLine = m_knockFrequencyStep + liveGraph = knock_controller_10_Graph, "Graph", South + graphLine = m_knockFuelTrimMultiplier + +indicatorPanel = tcu_controllerIndicatorPanel, 2 + indicator = {isShifting}, "isShifting No", "isShifting Yes" + +dialog = tcu_controllerDialog, "tcu_controller" + panel = tcu_controllerIndicatorPanel + liveGraph = tcu_controller_1_Graph, "Graph", South + graphLine = tcuCurrentGear + graphLine = tcRatio + graphLine = lastShiftTime + graphLine = tcu_currentRange + liveGraph = tcu_controller_2_Graph, "Graph", South + graphLine = pressureControlDuty + graphLine = torqueConverterDuty + +indicatorPanel = throttle_modelIndicatorPanel, 2 + indicator = {throttleUseWotModel}, "throttleUseWotModel No", "throttleUseWotModel Yes" + +dialog = throttle_modelDialog, "throttle_model" + panel = throttle_modelIndicatorPanel + liveGraph = throttle_model_1_Graph, "Graph", South + graphLine = throttleModelCrossoverAngle + graphLine = throttleEstimatedFlow + +indicatorPanel = high_pressure_fuel_pumpIndicatorPanel, 2 + indicator = {noValve}, "noValve No", "noValve Yes" + indicator = {angleAboveMin}, "angleAboveMin No", "angleAboveMin Yes" + indicator = {isHpfpInactive}, "isHpfpInactive No", "isHpfpInactive Yes" + +dialog = high_pressure_fuel_pumpDialog, "high_pressure_fuel_pump" + panel = high_pressure_fuel_pumpIndicatorPanel + liveGraph = high_pressure_fuel_pump_1_Graph, "Graph", South + graphLine = m_requested_pump + graphLine = fuel_requested_percent + graphLine = fuel_requested_percent_pi + graphLine = m_pressureTarget_kPa + liveGraph = high_pressure_fuel_pump_2_Graph, "Graph", South + graphLine = nextLobe + graphLine = di_nextStart + + +dialog = injector_modelDialog, "injector_model" + liveGraph = injector_model_1_Graph, "Graph", South + graphLine = m_deadtime + graphLine = pressureDelta + graphLine = pressureRatio + +indicatorPanel = launch_control_stateIndicatorPanel, 2 + indicator = {launchActivatePinState}, "launchActivatePinState No", "launchActivatePinState Yes" + indicator = {isPreLaunchCondition}, "isPreLaunchCondition No", "isPreLaunchCondition Yes" + indicator = {isLaunchCondition}, "isLaunchCondition No", "isLaunchCondition Yes" + indicator = {isSwitchActivated}, "isSwitchActivated No", "isSwitchActivated Yes" + indicator = {isClutchActivated}, "isClutchActivated No", "isClutchActivated Yes" + indicator = {isBrakePedalActivated}, "isBrakePedalActivated No", "isBrakePedalActivated Yes" + indicator = {isValidInputPin}, "isValidInputPin No", "isValidInputPin Yes" + indicator = {activateSwitchCondition}, "activateSwitchCondition No", "activateSwitchCondition Yes" + indicator = {rpmLaunchCondition}, "rpmLaunchCondition No", "rpmLaunchCondition Yes" + indicator = {rpmPreLaunchCondition}, "rpmPreLaunchCondition No", "rpmPreLaunchCondition Yes" + indicator = {speedCondition}, "speedCondition No", "speedCondition Yes" + indicator = {tpsCondition}, "tpsCondition No", "tpsCondition Yes" + +dialog = launch_control_stateDialog, "launch_control_state" + panel = launch_control_stateIndicatorPanel + 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" + indicator = {isTimeConditionSatisfied}, "isTimeConditionSatisfied No", "isTimeConditionSatisfied Yes" + indicator = {isRpmConditionSatisfied}, "isRpmConditionSatisfied No", "isRpmConditionSatisfied Yes" + indicator = {isAppConditionSatisfied}, "isAppConditionSatisfied No", "isAppConditionSatisfied Yes" + indicator = {isFlatShiftConditionSatisfied}, "isFlatShiftConditionSatisfied No", "isFlatShiftConditionSatisfied 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" + indicator = {ALSMaxRPMCondition}, "ALSMaxRPMCondition No", "ALSMaxRPMCondition Yes" + indicator = {ALSMinCLTCondition}, "ALSMinCLTCondition No", "ALSMinCLTCondition Yes" + indicator = {ALSMaxCLTCondition}, "ALSMaxCLTCondition No", "ALSMaxCLTCondition Yes" + indicator = {ALSMaxThrottleIntentCondition}, "ALSMaxThrottleIntentCondition No", "ALSMaxThrottleIntentCondition Yes" + indicator = {isALSSwitchActivated}, "isALSSwitchActivated No", "isALSSwitchActivated Yes" + indicator = {ALSActivatePinState}, "ALSActivatePinState No", "ALSActivatePinState Yes" + indicator = {ALSSwitchCondition}, "ALSSwitchCondition No", "ALSSwitchCondition Yes" + indicator = {ALSTimerCondition}, "ALSTimerCondition No", "ALSTimerCondition Yes" + +dialog = antilag_system_stateDialog, "antilag_system_state" + panel = antilag_system_stateIndicatorPanel + liveGraph = antilag_system_state_1_Graph, "Graph", South + graphLine = fuelALSCorrection + graphLine = timingALSCorrection + graphLine = timingALSSkip + +indicatorPanel = boost_controlIndicatorPanel, 2 + indicator = {isTpsInvalid}, "isTpsInvalid No", "isTpsInvalid Yes" + indicator = {m_shouldResetPid}, "m_shouldResetPid No", "m_shouldResetPid Yes" + indicator = {isBelowClosedLoopThreshold}, "isBelowClosedLoopThreshold No", "isBelowClosedLoopThreshold Yes" + indicator = {isNotClosedLoop}, "isNotClosedLoop No", "isNotClosedLoop Yes" + indicator = {isZeroRpm}, "isZeroRpm No", "isZeroRpm Yes" + indicator = {hasInitBoost}, "hasInitBoost No", "hasInitBoost Yes" + indicator = {rpmTooLow}, "rpmTooLow No", "rpmTooLow Yes" + indicator = {tpsTooLow}, "tpsTooLow No", "tpsTooLow Yes" + indicator = {mapTooLow}, "mapTooLow No", "mapTooLow Yes" + indicator = {isPlantValid}, "isPlantValid No", "isPlantValid Yes" + indicator = {isBoostControlled}, "isBoostControlled No", "isBoostControlled Yes" + +dialog = boost_controlDialog, "boost_control" + panel = boost_controlIndicatorPanel + liveGraph = boost_control_1_Graph, "Graph", South + graphLine = luaTargetAdd + graphLine = boostOutput + graphLine = luaTargetMult + graphLine = openLoopPart + liveGraph = boost_control_2_Graph, "Graph", South + graphLine = luaOpenLoopAdd + graphLine = boostControllerClosedLoopPart + graphLine = boostControlTarget + +indicatorPanel = ac_controlIndicatorPanel, 2 + indicator = {m_acEnabled}, "m_acEnabled No", "m_acEnabled Yes" + indicator = {engineTooSlow}, "engineTooSlow No", "engineTooSlow Yes" + indicator = {engineTooFast}, "engineTooFast No", "engineTooFast Yes" + indicator = {noClt}, "noClt No", "noClt Yes" + indicator = {engineTooHot}, "engineTooHot No", "engineTooHot Yes" + indicator = {tpsTooHigh}, "tpsTooHigh No", "tpsTooHigh Yes" + indicator = {isDisabledByLua}, "isDisabledByLua No", "isDisabledByLua Yes" + indicator = {acCompressorState}, "acCompressorState No", "acCompressorState Yes" + indicator = {acPressureTooLow}, "acPressureTooLow No", "acPressureTooLow Yes" + indicator = {acPressureTooHigh}, "acPressureTooHigh No", "acPressureTooHigh Yes" + +dialog = ac_controlDialog, "ac_control" + panel = ac_controlIndicatorPanel + liveGraph = ac_control_1_Graph, "Graph", South + graphLine = acButtonState + +indicatorPanel = fan_control0IndicatorPanel, 2 + indicator = {cranking0}, "cranking No", "cranking Yes" + indicator = {notRunning0}, "notRunning No", "notRunning Yes" + indicator = {disabledWhileEngineStopped0}, "disabledWhileEngineStopped No", "disabledWhileEngineStopped Yes" + indicator = {brokenClt0}, "brokenClt No", "brokenClt Yes" + indicator = {enabledForAc0}, "enabledForAc No", "enabledForAc Yes" + indicator = {hot0}, "hot No", "hot Yes" + indicator = {cold0}, "cold No", "cold Yes" + indicator = {disabledBySpeed0}, "disabledBySpeed No", "disabledBySpeed Yes" + +dialog = fan_control0Dialog, "fan_control0" + panel = fan_control0IndicatorPanel + liveGraph = fan_control0_1_Graph, "Graph", South + graphLine = radiatorFanStatus0 + +indicatorPanel = fan_control1IndicatorPanel, 2 + indicator = {cranking1}, "cranking No", "cranking Yes" + indicator = {notRunning1}, "notRunning No", "notRunning Yes" + indicator = {disabledWhileEngineStopped1}, "disabledWhileEngineStopped No", "disabledWhileEngineStopped Yes" + indicator = {brokenClt1}, "brokenClt No", "brokenClt Yes" + indicator = {enabledForAc1}, "enabledForAc No", "enabledForAc Yes" + indicator = {hot1}, "hot No", "hot Yes" + indicator = {cold1}, "cold No", "cold Yes" + indicator = {disabledBySpeed1}, "disabledBySpeed No", "disabledBySpeed Yes" + +dialog = fan_control1Dialog, "fan_control1" + panel = fan_control1IndicatorPanel + liveGraph = fan_control1_1_Graph, "Graph", South + graphLine = radiatorFanStatus1 + +indicatorPanel = fuel_pump_controlIndicatorPanel, 2 + indicator = {isPrime}, "isPrime No", "isPrime Yes" + indicator = {engineTurnedRecently}, "engineTurnedRecently No", "engineTurnedRecently Yes" + indicator = {isFuelPumpOn}, "isFuelPumpOn No", "isFuelPumpOn Yes" + indicator = {ignitionOn}, "ignitionOn No", "ignitionOn Yes" + +dialog = fuel_pump_controlDialog, "fuel_pump_control" + panel = fuel_pump_controlIndicatorPanel + +indicatorPanel = main_relayIndicatorPanel, 2 + indicator = {isBenchTest}, "isBenchTest No", "isBenchTest Yes" + indicator = {hasIgnitionVoltage}, "hasIgnitionVoltage No", "hasIgnitionVoltage Yes" + indicator = {mainRelayState}, "mainRelayState No", "mainRelayState Yes" + indicator = {delayedShutoffRequested}, "delayedShutoffRequested No", "delayedShutoffRequested Yes" + +dialog = main_relayDialog, "main_relay" + panel = main_relayIndicatorPanel + +indicatorPanel = engine_stateIndicatorPanel, 2 + indicator = {lua_clutchUpState}, "clutchUpState No", "clutchUpState Yes" + indicator = {lua_brakePedalState}, "brakePedalState No", "brakePedalState Yes" + indicator = {lua_acRequestState}, "acRequestState No", "acRequestState Yes" + indicator = {lua_luaDisableEtb}, "luaDisableEtb No", "luaDisableEtb Yes" + indicator = {lua_luaIgnCut}, "luaIgnCut No", "luaIgnCut Yes" + indicator = {lua_luaFuelCut}, "luaFuelCut No", "luaFuelCut Yes" + indicator = {lua_clutchDownState}, "clutchDownState No", "clutchDownState Yes" + indicator = {lua_disableDecelerationFuelCutOff}, "disableDecelerationFuelCutOff No", "disableDecelerationFuelCutOff Yes" + indicator = {startStopPhysicalState}, "startStopPhysicalState No", "startStopPhysicalState Yes" + indicator = {acrActive}, "acrActive No", "acrActive Yes" + indicator = {acrEngineMovedRecently}, "acrEngineMovedRecently No", "acrEngineMovedRecently Yes" + indicator = {heaterControlEnabled}, "heaterControlEnabled No", "heaterControlEnabled Yes" + indicator = {luaDigitalState0}, "luaDigitalState0 No", "luaDigitalState0 Yes" + indicator = {luaDigitalState1}, "luaDigitalState1 No", "luaDigitalState1 Yes" + indicator = {luaDigitalState2}, "luaDigitalState2 No", "luaDigitalState2 Yes" + indicator = {luaDigitalState3}, "luaDigitalState3 No", "luaDigitalState3 Yes" + +dialog = engine_stateDialog, "engine_state" + panel = engine_stateIndicatorPanel + liveGraph = engine_state_1_Graph, "Graph", South + graphLine = lua_fuelAdd + graphLine = lua_fuelMult + graphLine = sd_tCharge + graphLine = sd_tChargeK + liveGraph = engine_state_2_Graph, "Graph", South + graphLine = crankingFuel_coolantTemperatureCoefficient + graphLine = crankingFuel_tpsCoefficient + graphLine = crankingFuel_durationCoefficient + graphLine = crankingFuel_fuel + liveGraph = engine_state_3_Graph, "Graph", South + graphLine = baroCorrection + graphLine = hellenBoardId + graphLine = clutchUpState + graphLine = clutchDownState + liveGraph = engine_state_4_Graph, "Graph", South + graphLine = brakePedalState + graphLine = startStopState + graphLine = smartChipState + graphLine = smartChipRestartCounter + liveGraph = engine_state_5_Graph, "Graph", South + graphLine = smartChipAliveCounter + graphLine = startStopStateToggleCounter + graphLine = luaSoftSparkSkip + graphLine = luaHardSparkSkip + liveGraph = engine_state_6_Graph, "Graph", South + graphLine = tractionControlSparkSkip + graphLine = desiredRpmLimit + graphLine = fuelInjectionCounter + graphLine = globalSparkCounter + liveGraph = engine_state_7_Graph, "Graph", South + graphLine = fuelingLoad + graphLine = ignitionLoad + graphLine = veTableYAxis + graphLine = overDwellCounter + liveGraph = engine_state_8_Graph, "Graph", South + graphLine = overDwellNotScheduledCounter + graphLine = sparkOutOfOrderCounter + +indicatorPanel = tps_accel_stateIndicatorPanel, 2 + indicator = {isAboveAccelThreshold}, "isAboveAccelThreshold No", "isAboveAccelThreshold Yes" + indicator = {isBelowDecelThreshold}, "isBelowDecelThreshold No", "isBelowDecelThreshold Yes" + indicator = {isTimeToResetAccumulator}, "isTimeToResetAccumulator No", "isTimeToResetAccumulator Yes" + indicator = {isFractionalEnrichment}, "isFractionalEnrichment No", "isFractionalEnrichment Yes" + indicator = {belowEpsilon}, "belowEpsilon No", "belowEpsilon Yes" + indicator = {tooShort}, "tooShort No", "tooShort Yes" + +dialog = tps_accel_stateDialog, "tps_accel_state" + panel = tps_accel_stateIndicatorPanel + liveGraph = tps_accel_state_1_Graph, "Graph", South + graphLine = tpsFrom + graphLine = tpsTo + graphLine = deltaTps + graphLine = extraFuel + liveGraph = tps_accel_state_2_Graph, "Graph", South + graphLine = valueFromTable + graphLine = fractionalInjFuel + graphLine = accumulatedValue + graphLine = maxExtraPerCycle + liveGraph = tps_accel_state_3_Graph, "Graph", South + graphLine = maxExtraPerPeriod + graphLine = maxInjectedPerPeriod + graphLine = cycleCnt + +indicatorPanel = trigger_centralIndicatorPanel, 2 + indicator = {isDecodingMapCam}, "isDecodingMapCam No", "isDecodingMapCam Yes" + +dialog = trigger_centralDialog, "trigger_central" + panel = trigger_centralIndicatorPanel + liveGraph = trigger_central_1_Graph, "Graph", South + graphLine = hwEventCounters1 + graphLine = hwEventCounters2 + graphLine = hwEventCounters3 + graphLine = hwEventCounters4 + liveGraph = trigger_central_2_Graph, "Graph", South + graphLine = hwEventCounters5 + graphLine = hwEventCounters6 + graphLine = vvtCamCounter + graphLine = mapVvt_MAP_AT_SPECIAL_POINT + liveGraph = trigger_central_3_Graph, "Graph", South + graphLine = mapVvt_MAP_AT_DIFF + graphLine = mapVvt_MAP_AT_CYCLE_COUNT + graphLine = mapVvt_sync_counter + graphLine = currentEngineDecodedPhase + liveGraph = trigger_central_4_Graph, "Graph", South + graphLine = triggerToothAngleError + graphLine = triggerIgnoredToothCount + graphLine = mapCamPrevToothAngle + graphLine = triggerElapsedUs + + +dialog = trigger_state0Dialog, "trigger_state0" + liveGraph = trigger_state0_1_Graph, "Graph", South + graphLine = crankSynchronizationCounter0 + graphLine = vvtSyncGapRatio0 + graphLine = vvtToothDurations00 + graphLine = vvtCurrentPosition0 + liveGraph = trigger_state0_2_Graph, "Graph", South + graphLine = vvtToothPosition10 + graphLine = vvtToothPosition20 + graphLine = vvtToothPosition30 + graphLine = vvtToothPosition40 + liveGraph = trigger_state0_3_Graph, "Graph", South + graphLine = triggerSyncGapRatio0 + graphLine = triggerStateIndex0 + graphLine = vvtStateIndex0 + + +dialog = trigger_state1Dialog, "trigger_state1" + liveGraph = trigger_state1_1_Graph, "Graph", South + graphLine = crankSynchronizationCounter1 + graphLine = vvtSyncGapRatio1 + graphLine = vvtToothDurations01 + graphLine = vvtCurrentPosition1 + liveGraph = trigger_state1_2_Graph, "Graph", South + graphLine = vvtToothPosition11 + graphLine = vvtToothPosition21 + graphLine = vvtToothPosition31 + graphLine = vvtToothPosition41 + liveGraph = trigger_state1_3_Graph, "Graph", South + graphLine = triggerSyncGapRatio1 + graphLine = triggerStateIndex1 + graphLine = vvtStateIndex1 + + +dialog = trigger_state2Dialog, "trigger_state2" + liveGraph = trigger_state2_1_Graph, "Graph", South + graphLine = crankSynchronizationCounter2 + graphLine = vvtSyncGapRatio2 + graphLine = vvtToothDurations02 + graphLine = vvtCurrentPosition2 + liveGraph = trigger_state2_2_Graph, "Graph", South + graphLine = vvtToothPosition12 + graphLine = vvtToothPosition22 + graphLine = vvtToothPosition32 + graphLine = vvtToothPosition42 + liveGraph = trigger_state2_3_Graph, "Graph", South + graphLine = triggerSyncGapRatio2 + graphLine = triggerStateIndex2 + graphLine = vvtStateIndex2 + + +dialog = trigger_state3Dialog, "trigger_state3" + liveGraph = trigger_state3_1_Graph, "Graph", South + graphLine = crankSynchronizationCounter3 + graphLine = vvtSyncGapRatio3 + graphLine = vvtToothDurations03 + graphLine = vvtCurrentPosition3 + liveGraph = trigger_state3_2_Graph, "Graph", South + graphLine = vvtToothPosition13 + graphLine = vvtToothPosition23 + graphLine = vvtToothPosition33 + graphLine = vvtToothPosition43 + liveGraph = trigger_state3_3_Graph, "Graph", South + graphLine = triggerSyncGapRatio3 + graphLine = triggerStateIndex3 + graphLine = vvtStateIndex3 + + +dialog = trigger_state4Dialog, "trigger_state4" + liveGraph = trigger_state4_1_Graph, "Graph", South + graphLine = crankSynchronizationCounter4 + graphLine = vvtSyncGapRatio4 + graphLine = vvtToothDurations04 + graphLine = vvtCurrentPosition4 + liveGraph = trigger_state4_2_Graph, "Graph", South + graphLine = vvtToothPosition14 + graphLine = vvtToothPosition24 + graphLine = vvtToothPosition34 + graphLine = vvtToothPosition44 + liveGraph = trigger_state4_3_Graph, "Graph", South + graphLine = triggerSyncGapRatio4 + graphLine = triggerStateIndex4 + graphLine = vvtStateIndex4 + +indicatorPanel = trigger_state_primaryIndicatorPanel, 2 + indicator = {m_hasSynchronizedPhase}, "m_hasSynchronizedPhase No", "m_hasSynchronizedPhase Yes" + +dialog = trigger_state_primaryDialog, "trigger_state_primary" + panel = trigger_state_primaryIndicatorPanel + liveGraph = trigger_state_primary_1_Graph, "Graph", South + graphLine = camResyncCounter + + +dialog = wall_fuel_stateDialog, "wall_fuel_state" + liveGraph = wall_fuel_state_1_Graph, "Graph", South + graphLine = wallFuelCorrection + graphLine = wallFuel + +indicatorPanel = idle_stateIndicatorPanel, 2 + indicator = {mightResetPid}, "mightResetPid No", "mightResetPid Yes" + indicator = {shouldResetPid}, "shouldResetPid No", "shouldResetPid Yes" + indicator = {wasResetPid}, "wasResetPid No", "wasResetPid Yes" + indicator = {mustResetPid}, "mustResetPid No", "mustResetPid Yes" + indicator = {isCranking}, "isCranking No", "isCranking Yes" + indicator = {isIacTableForCoasting}, "isIacTableForCoasting No", "isIacTableForCoasting Yes" + indicator = {notIdling}, "notIdling No", "notIdling Yes" + indicator = {needReset}, "needReset No", "needReset Yes" + indicator = {isInDeadZone}, "isInDeadZone No", "isInDeadZone Yes" + indicator = {isBlipping}, "isBlipping No", "isBlipping Yes" + indicator = {useClosedLoop}, "useClosedLoop No", "useClosedLoop Yes" + indicator = {badTps}, "badTps No", "badTps Yes" + indicator = {looksLikeRunning}, "looksLikeRunning No", "looksLikeRunning Yes" + indicator = {looksLikeCoasting}, "looksLikeCoasting No", "looksLikeCoasting Yes" + indicator = {looksLikeCrankToIdle}, "looksLikeCrankToIdle No", "looksLikeCrankToIdle Yes" + indicator = {isIdleCoasting}, "isIdleCoasting No", "isIdleCoasting Yes" + indicator = {isIdleClosedLoop}, "isIdleClosedLoop No", "isIdleClosedLoop Yes" + +dialog = idle_stateDialog, "idle_state" + panel = idle_stateIndicatorPanel + liveGraph = idle_state_1_Graph, "Graph", South + graphLine = idleState + graphLine = currentIdlePosition + graphLine = baseIdlePosition + graphLine = idleClosedLoop + liveGraph = idle_state_2_Graph, "Graph", South + graphLine = iacByTpsTaper + graphLine = throttlePedalUpState + graphLine = idleTarget + graphLine = targetRpmByClt + liveGraph = idle_state_3_Graph, "Graph", South + graphLine = targetRpmAc + graphLine = iacByRpmTaper + graphLine = luaAdd + +indicatorPanel = electronic_throttle0IndicatorPanel, 2 + indicator = {etbRevLimitActive0}, "etbRevLimitActive No", "etbRevLimitActive Yes" + indicator = {jamDetected0}, "jamDetected No", "jamDetected Yes" + indicator = {validPlantPosition0}, "validPlantPosition No", "validPlantPosition Yes" + +dialog = electronic_throttle0Dialog, "electronic_throttle0" + panel = electronic_throttle0IndicatorPanel + liveGraph = electronic_throttle0_1_Graph, "Graph", South + graphLine = targetWithIdlePosition0 + graphLine = trim0 + graphLine = luaAdjustment0 + graphLine = m_wastegatePosition0 + liveGraph = electronic_throttle0_2_Graph, "Graph", South + graphLine = etbFeedForward0 + graphLine = etbIntegralError0 + graphLine = etbCurrentTarget0 + graphLine = etbCurrentAdjustedTarget0 + liveGraph = electronic_throttle0_3_Graph, "Graph", South + graphLine = etbTpsErrorCounter0 + graphLine = etbPpsErrorCounter0 + graphLine = etbErrorCode0 + graphLine = etbErrorCodeBlinker0 + liveGraph = electronic_throttle0_4_Graph, "Graph", South + graphLine = tcEtbDrop0 + graphLine = jamTimer0 + graphLine = adjustedEtbTarget0 + graphLine = state0 + +indicatorPanel = electronic_throttle1IndicatorPanel, 2 + indicator = {etbRevLimitActive1}, "etbRevLimitActive No", "etbRevLimitActive Yes" + indicator = {jamDetected1}, "jamDetected No", "jamDetected Yes" + indicator = {validPlantPosition1}, "validPlantPosition No", "validPlantPosition Yes" + +dialog = electronic_throttle1Dialog, "electronic_throttle1" + panel = electronic_throttle1IndicatorPanel + liveGraph = electronic_throttle1_1_Graph, "Graph", South + graphLine = targetWithIdlePosition1 + graphLine = trim1 + graphLine = luaAdjustment1 + graphLine = m_wastegatePosition1 + liveGraph = electronic_throttle1_2_Graph, "Graph", South + graphLine = etbFeedForward1 + graphLine = etbIntegralError1 + graphLine = etbCurrentTarget1 + graphLine = etbCurrentAdjustedTarget1 + liveGraph = electronic_throttle1_3_Graph, "Graph", South + graphLine = etbTpsErrorCounter1 + graphLine = etbPpsErrorCounter1 + graphLine = etbErrorCode1 + graphLine = etbErrorCodeBlinker1 + liveGraph = electronic_throttle1_4_Graph, "Graph", South + graphLine = tcEtbDrop1 + graphLine = jamTimer1 + graphLine = adjustedEtbTarget1 + graphLine = state1 + + +dialog = wideband_state0Dialog, "wideband_state0" + liveGraph = wideband_state0_1_Graph, "Graph", South + graphLine = faultCode0 + graphLine = heaterDuty0 + graphLine = pumpDuty0 + graphLine = tempC0 + liveGraph = wideband_state0_2_Graph, "Graph", South + graphLine = nernstVoltage0 + graphLine = esr0 + + +dialog = wideband_state1Dialog, "wideband_state1" + liveGraph = wideband_state1_1_Graph, "Graph", South + graphLine = faultCode1 + graphLine = heaterDuty1 + graphLine = pumpDuty1 + graphLine = tempC1 + liveGraph = wideband_state1_2_Graph, "Graph", South + graphLine = nernstVoltage1 + graphLine = esr1 + +indicatorPanel = dc_motorsIndicatorPanel, 2 + indicator = {isEnabled0}, "isEnabled0 No", "isEnabled0 Yes" + +dialog = dc_motorsDialog, "dc_motors" + panel = dc_motorsIndicatorPanel + liveGraph = dc_motors_1_Graph, "Graph", South + graphLine = dcOutput0 + graphLine = isEnabled0_int + + +dialog = sent_stateDialog, "sent_state" + liveGraph = sent_state_1_Graph, "Graph", South + graphLine = value0 + graphLine = value1 + graphLine = errorRate + + +dialog = vvtDialog, "vvt" + liveGraph = vvt_1_Graph, "Graph", South + graphLine = vvtTarget + graphLine = vvtOutput + +indicatorPanel = lambda_monitorIndicatorPanel, 2 + indicator = {lambdaCurrentlyGood}, "lambdaCurrentlyGood No", "lambdaCurrentlyGood Yes" + indicator = {lambdaMonitorCut}, "lambdaMonitorCut No", "lambdaMonitorCut Yes" + +dialog = lambda_monitorDialog, "lambda_monitor" + panel = lambda_monitorIndicatorPanel + liveGraph = lambda_monitor_1_Graph, "Graph", South + graphLine = lambdaTimeSinceGood + + + + + dialog = scriptTable1TblSettings, "", yAxis + field = "Name", scriptTableName1 + panel = scriptTable1Tbl + + dialog = scriptTable2TblSettings, "", yAxis + field = "Name", scriptTableName2 + panel = scriptTable2Tbl + + dialog = scriptTable3TblSettings, "", yAxis + field = "Name", scriptTableName3 + panel = scriptTable3Tbl + + dialog = scriptTable4TblSettings, "", yAxis + field = "Name", scriptTableName4 + panel = scriptTable4Tbl + + dialog = scriptCurve1Settings, "", yAxis + field = "Name", scriptCurveName1 + panel = scriptCurve1 + + dialog = scriptCurve2Settings, "", yAxis + field = "Name", scriptCurveName2 + panel = scriptCurve2 + + dialog = scriptCurve3Settings, "", yAxis + field = "Name", scriptCurveName3 + panel = scriptCurve3 + + dialog = scriptCurve4Settings, "", yAxis + field = "Name", scriptCurveName4 + panel = scriptCurve4 + + dialog = scriptCurve5Settings, "", yAxis + field = "Name", scriptCurveName5 + panel = scriptCurve5 + + dialog = scriptCurve6Settings, "", yAxis + field = "Name", scriptCurveName6 + panel = scriptCurve6 + + dialog = tChargeRpmTpsSettings, "RPM+TPS mode" + field = "We use these coefficients to approximate air/fuel charge" + field = "temperature based on CLT and IAT, depending on RPM and TPM" + field = "Low RPM/Low TPS", tChargeMinRpmMinTps + field = "Low RPM/High TPS", tChargeMinRpmMaxTps + field = "High RPM/Low TPS", tChargeMaxRpmMinTps + field = "High RPM/High TPS", tChargeMaxRpmMaxTps + + dialog = tChargeGeneralSettings, "" + field = "Mode", tChargeMode + field = "#These two parameters limit the estimate's rate of change" + field = "Increase rate limit", tChargeAirIncrLimit + field = "Decrease rate limit", tChargeAirDecrLimit + field = "" + + dialog = tChargeAirInterpSettings, "Airflow interpolation mode" + field = "Low flow coefficient", tChargeAirCoefMin + field = "High flow coefficient", tChargeAirCoefMax + field = "Max air flow", tChargeAirFlowMax + + dialog = tChargeSettings, "Estimated cylinder air temperature" + panel = tChargeGeneralSettings + panel = tChargeRpmTpsSettings, { tChargeMode == 0} + panel = tChargeAirInterpSettings, { tChargeMode == 1} + panel = tchargeCurve, { tChargeMode == 2 } + + dialog = baseInjection, "Injection" + field = "Enabled", isInjectionEnabled + field = "Mode", injectionMode, {isInjectionEnabled == 1} + field = "#Batch injection with individual wiring" + field = "Alpha-N uses IAT density correction", alphaNUseIat, { fuelAlgorithm == 2 } + field = "Override VE table load axis", veOverrideMode, { isInjectionEnabled } + field = "Override AFR table load axis", afrOverrideMode, { isInjectionEnabled } + field = "Injection phase control mode", injectionTimingMode, { isInjectionEnabled } + + dialog = ignitionOutputs, "Ignition Outputs" + field = "# wire each output to the corresponding cylinder number" + field = "# rusEFI handles firing order" + field = "Ignition Output Mode", ignitionPinMode, {isIgnitionEnabled == 1} + field = "Ignition Output 1", ignitionPins1, {isIgnitionEnabled == 1} + ; see rusefi_config.txt comment next to 'ignitionPin2logic' which says + ; this section is auto-generated by FiringOrderTSLogic.java + field = "Ignition Output 2", ignitionPins2, {isIgnitionEnabled == 1 && (ignitionMode != 0 && cylindersCount >= 2) && (ignitionMode !=2 || twoWireBatchIgnition == 1 || ((firingOrder == 2) || (firingOrder == 7) || (firingOrder == 9) || (firingOrder == 11) || (firingOrder == 12) || (firingOrder == 16) || (firingOrder == 19) || (firingOrder == 20) || (firingOrder == 23) || (firingOrder == 25) || (firingOrder == 29) || (firingOrder == 33) || (firingOrder == 34)))} + field = "Ignition Output 3", ignitionPins3, {isIgnitionEnabled == 1 && (ignitionMode != 0 && cylindersCount >= 3) && (ignitionMode !=2 || twoWireBatchIgnition == 1 || ((firingOrder == 1) || (firingOrder == 3) || (firingOrder == 4) || (firingOrder == 5) || (firingOrder == 9) || (firingOrder == 13) || (firingOrder == 14) || (firingOrder == 15) || (firingOrder == 18) || (firingOrder == 20) || (firingOrder == 23) || (firingOrder == 25) || (firingOrder == 27) || (firingOrder == 28)))} + field = "Ignition Output 4", ignitionPins4, {isIgnitionEnabled == 1 && (ignitionMode != 0 && cylindersCount >= 4) && (ignitionMode !=2 || twoWireBatchIgnition == 1 || ((firingOrder == 5) || (firingOrder == 7) || (firingOrder == 12) || (firingOrder == 14) || (firingOrder == 16) || (firingOrder == 17) || (firingOrder == 22) || (firingOrder == 23) || (firingOrder == 25) || (firingOrder == 26) || (firingOrder == 27) || (firingOrder == 31) || (firingOrder == 32)))} + field = "Ignition Output 5", ignitionPins5, {isIgnitionEnabled == 1 && (ignitionMode != 0 && cylindersCount >= 5) && (ignitionMode !=2 || twoWireBatchIgnition == 1 || ((firingOrder == 4) || (firingOrder == 12) || (firingOrder == 15) || (firingOrder == 18) || (firingOrder == 23) || (firingOrder == 26) || (firingOrder == 30) || (firingOrder == 31) || (firingOrder == 32) || (firingOrder == 33)))} + field = "Ignition Output 6", ignitionPins6, {isIgnitionEnabled == 1 && (ignitionMode != 0 && cylindersCount >= 6) && (ignitionMode !=2 || twoWireBatchIgnition == 1 || ((firingOrder == 13) || (firingOrder == 22) || (firingOrder == 23) || (firingOrder == 29) || (firingOrder == 30) || (firingOrder == 33) || (firingOrder == 34)))} + field = "Ignition Output 7", ignitionPins7, {isIgnitionEnabled == 1 && (ignitionMode != 0 && cylindersCount >= 7) && (ignitionMode !=2 || twoWireBatchIgnition == 1 || ((firingOrder == 11) || (firingOrder == 15) || (firingOrder == 16) || (firingOrder == 19) || (firingOrder == 20) || (firingOrder == 22) || (firingOrder == 28)))} + field = "Ignition Output 8", ignitionPins8, {isIgnitionEnabled == 1 && (ignitionMode != 0 && cylindersCount >= 8) && (ignitionMode !=2 || twoWireBatchIgnition == 1 || ((firingOrder == 5) || (firingOrder == 11) || (firingOrder == 16) || (firingOrder == 18) || (firingOrder == 19) || (firingOrder == 26) || (firingOrder == 28) || (firingOrder == 32) || (firingOrder == 34)))} + field = "Ignition Output 9", ignitionPins9, {isIgnitionEnabled == 1 && (ignitionMode != 0 && cylindersCount >= 9) && (ignitionMode !=2 || twoWireBatchIgnition == 1 || ((firingOrder == 14) || (firingOrder == 15) || (firingOrder == 22)))} + field = "Ignition Output 10", ignitionPins10, {isIgnitionEnabled == 1 && (ignitionMode != 0 && cylindersCount >= 10) && (ignitionMode !=2 || twoWireBatchIgnition == 1 || ((firingOrder == 14) || (firingOrder == 16) || (firingOrder == 18) || (firingOrder == 33)))} + field = "Ignition Output 11", ignitionPins11, {isIgnitionEnabled == 1 && (ignitionMode != 0 && cylindersCount >= 11) && (ignitionMode !=2 || twoWireBatchIgnition == 1 || ((firingOrder == 15)))} + field = "Ignition Output 12", ignitionPins12, {isIgnitionEnabled == 1 && (ignitionMode != 0 && cylindersCount >= 12) && (ignitionMode !=2 || twoWireBatchIgnition == 1 || ((firingOrder == 18) || (firingOrder == 22)))} + + + dialog = ignitionBasic, "" + field = "Enabled", isIgnitionEnabled + field = "Mode", ignitionMode, {isIgnitionEnabled} + field = "Maximum timing advance", maximumIgnitionTiming, {isIgnitionEnabled} + field = "Minimum timing advance", minimumIgnitionTiming, {isIgnitionEnabled} + field = "Individually wired Wasted Spark", twoWireBatchIgnition, {isIgnitionEnabled == 1 && ignitionMode == 2 } + field = "Override ignition table load axis", ignOverrideMode, {isIgnitionEnabled} + field = "#Use fixed timing while validating with a timing gun" + field = "Timing Mode", timingMode, {isIgnitionEnabled} + field = "Fixed Timing", fixedTiming, {isIgnitionEnabled == 1 && timingMode == 1} + + dialog = ignitionSettings, "", xAxis + panel = ignitionBasic + panel = ignitionOutputs, { 1 }, { uiMode == 0 || uiMode == 1 } + + dialog = baseEngineConfig, "Engine Configuration" + field = "Number of cylinders", cylindersCount + field = "Displacement", displacement + field = "Firing order", firingOrder + + dialog = engineMetadata, "Engine Metadata" + field = "#These metadata are used by rusEFI Online" + field = "Engine Make", engineMake + field = "Manufacturer Engine Code", engineCode + field = "Vehicle Name", vehicleName + field = "VIN", vinNumber + field = "Forced Induction?", isForcedInduction + + dialog = trigger_primary, "Primary Trigger" + topicHelp = "triggerHelp" + ; see also in firmware '[doesTriggerImplyOperationMode]' tag + field = "Strokes", twoStroke + field = "" + field = "Trigger type", trigger_type + field = "Total tooth count", trigger_customTotalToothCount, {trigger_type == 0}, {trigger_type == 0} + field = "Missing/skipped tooth count", trigger_customSkippedToothCount, {trigger_type == 0}, {trigger_type == 0} + field = "Skipped wheel location", skippedWheelOnCam, 1, { twoStroke == 0 && (trigger_type == 0 || trigger_type == 8 || trigger_type == 9 || trigger_type == 11 || trigger_type == 17 || trigger_type == 18 || trigger_type == 23 || trigger_type == 48 || trigger_type == 69 || trigger_type == 73) } + field = "" + field = "!Reminder that 4-stroke cycle is 720 degrees" + field = "!For well-known trigger types use '0' trigger angle offset" + field = "Trigger Angle Advance", globalTriggerAngleOffset + + field = "" + field = "" + + field = "#Cam is primary if you have cam sensor as part of trigger shape" + ; cam if + ; two-stroke, or + ; not crank trigger and ((vague trigger and cam choice) or not vague trigger) + field = "Cam Sensor (Primary channel)", triggerInputPins1, 1, {twoStroke == 1 || ( !(trigger_type == 2 || trigger_type == 5 || trigger_type == 10 || trigger_type == 12 || trigger_type == 20 || trigger_type == 21 || trigger_type == 26 || trigger_type == 27 || trigger_type == 33 || trigger_type == 38 || trigger_type == 39 || trigger_type == 44 || trigger_type == 45 || trigger_type == 46 || trigger_type == 53 || trigger_type == 55 || trigger_type == 57 || trigger_type == 58 || trigger_type == 61 || trigger_type == 62 || trigger_type == 68 || trigger_type == 70 || trigger_type == 71 || trigger_type == 72 || trigger_type == 74 || trigger_type == 75 || trigger_type == 76 || trigger_type == 77 || trigger_type == 84) && ( ( (trigger_type == 8 || trigger_type == 9 || trigger_type == 11 || trigger_type == 17 || trigger_type == 18 || trigger_type == 23 || trigger_type == 48 || trigger_type == 69 || trigger_type == 73) && skippedWheelOnCam) || !(trigger_type == 8 || trigger_type == 9 || trigger_type == 11 || trigger_type == 17 || trigger_type == 18 || trigger_type == 23 || trigger_type == 48 || trigger_type == 69 || trigger_type == 73) ) ) } + field = "Crank Sensor (Primary channel)", triggerInputPins1, 1, { !(twoStroke == 1 || ( !(trigger_type == 2 || trigger_type == 5 || trigger_type == 10 || trigger_type == 12 || trigger_type == 20 || trigger_type == 21 || trigger_type == 26 || trigger_type == 27 || trigger_type == 33 || trigger_type == 38 || trigger_type == 39 || trigger_type == 44 || trigger_type == 45 || trigger_type == 46 || trigger_type == 53 || trigger_type == 55 || trigger_type == 57 || trigger_type == 58 || trigger_type == 61 || trigger_type == 62 || trigger_type == 68 || trigger_type == 70 || trigger_type == 71 || trigger_type == 72 || trigger_type == 74 || trigger_type == 75 || trigger_type == 76 || trigger_type == 77 || trigger_type == 84) && ( ( (trigger_type == 8 || trigger_type == 9 || trigger_type == 11 || trigger_type == 17 || trigger_type == 18 || trigger_type == 23 || trigger_type == 48 || trigger_type == 69 || trigger_type == 73) && skippedWheelOnCam) || !(trigger_type == 8 || trigger_type == 9 || trigger_type == 11 || trigger_type == 17 || trigger_type == 18 || trigger_type == 23 || trigger_type == 48 || trigger_type == 69 || trigger_type == 73) ) )) } + field = "Primary Edge", invertPrimaryTriggerSignal + field = "Secondary channel", triggerInputPins2, { triggerInputPins2 != 0 || (triggerInputPins1 != 0 && (trigger_type == 1 || trigger_type == 3 || trigger_type == 15 || trigger_type == 16 || trigger_type == 19 || trigger_type == 25 || trigger_type == 31 || trigger_type == 35 || trigger_type == 36 || trigger_type == 37 || trigger_type == 40 || trigger_type == 49 || trigger_type == 53 || trigger_type == 54 || trigger_type == 63 || trigger_type == 64) ) } + field = "Secondary Edge", invertSecondaryTriggerSignal, {triggerInputPins2 != 0 && (trigger_type == 1 || trigger_type == 3 || trigger_type == 15 || trigger_type == 16 || trigger_type == 19 || trigger_type == 25 || trigger_type == 31 || trigger_type == 35 || trigger_type == 36 || trigger_type == 37 || trigger_type == 40 || trigger_type == 49 || trigger_type == 53 || trigger_type == 54 || trigger_type == 63 || trigger_type == 64) } + + dialog = trigger_cams, "Cam Inputs" + field = "!https://rusefi.com/s/vvt" + ; todo: code generator to hard-code all triggers not requiring VVT? + ; todo: https://github.com/rusefi/rusefi/issues/2077 + + field = "Cam mode (intake)", vvtMode1, {trigger_type != 3} + field = "2JZ Position", camDecoder2jzPosition, 1, {vvtMode1 == 2} + field = "2JZ Precision", camDecoder2jzPrecision, 1, {vvtMode1 == 2} + field = "Cam mode (exhaust)", vvtMode2, {trigger_type != 3} + field = "" + field = "Cam sensor bank 1 intake", camInputs1, { camInputs1 != 0 || (vvtMode1 != 0 ) } + field = "Cam sensor bank 1 exhaust", camInputs2, { camInputs2 != 0 || (vvtMode2 != 0 && camInputs1 != 0 ) } + field = "Cam sensor bank 2 intake", camInputs3, { camInputs3 != 0 || (vvtMode1 != 0 && camInputs1 != 0 ) } + field = "Cam sensor bank 2 exhaust", camInputs4, { camInputs4 != 0 || (vvtMode2 != 0 && camInputs2 != 0 ) } + field = "intake Cam Edge Select", invertCamVVTSignal, { camInputs1 != 0 } + field = "exhaust Cam Edge Select", invertExhaustCamVVTSignal, { camInputs2 != 0 } + field = "" + field = "#Set offset so VVT indicates 0 degrees in default position" + field = "VVT offset bank 1 intake", vvtOffsets1, { camInputs1 != 0 } + field = "VVT offset bank 1 exhaust", vvtOffsets2, { camInputs2 != 0 } + field = "VVT offset bank 2 intake", vvtOffsets3, { camInputs3 != 0 } + field = "VVT offset bank 2 exhaust", vvtOffsets4, { camInputs4 != 0 } + field = "" + field = "Cam for engine sync resolution", engineSyncCam, { vvtMode1 != 0 || vvtMode2 != 0 } + + dialog = triggerConfiguration_gap, "Trigger Gap Override" + field = "!This is a pretty advanced feature for when you are debugging trigger synchronization" + field = "Override well known trigger gaps", overrideTriggerGaps + field = gapTrackingLengthOverride, gapTrackingLengthOverride, { overrideTriggerGaps == 1 } + field = "First gap from", triggerGapOverrideFrom1, { overrideTriggerGaps == 1 } + field = "First gap to", triggerGapOverrideTo1, { overrideTriggerGaps == 1 } + field = "Second gap from", triggerGapOverrideFrom2, { overrideTriggerGaps == 1 && gapTrackingLengthOverride >= 2 } + field = "Second gap to", triggerGapOverrideTo2, { overrideTriggerGaps == 1 && gapTrackingLengthOverride >= 2 } + field = "Gap #3 from", triggerGapOverrideFrom3, { overrideTriggerGaps == 1 && gapTrackingLengthOverride >= 3 } + field = "Gap #3 to", triggerGapOverrideTo3, { overrideTriggerGaps == 1 && gapTrackingLengthOverride >= 3 } + field = "Gap #4 from", triggerGapOverrideFrom4, { overrideTriggerGaps == 1 && gapTrackingLengthOverride >= 4 } + field = "Gap #4 to", triggerGapOverrideTo4, { overrideTriggerGaps == 1 && gapTrackingLengthOverride >= 4 } + field = "Gap #5 from", triggerGapOverrideFrom5, { overrideTriggerGaps == 1 && gapTrackingLengthOverride >= 5 } + field = "Gap #5 to", triggerGapOverrideTo5, { overrideTriggerGaps == 1 && gapTrackingLengthOverride >= 5 } + field = "Override well known VVT gaps", overrideVvtTriggerGaps + field = gapVvtTrackingLengthOverride, gapVvtTrackingLengthOverride, { overrideVvtTriggerGaps == 1 } + field = "First VVT gap from", triggerVVTGapOverrideFrom1, { overrideVvtTriggerGaps == 1 } + field = "First VVT gap to", triggerVVTGapOverrideTo1, { overrideVvtTriggerGaps == 1 } + field = "Second VVT gap from", triggerVVTGapOverrideFrom2, { overrideVvtTriggerGaps == 1 && gapVvtTrackingLengthOverride >= 2 } + field = "Second VVT gap to", triggerVVTGapOverrideTo2, { overrideVvtTriggerGaps == 1 && gapVvtTrackingLengthOverride >= 2 } + field = "VVT gap #3 from", triggerVVTGapOverrideFrom3, { overrideVvtTriggerGaps == 1 && gapVvtTrackingLengthOverride >= 3 } + field = "VVT gap #3 to", triggerVVTGapOverrideTo3, { overrideVvtTriggerGaps == 1 && gapVvtTrackingLengthOverride >= 3 } + field = "VVT gap #4 from", triggerVVTGapOverrideFrom4 { overrideVvtTriggerGaps == 1 && gapVvtTrackingLengthOverride >= 4 } + field = "VVT gap #4 to", triggerVVTGapOverrideTo4 { overrideVvtTriggerGaps == 1 && gapVvtTrackingLengthOverride >= 4 } + + dialog = trigger_advanced, "Advanced Trigger" + field = "Require cam/VVT sync for ignition", isPhaseSyncRequiredForIgnition + field = "Maximum cam/VVT sync RPM", maxCamPhaseResolveRpm + field = "MAP readout angle", mapCamDetectionAnglePosition, 1, { vvtMode1 == 13 } + field = "MAP delta threshold", mapSyncThreshold, 1, { vvtMode1 == 13 } + field = "Print verbose VVT sync details to console",verboseVVTDecoding + field = "Print verbose trigger sync to console", verboseTriggerSynchDetails + field = "Display logic signals", displayLogicLevelsInEngineSniffer + field = "Do not print messages in case of sync error", silentTriggerError + field = "Focus on inputs in engine sniffer", engineSnifferFocusOnInputs + field = "Enable noise filtering", useNoiselessTriggerDecoder, {trigger_type == 8 || trigger_type == 9} + + dialog = triggerConfiguration, "", xAxis + panel = trigger_primary, {1}, { consumeObdSensors == 0 } + panel = trigger_cams, {1}, { consumeObdSensors == 0 } + +; Engine->Injection Settings + dialog = injChars, "Injector Settings", yAxis + field = "Injector flow", injector_flow, {isInjectionEnabled == 1} + field = "Injector flow units", injectorFlowAsMassFlow, {isInjectionEnabled == 1} + field = "Fuel rail pressure sensor", injectorPressureType, { isInjectionEnabled && (highPressureFuel_hwChannel || lowPressureFuel_hwChannel) } + field = "Injector flow compensation mode", injectorCompensationMode, { isInjectionEnabled } + field = "Injector reference pressure", fuelReferencePressure, { isInjectionEnabled && injectorCompensationMode != 0 } + + dialog = fuelParams, "Fuel characteristics", yAxis + field = "Stoichiometric ratio", stoichRatioPrimary, {isInjectionEnabled == 1} + field = "E100 stoichiometric ratio", stoichRatioSecondary, {isInjectionEnabled == 1 && flexSensorPin != 0 } + + dialog = injectorOutputSettings, "Injector Outputs", yAxis + field = "Use only first half of outputs for batch mode" + field = "# wire each output to the corresponding cylinder number" + field = "# rusEFI handles firing order" + field = "Injection Output 1", injectionPins1, {isInjectionEnabled == 1} + field = "Injection Output 2", injectionPins2, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 1} + field = "Injection Output 3", injectionPins3, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 2} + field = "Injection Output 4", injectionPins4, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 3} + field = "Injection Output 5 ", injectionPins5, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 4} + field = "Injection Output 6 ", injectionPins6, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 5} + field = "Injection Output 7 ", injectionPins7, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 6} + field = "Injection Output 8 ", injectionPins8, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 7} + field = "Injection Output 9 ", injectionPins9, {isInjectionEnabled == 1 && cylindersCount > 8} + field = "Injection Output 10 ", injectionPins10, {isInjectionEnabled == 1 && cylindersCount > 9} + field = "Injection Output 11 ", injectionPins11, {isInjectionEnabled == 1 && cylindersCount > 10} + field = "Injection Output 12 ", injectionPins12, {isInjectionEnabled == 1 && cylindersCount > 11} + + dialog = cylinderBankSelect, "Cylinder Banks", yAxis + field = "Cylinder 1", cylinderBankSelect1, {isInjectionEnabled == 1} + field = "Cylinder 2", cylinderBankSelect2, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 1} + field = "Cylinder 3", cylinderBankSelect3, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 2} + field = "Cylinder 4", cylinderBankSelect4, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 3} + field = "Cylinder 5 ", cylinderBankSelect5, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 4} + field = "Cylinder 6 ", cylinderBankSelect6, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 5} + field = "Cylinder 7 ", cylinderBankSelect7, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 6} + field = "Cylinder 8 ", cylinderBankSelect8, {isInjectionEnabled == 1 && injectionMode != 3 && cylindersCount > 7} + field = "Cylinder 9 ", cylinderBankSelect9, {isInjectionEnabled == 1 && cylindersCount > 8} + field = "Cylinder 10 ", cylinderBankSelect10, {isInjectionEnabled == 1 && cylindersCount > 9} + field = "Cylinder 11 ", cylinderBankSelect11, {isInjectionEnabled == 1 && cylindersCount > 10} + field = "Cylinder 12 ", cylinderBankSelect12, {isInjectionEnabled == 1 && cylindersCount > 11} + + dialog = injectorNonlinearPolynomial, "Polynomial Adder", yAxis + field = "Add nonlinearity below pulse", applyNonlinearBelowPulse + field = "constant", injectorCorrectionPolynomial1 + field = "x^1", injectorCorrectionPolynomial2 + field = "x^2", injectorCorrectionPolynomial3 + field = "x^3", injectorCorrectionPolynomial4 + field = "x^4", injectorCorrectionPolynomial5 + field = "x^5", injectorCorrectionPolynomial6 + field = "x^6", injectorCorrectionPolynomial7 + field = "x^7", injectorCorrectionPolynomial8 + + dialog = injectorNonlinearFord, "Ford-model Small Pulse Correction", yAxis + field = "Small pulse slope (ALOSL)", fordInjectorSmallPulseSlope + field = "Set this to 'mass flow'", injectorFlowAsMassFlow + field = "Large pulse slope (AHISL)", injector_flow + field = "Small pulse breakpoint (FUEL_BKPT)", fordInjectorSmallPulseBreakPoint + + dialog = injectorNonlinear + field = "Small pulse correction mode", injectorNonlinearMode + panel = injectorNonlinearPolynomial, {1}, { injectorNonlinearMode == 1 } + panel = injectorNonlinearFord, {1}, { injectorNonlinearMode == 2 } + + dialog = testLuaOut, "Lua Out Test" + commandButton = "Lua Out #1", cmd_test_lua1 + commandButton = "Lua Out #2", cmd_test_lua2 + commandButton = "Lua Out #3", cmd_test_lua3 + commandButton = "Lua Out #4", cmd_test_lua4 + commandButton = "Lua Out #5", cmd_test_lua5 + commandButton = "Lua Out #6", cmd_test_lua6 + commandButton = "Lua Out #7", cmd_test_lua7 + commandButton = "Lua Out #8", cmd_test_lua8 + commandButton = "Abort test", cmd_test_cancel + + dialog = testInjectors, "Injector Test" + commandButton = "Injector #1", cmd_test_inj1 + commandButton = "Injector #2", cmd_test_inj2, { cylindersCount >= 2 } + commandButton = "Injector #3", cmd_test_inj3, { cylindersCount >= 3 } + commandButton = "Injector #4", cmd_test_inj4, { cylindersCount >= 4 } + commandButton = "Injector #5", cmd_test_inj5, { cylindersCount >= 5 } + commandButton = "Injector #6", cmd_test_inj6, { cylindersCount >= 6 } + commandButton = "Injector #7", cmd_test_inj7, { cylindersCount >= 7 } + commandButton = "Injector #8", cmd_test_inj8, { cylindersCount >= 8 } + commandButton = "Injector #9", cmd_test_inj9, { cylindersCount >= 9 } + commandButton = "Injector #10", cmd_test_inj10, { cylindersCount >= 10 } + commandButton = "Injector #11", cmd_test_inj11, { cylindersCount >= 11 } + commandButton = "Injector #12", cmd_test_inj12, { cylindersCount >= 12 } + commandButton = "Abort test", cmd_test_cancel + + dialog = testTcuSolenoids, "TCU Solenoid Test" + commandButton = "Solenoid #1", cmd_test_sol1 + commandButton = "Solenoid #2", cmd_test_sol2 + commandButton = "Solenoid #3", cmd_test_sol3 + commandButton = "Solenoid #4", cmd_test_sol4 + commandButton = "Solenoid #5", cmd_test_sol5 + commandButton = "Solenoid #6", cmd_test_sol6 + commandButton = "Abort test", cmd_test_cancel + + dialog = testOther + field = "Count", benchTestCount + field = "On Time", benchTestOnTime + field = "Off Time", benchTestOffTime + + dialog = injectionSettingsEast, "", yAxis + panel = testInjectors + field = "" + + dialog = injectionSettingsWest, "", yAxis + panel = injectorOutputSettings + field = "" + + dialog = injectionSettings, "", xAxis + panel = injectionSettingsWest + panel = injectionSettingsEast + + dialog = injectorConfig, "", yAxis + topicHelp = "fuelHelp" + panel = baseInjection + panel = injChars + panel = fuelParams + panel = injectorsDeadTime, {isInjectionEnabled} + + dialog = ignitionCylExtra, "Cylinder offsets" + field = "Offset angle for each cylinder if you have an odd fire" + field = "engine, like a v-twin or some V6/V10 engines" + field = "Odd Fire Engine", oddFireEngine + field = "#Positive numbers retard, negative numbers advance" + field = "Offset cyl 1", timing_offset_cylinder1 + field = "Offset cyl 2", timing_offset_cylinder2, {cylindersCount > 1} + field = "Offset cyl 3", timing_offset_cylinder3, {cylindersCount > 2} + field = "Offset cyl 4", timing_offset_cylinder4, {cylindersCount > 3} + field = "Offset cyl 5", timing_offset_cylinder5, {cylindersCount > 4} + field = "Offset cyl 6", timing_offset_cylinder6, {cylindersCount > 5} + field = "Offset cyl 7", timing_offset_cylinder7, {cylindersCount > 6} + field = "Offset cyl 8", timing_offset_cylinder8, {cylindersCount > 7} + field = "Offset cyl 9", timing_offset_cylinder9, {cylindersCount > 8} + field = "Offset cyl 10", timing_offset_cylinder10, {cylindersCount > 9} + field = "Offset cyl 11", timing_offset_cylinder11, {cylindersCount > 10} + field = "Offset cyl 12", timing_offset_cylinder12, {cylindersCount > 11} + + dialog = stagedInjectionOutputs, "", yAxis + field = "Injection Stage 2 Output 1", injectionPinsStage21, {isInjectionEnabled && enableStagedInjection} + field = "Injection Stage 2 Output 2", injectionPinsStage22, {isInjectionEnabled && enableStagedInjection && injectionMode != 3 && cylindersCount > 1} + field = "Injection Stage 2 Output 3", injectionPinsStage23, {isInjectionEnabled && enableStagedInjection && injectionMode != 3 && cylindersCount > 2} + field = "Injection Stage 2 Output 4", injectionPinsStage24, {isInjectionEnabled && enableStagedInjection && injectionMode != 3 && cylindersCount > 3} + field = "Injection Stage 2 Output 5 ", injectionPinsStage25, {isInjectionEnabled && enableStagedInjection && injectionMode != 3 && cylindersCount > 4} + field = "Injection Stage 2 Output 6 ", injectionPinsStage26, {isInjectionEnabled && enableStagedInjection && injectionMode != 3 && cylindersCount > 5} + field = "Injection Stage 2 Output 7 ", injectionPinsStage27, {isInjectionEnabled && enableStagedInjection && injectionMode != 3 && cylindersCount > 6} + field = "Injection Stage 2 Output 8 ", injectionPinsStage28, {isInjectionEnabled && enableStagedInjection && injectionMode != 3 && cylindersCount > 7} + field = "Injection Stage 2 Output 9 ", injectionPinsStage29, {isInjectionEnabled && enableStagedInjection && cylindersCount > 8} + field = "Injection Stage 2 Output 10 ", injectionPinsStage210, {isInjectionEnabled && enableStagedInjection && cylindersCount > 9} + field = "Injection Stage 2 Output 11 ", injectionPinsStage211, {isInjectionEnabled && enableStagedInjection && cylindersCount > 10} + field = "Injection Stage 2 Output 12 ", injectionPinsStage212, {isInjectionEnabled && enableStagedInjection && cylindersCount > 11} + + dialog = stagedInjection, "", yAxis + field = "Enable", enableStagedInjection, {isInjectionEnabled} + field = "" + field = "Secondary injector flow", injectorSecondary_flow {isInjectionEnabled && enableStagedInjection} + field = "" + panel = injectorsSecondaryDeadTime, {isInjectionEnabled && enableStagedInjection} + + dialog = multisparkDwellParams, "Delay & Dwell" + field = "Spark duration", multisparkSparkDuration, {multisparkEnable} + field = "Subsequent spark dwell", multisparkDwell, {multisparkEnable} + + dialog = multisparkMain, "Configuration" + field = "Maximum engine speed", multisparkMaxRpm, {multisparkEnable} + field = "Fire sparks for this angle duration" multisparkMaxSparkingAngle, {multisparkEnable} + field = "Maximum extra spark count" multisparkMaxExtraSparkCount, {multisparkEnable} + + dialog = multisparkSettings, "Multispark" + field = "#WARNING! These settings have the potential to overheat ignition components" + field = "#and cause other nasty misbehavior. Use with care, at your own risk!" + field = "#Not recommended for use on distributor or wasted spark ignition systems." + field = "Enable multiple sparks", multisparkEnable + panel = multisparkMain + panel = multisparkDwellParams + + dialog = ignAdder1Cfg, "Ignition adder 1 config" + field = "#The bias table controls how much of the blend table" + field = "#is mixed in to the base ignition table. For example, a value of" + field = "#+10 in the table, with 50 as the current bias will result" + field = "#in 5.0 degrees of ignition timing added." + field = "#The X axis of the bias table is controlled by the selected blend" + field = "#parameter below." + field = "Blend parameter", ignBlends1_blendParameter + field = "Y axis override (set Zero for no override)", ignBlends1_yAxisOverride, {ignBlends1_blendParameter} + panel = ignAdder1Bias, {ignBlends1_blendParameter} + + dialog = ignAdder2Cfg, "Ignition adder 2 config" + field = "#The bias table controls how much of the blend table" + field = "#is mixed in to the base ignition table. For example, a value of" + field = "#+10 in the table, with 50 as the current bias will result" + field = "#in 5.0 degrees of ignition timing added." + field = "#The X axis of the bias table is controlled by the selected blend" + field = "#parameter below." + field = "Blend parameter", ignBlends2_blendParameter + field = "Y axis override (set Zero for no override)", ignBlends2_yAxisOverride, {ignBlends2_blendParameter} + panel = ignAdder2Bias, {ignBlends2_blendParameter} + + dialog = ignAdder3Cfg, "Ignition adder 3 config" + field = "#The bias table controls how much of the blend table" + field = "#is mixed in to the base ignition table. For example, a value of" + field = "#+10 in the table, with 50 as the current bias will result" + field = "#in 5.0 degrees of ignition timing added." + field = "#The X axis of the bias table is controlled by the selected blend" + field = "#parameter below." + field = "Blend parameter", ignBlends3_blendParameter + field = "Y axis override (set Zero for no override)", ignBlends3_yAxisOverride, {ignBlends3_blendParameter} + panel = ignAdder3Bias, {ignBlends3_blendParameter} + + dialog = ignAdder4Cfg, "Ignition adder 4 config" + field = "#The bias table controls how much of the blend table" + field = "#is mixed in to the base ignition table. For example, a value of" + field = "#+10 in the table, with 50 as the current bias will result" + field = "#in 5.0 degrees of ignition timing added." + field = "#The X axis of the bias table is controlled by the selected blend" + field = "#parameter below." + field = "Blend parameter", ignBlends4_blendParameter + field = "Y axis override (set Zero for no override)", ignBlends4_yAxisOverride, {ignBlends4_blendParameter} + panel = ignAdder4Bias, {ignBlends4_blendParameter} + + dialog = veBlend1Cfg, "VE blend 1 config" + field = "#The bias table controls how much of the blend table" + field = "#is mixed in to the VE table. For example, a value of" + field = "#+10 in the table, with 50 as the current bias will result" + field = "#in +5.0% added to the VE. Note that this doesn't add 5% VE," + field = "instead, it adds 5% to the current VE value, multiplying VE by 1.05." + field = "#The X axis of the bias table is controlled by the selected blend" + field = "#parameter below." + field = "Blend parameter", veBlends1_blendParameter + field = "Y axis override (set Zero for no override)", veBlends1_yAxisOverride, {veBlends1_blendParameter} + panel = veBlend1Bias, {veBlends1_blendParameter} + + dialog = veBlend2Cfg, "VE blend 2 config" + field = "#The bias table controls how much of the blend table" + field = "#is mixed in to the VE table. For example, a value of" + field = "#+10 in the table, with 50 as the current bias will result" + field = "#in +5.0% added to the VE. Note that this doesn't add 5% VE," + field = "instead, it adds 5% to the current VE value, multiplying VE by 1.05." + field = "#The X axis of the bias table is controlled by the selected blend" + field = "#parameter below." + field = "Blend parameter", veBlends2_blendParameter + field = "Y axis override (set Zero for no override)", veBlends2_yAxisOverride, {veBlends2_blendParameter} + panel = veBlend2Bias, {veBlends2_blendParameter} + + dialog = veBlend3Cfg, "VE blend 3 config" + field = "#The bias table controls how much of the blend table" + field = "#is mixed in to the VE table. For example, a value of" + field = "#+10 in the table, with 50 as the current bias will result" + field = "#in +5.0% added to the VE. Note that this doesn't add 5% VE," + field = "instead, it adds 5% to the current VE value, multiplying VE by 1.05." + field = "#The X axis of the bias table is controlled by the selected blend" + field = "#parameter below." + field = "Blend parameter", veBlends3_blendParameter + field = "Y axis override (set Zero for no override)", veBlends3_yAxisOverride, {veBlends3_blendParameter} + panel = veBlend3Bias, {veBlends3_blendParameter} + + dialog = veBlend4Cfg, "VE blend 4 config" + field = "#The bias table controls how much of the blend table" + field = "#is mixed in to the VE table. For example, a value of" + field = "#+10 in the table, with 50 as the current bias will result" + field = "#in +5.0% added to the VE. Note that this doesn't add 5% VE," + field = "instead, it adds 5% to the current VE value, multiplying VE by 1.05." + field = "#The X axis of the bias table is controlled by the selected blend" + field = "#parameter below." + field = "Blend parameter", veBlends4_blendParameter + field = "Y axis override (set Zero for no override)", veBlends4_yAxisOverride, {veBlends4_blendParameter} + panel = veBlend4Bias, {veBlends4_blendParameter} + + indicatorPanel = isBoostControlledPanel, 1 + indicator = {isBoostControlled}, "No Boost Control", "Boost Control Active" + + dialog = boostOpenBlend1Cfg, "Boost open loop blend 1 config" + field = "#The bias table controls how much of the blend table" + field = "#is mixed in to the open loop boost table. For example, a value of" + field = "#+10 in the table, with 50 as the current bias will result" + field = "#in +5.0 added to the boost open loop %." + field = "#The X axis of the bias table is controlled by the selected blend" + field = "#parameter below." + panel = isBoostControlledPanel + field = "Blend parameter", boostOpenLoopBlends1_blendParameter + field = "Y axis override (set Zero for no override)", boostOpenLoopBlends1_yAxisOverride, {boostOpenLoopBlends1_blendParameter} + panel = boostOpenLoopBlend1Bias, {boostOpenLoopBlends1_blendParameter} + + dialog = boostOpenBlend2Cfg, "Boost open loop blend 2 config" + field = "#The bias table controls how much of the blend table" + field = "#is mixed in to the open loop boost table. For example, a value of" + field = "#+10 in the table, with 50 as the current bias will result" + field = "#in +5.0 added to the boost open loop %." + field = "#The X axis of the bias table is controlled by the selected blend" + field = "#parameter below." + panel = isBoostControlledPanel + field = "Blend parameter", boostOpenLoopBlends2_blendParameter + field = "Y axis override (set Zero for no override)", boostOpenLoopBlends2_yAxisOverride, {boostOpenLoopBlends2_blendParameter} + panel = boostOpenLoopBlend2Bias, {boostOpenLoopBlends2_blendParameter} + + dialog = boostClosedBlend1Cfg, "Boost closed loop blend 1 config" + field = "#The bias table controls how much of the blend table" + field = "#is mixed in to the closed loop boost table. For example, a value of" + field = "#+10 in the table, with 50 as the current bias will result" + field = "#in +5.0 added to the boost closed loop %." + field = "#The X axis of the bias table is controlled by the selected blend" + field = "#parameter below." + field = "Blend parameter", boostClosedLoopBlends1_blendParameter + field = "Y axis override (set Zero for no override)", boostClosedLoopBlends1_yAxisOverride, {boostClosedLoopBlends1_blendParameter} + panel = boostClosedLoopBlend1Bias, {boostClosedLoopBlends1_blendParameter} + + dialog = boostClosedBlend2Cfg, "Boost closed loop blend 2 config" + field = "#The bias table controls how much of the blend table" + field = "#is mixed in to the closed loop boost table. For example, a value of" + field = "#+10 in the table, with 50 as the current bias will result" + field = "#in +5.0 added to the boost closed loop %." + field = "#The X axis of the bias table is controlled by the selected blend" + field = "#parameter below." + field = "Blend parameter", boostClosedLoopBlends2_blendParameter + field = "Y axis override (set Zero for no override)", boostClosedLoopBlends2_yAxisOverride, {boostClosedLoopBlends2_blendParameter} + panel = boostClosedLoopBlend2Bias, {boostClosedLoopBlends2_blendParameter} + + dialog = dwellSettings, "", yAxis + panel = dwellCorrection + panel = dwellVoltageCorrection + + dialog = auxTempSensor1Sensor, "aux1 Thermistor Settings" + field = "Input channel", auxTempSensor1_adcChannel + field = "Pullup resistor", auxTempSensor1_bias_resistor, {auxTempSensor1_adcChannel != 0} + + field = "#Here is three pairs of thermistor temperature and resistance." + field = "#Typical temperatures is -40 deg C, 0 deg C and 100 deg C" + field = "" + field = "Lowest temperature", auxTempSensor1_tempC_1, {auxTempSensor1_adcChannel != 0} + field = "Resistance @ LT", auxTempSensor1_resistance_1, {auxTempSensor1_adcChannel != 0} + field = "" + field = "Middle temperature", auxTempSensor1_tempC_2, {auxTempSensor1_adcChannel != 0} + field = "Resistance @ MT", auxTempSensor1_resistance_2, {auxTempSensor1_adcChannel != 0} + field = "" + field = "Highest temperature", auxTempSensor1_tempC_3, {auxTempSensor1_adcChannel != 0} + field = "Resistance @ HT", auxTempSensor1_resistance_3, {auxTempSensor1_adcChannel != 0} + + dialog = auxTempSensor2Sensor, "aux2 Thermistor Settings" + field = "Input channel", auxTempSensor2_adcChannel + field = "Pullup resistor", auxTempSensor2_bias_resistor, {auxTempSensor2_adcChannel != 0} + + field = "#Here is three pairs of thermistor temperature and resistance." + field = "#Typical temperatures is -40 deg C, 0 deg C and 100 deg C" + field = "" + field = "Lowest temperature", auxTempSensor2_tempC_1, {auxTempSensor2_adcChannel != 0} + field = "Resistance @ LT", auxTempSensor2_resistance_1, {auxTempSensor2_adcChannel != 0} + field = "" + field = "Middle temperature", auxTempSensor2_tempC_2, {auxTempSensor2_adcChannel != 0} + field = "Resistance @ MT", auxTempSensor2_resistance_2, {auxTempSensor2_adcChannel != 0} + field = "" + field = "Highest temperature", auxTempSensor2_tempC_3, {auxTempSensor2_adcChannel != 0} + field = "Resistance @ HT", auxTempSensor2_resistance_3, {auxTempSensor2_adcChannel != 0} + + dialog = tpsSent1, "SENT TPS" + field = "Input #1", sentInputPins1 + field = "ETB type", sentEtbType, {sentInputPins1 != 0} + field = "Closed value", customSentTpsMin, {sentEtbType == 3 } + field = "Open value", customSentTpsMax, {sentEtbType == 3 } + + dialog = oilTempSensor, "Oil Temp Sensor Settings" + field = "Input channel", oilTempSensor_adcChannel + field = "Pullup resistor", oilTempSensor_bias_resistor, {oilTempSensor_adcChannel != 0} + + field = "Lowest temperature", oilTempSensor_tempC_1, {oilTempSensor_adcChannel != 0} + field = "Resistance @ LT", oilTempSensor_resistance_1, {oilTempSensor_adcChannel != 0} + field = "" + field = "Middle temperature", oilTempSensor_tempC_2, {oilTempSensor_adcChannel != 0} + field = "Resistance @ MT", oilTempSensor_resistance_2, {oilTempSensor_adcChannel != 0} + field = "" + field = "Highest temperature", oilTempSensor_tempC_3, {oilTempSensor_adcChannel != 0} + field = "Resistance @ HT", oilTempSensor_resistance_3, {oilTempSensor_adcChannel != 0} + + dialog = fuelTempSensor, "Fuel Temp Sensor Settings" + field = "Input channel", fuelTempSensor_adcChannel + field = "Pullup resistor", fuelTempSensor_bias_resistor, {fuelTempSensor_adcChannel != 0} + + field = "Lowest temperature", fuelTempSensor_tempC_1, {fuelTempSensor_adcChannel != 0} + field = "Resistance @ LT", fuelTempSensor_resistance_1, {fuelTempSensor_adcChannel != 0} + field = "" + field = "Middle temperature", fuelTempSensor_tempC_2, {fuelTempSensor_adcChannel != 0} + field = "Resistance @ MT", fuelTempSensor_resistance_2, {fuelTempSensor_adcChannel != 0} + field = "" + field = "Highest temperature", fuelTempSensor_tempC_3, {fuelTempSensor_adcChannel != 0} + field = "Resistance @ HT", fuelTempSensor_resistance_3, {fuelTempSensor_adcChannel != 0} + + dialog = ambientTempSensor, "Ambient Temp Sensor Settings" + field = "!Put this sensor before any turbocharger/supercharger" + field = "!near the air filter." + field = "Input channel", ambientTempSensor_adcChannel + field = "Pullup resistor", ambientTempSensor_bias_resistor, {ambientTempSensor_adcChannel != 0} + + field = "Lowest temperature", ambientTempSensor_tempC_1, {ambientTempSensor_adcChannel != 0} + field = "Resistance @ LT", ambientTempSensor_resistance_1, {ambientTempSensor_adcChannel != 0} + field = "" + field = "Middle temperature", ambientTempSensor_tempC_2, {ambientTempSensor_adcChannel != 0} + field = "Resistance @ MT", ambientTempSensor_resistance_2, {ambientTempSensor_adcChannel != 0} + field = "" + field = "Highest temperature", ambientTempSensor_tempC_3, {ambientTempSensor_adcChannel != 0} + field = "Resistance @ HT", ambientTempSensor_resistance_3, {ambientTempSensor_adcChannel != 0} + + dialog = compressorDischargeTemperature, "Compressor Discharge Temp Settings" + field = "!Put this sensor after the turbocharger/supercharger" + field = "!but before the intercooler." + field = "Input channel", compressorDischargeTemperature_adcChannel + field = "Pullup resistor", compressorDischargeTemperature_bias_resistor, {compressorDischargeTemperature_adcChannel != 0} + + field = "Lowest temperature", compressorDischargeTemperature_tempC_1, {compressorDischargeTemperature_adcChannel != 0} + field = "Resistance @ LT", compressorDischargeTemperature_resistance_1, {compressorDischargeTemperature_adcChannel != 0} + field = "" + field = "Middle temperature", compressorDischargeTemperature_tempC_2, {compressorDischargeTemperature_adcChannel != 0} + field = "Resistance @ MT", compressorDischargeTemperature_resistance_2, {compressorDischargeTemperature_adcChannel != 0} + field = "" + field = "Highest temperature", compressorDischargeTemperature_tempC_3, {compressorDischargeTemperature_adcChannel != 0} + field = "Resistance @ HT", compressorDischargeTemperature_resistance_3, {compressorDischargeTemperature_adcChannel != 0} + + dialog = tpsNum1, "Throttle Body #1" + field = "Primary sensor", tps1_1AdcChannel + field = "Primary min", tpsMin, {tps1_1AdcChannel != 0} + field = "Primary max", tpsMax, {tps1_1AdcChannel != 0} + field = "Secondary sensor", tps1_2AdcChannel, {tps1_1AdcChannel != 0} + field = "Secondary min", tps1SecondaryMin, {tps1_2AdcChannel != 0 && tps1_1AdcChannel != 0} + field = "Secondary max", tps1SecondaryMax, {tps1_2AdcChannel != 0 && tps1_1AdcChannel != 0} + commandButton = "Auto Calibrate ETB 1", cmd_etb_auto_calibrate, { (etbFunctions1 == 1 || etbFunctions2 == 1) && tps1_1AdcChannel != 0 && calibrationMode == 0} + + dialog = tpsNum2, "Throttle Body #2" + field = "Primary sensor", tps2_1AdcChannel + field = "Primary min", tps2Min, {tps2_1AdcChannel != 0} + field = "Primary max", tps2Max, {tps2_1AdcChannel != 0} + field = "Secondary sensor", tps2_2AdcChannel, {tps2_1AdcChannel != 0} + field = "Secondary min", tps2SecondaryMin, {tps2_2AdcChannel != 0 && tps2_1AdcChannel != 0} + field = "Secondary max", tps2SecondaryMax, {tps2_2AdcChannel != 0 && tps2_1AdcChannel != 0} + commandButton = "Auto Calibrate ETB 2", cmd_etb_auto_calibrate_2, { (etbFunctions1 == 2 || etbFunctions2 == 2) && tps2_1AdcChannel != 0 && calibrationMode == 0} + + dialog = tpsPpsLimits, "TPS/PPS Limits" + field = "TPS/PPS minimum valid value", tpsErrorDetectionTooLow, {tps1_1AdcChannel != 0} + field = "TPS/PPS maximum valid value", tpsErrorDetectionTooHigh, {tps1_1AdcChannel != 0} + field = "TPS/PPS Error Detection Threshold", etbSplit + + dialog = tpsSensorLeft + panel = tpsPpsLimits + panel = tpsNum1 + panel = tpsNum2 + field = "Ford/Toyota redundant TPS mode", useFordRedundantTps + field = "Secondary TPS maximum", tpsSecondaryMaximum, {useFordRedundantTps} + + dialog = pedalSensorLeft, "Accelerator pedal" + field = "Accelerator position sensor", throttlePedalPositionAdcChannel + field = "Up voltage", throttlePedalUpVoltage + commandButton = "Grab Up", cmd_calibrate_pedal_up + field = "Down (WOT) voltage", throttlePedalWOTVoltage + commandButton = "Grab Down", cmd_calibrate_pedal_down + field = "Accelerator position 2nd sensor", throttlePedalPositionSecondAdcChannel + field = "Up voltage", throttlePedalSecondaryUpVoltage + field = "Down (WOT) voltage", throttlePedalSecondaryWOTVoltage + field = "Ford/Toyota redundant PPS mode", useFordRedundantPps + field = "Secondary PPS maximum", ppsSecondaryMaximum, {useFordRedundantPps} + panel = tpsPpsLimits + + dialog = pedalGauges + gauge = pedalPositionGauge + gauge = rawPpsPrimaryGauge + gauge = rawPpsSecondaryGauge + + dialog = tpsGauges + gauge = rawTps1PrimaryGauge + gauge = rawTps1SecondaryGauge + gauge = rawTps2PrimaryGauge + gauge = rawTps2SecondaryGauge + + dialog = pedalSensor, "Accelerator pedal", border + panel = pedalSensorLeft, West + panel = pedalGauges, East + + dialog = tpsSensor, "", border + panel = tpsSensorLeft, West + panel = tpsGauges, East + + dialog = wastegatePosConfig, "Wastegate position sensor" + field = "Input", wastegatePositionSensor + field = "Min (fully closed, most boost)", wastegatePositionMin + field = "Max (fully open, least boost)", wastegatePositionMax + + dialog = idlePosConfig, "Idle position sensor" + field = "Input", idlePositionChannel + field = "Min (valve closed, low idle)", idlePositionMin + field = "Max (valve open, high idle)", idlePositionMax + + dialog = wastegateIdlePosLeft, "" + panel = wastegatePosConfig + panel = idlePosConfig + + dialog = wastegateIdlePosGauges, "" + gauge = rawWastegatePositionGauge, West + gauge = wastegatePosGauge, East + gauge = rawIdlePositionSensorGauge + gauge = idlePosSensGauge + + dialog = wastegateIdlePos, "", border + panel = wastegateIdlePosLeft, West + panel = wastegateIdlePosGauges, East + + dialog = tractionIgnitionSkipDialog, "Traction Ignition Skip" + field = useHardSkipInTraction, useHardSkipInTraction + panel = tractionIgnitionSkipTableTbl + + dialog = mc33Dialog, "Low-Z injector control PT2001" + field = externalRusEfiGdiModule, externalRusEfiGdiModule + field = "SPI Chip Select", mc33816_cs + field = "SPI Device", mc33816spiDevice + field = "MC33816 rstb", mc33816_rstb + field = "MC33816 flag0", mc33816_flag0 + field = "MC33816 Driven", mc33816_driven + + field = "Boost voltage", mc33_hvolt + field = "Boost current target", mc33_i_boost + field = "Min boost time", mc33_t_min_boost + field = "Max boost time (timeout)", mc33_t_max_boost + + field = "Peak phase current target", mc33_i_peak + field = "Peak phase duration", mc33_t_peak_tot + field = "Peak phase loop off time", mc33_t_peak_off + field = "Peak -> Hold Bypass Time", mc33_t_bypass + + field = "Hold current target", mc33_i_hold + field = "Hold phase loop off time", mc33_t_hold_off + field = "Maximum injection duration", mc33_t_hold_tot + +; Sensor Inputs + dialog = otherSensorInputs, "Other Sensor Inputs" + field = "Clutch Down", clutchDownPin + field = "Clutch Down signal", clutchDownPinInverted + field = "Clutch Down mode", clutchDownPinMode + + field = "Clutch Up", clutchUpPin + field = "Clutch Up signal", clutchUpPinInverted + field = "Clutch Up mode", clutchUpPinMode + field = "Throttle Up switch", throttlePedalUpPin + field = "Brake Pedal", brakePedalPin + field = "Brake Pedal signal", brakePedalPinInverted + field = "Brake Pedal Mode", brakePedalPinMode + field = "Flex fuel sensor", flexSensorPin + field = "Flex Signal", flexSensorInverted + field = "Turbo Speed Sensor", turboSpeedSensorInputPin + field = "Turbo Speed Multiplier", turboSpeedSensorMultiplier, { turboSpeedSensorInputPin } + field = "Throttle inlet pressure sensor", throttleInletPressureChannel + field = "Compressor discharge pressure sensor", compressorDischargePressureChannel + + dialog = fuelLevelDialog, "Fuel Level Sensor" + field = "Input channel", fuelLevelSensor + panel = fuelLevelCurve + +; +; allXXX sections allows a quick overview of used I/O in order to address conflicts mostly, not really to +; configure the features. +; + dialog = allPinsSensors, "Sensors" + field = "Throttle pedal Position Channel", throttlePedalPositionAdcChannel + field = "Throttle pedal Position #2", throttlePedalPositionSecondAdcChannel + field = "Primary input channel", triggerInputPins1 + field = "Secondary channel", triggerInputPins2 + field = "Cam Sync/VVT input", camInputs1 + field = "CLT ADC input", clt_adcChannel + field = "IAT ADC input", iat_adcChannel + field = "vBatt ADC input", vbattAdcChannel + field = "TPS1 ADC input", tps1_1AdcChannel + field = "TPS2 ADC input", tps2_1AdcChannel + field = "MAF ADC input", mafAdcChannel + field = "MAF 2 ADC input", maf2AdcChannel + field = "AFR ADC input", afr_hwChannel + field = "AFR 2 ADC input", afr_hwChannel2 + field = "Baro ADC input", baroSensor_hwChannel + field = "MAP ADC input", map_sensor_hwChannel + field = "Fuel Level input", fuelLevelSensor + field = "Vehicle Speed input", vehicleSpeedSensorInputPin + field = "Clutch Down input", clutchDownPin + field = "Clutch Up input", clutchUpPin + field = "Brake pedal input", brakePedalPin + field = "A/C Switch", acSwitch + field = "Aux Temperature #1", auxTempSensor1_adcChannel + field = "Aux Temperature #2", auxTempSensor2_adcChannel + field = "Aux Fast Analog", auxFastSensor1_adcChannel + + dialog = allTriggerDebug, "Trigger Debug" + field = "trigger 1 debug", triggerInputDebugPins1 + field = "trigger 2 debug", triggerInputDebugPins2 + field = "cam 1 debug", camInputsDebug1 + field = "cam 2 debug", camInputsDebug2 + field = "cam 3 debug", camInputsDebug3 + field = "cam 4 debug", camInputsDebug4 + + dialog = allPinsMC33, "MC33816" + field = "Chip Select", mc33816_cs + field = rstb, mc33816_rstb + field = flag0, mc33816_flag0 + field = mc33816_driven, mc33816_driven + field = mc33816spiDevice, mc33816spiDevice + field = hpfpValvePin, hpfpValvePin + + dialog = allPins1_1 + field = "trigger stimulator output #1", triggerSimulatorPins1 + field = "trigger stimulator output #2", triggerSimulatorPins2 + field = camSimulatorPin, camSimulatorPin + field = "tle6240_cs", tle6240_cs + field = "mc33810_cs", mc33810_cs1 + field = "mc33810_csPinMode", mc33810_csPinMode + field = "tle6240 SPI", tle6240spiDevice + + dialog = allPins1_2 + field = "Tachometer output", tachOutputPin + field = "Narrowband O2 heater output", o2heaterPin + field = "Idle Solenoid Primary output", idle_solenoidPin + field = "Idle Solenoid Secondary output",secondSolenoidPin + field = "Idle Stepper Dir", idle_stepperDirectionPin + field = "Idle Stepper Step", idle_stepperStepPin + field = "Idle Stepper Enable", stepperEnablePin + field = "Fuel Pump output", fuelPumpPin + field = "SD CS Pin", sdCardCsPin + field = "MIL/Check Engine output", malfunctionIndicatorPin + field = "Fan Pin", fanPin + field = "A/C Relay", acRelayPin + field = "Main Relay Pin", mainRelayPin + field = "Starter Relay Pin", starterRelayDisablePin + + dialog = allPins2_1 + field = "Injection Output 1", injectionPins1 + field = "Injection Output 2", injectionPins2 + field = "Injection Output 3", injectionPins3 + field = "Injection Output 4", injectionPins4 + field = "Injection Output 5 ", injectionPins5 + field = "Injection Output 6 ", injectionPins6 + field = "Injection Output 7 ", injectionPins7 + field = "Injection Output 8 ", injectionPins8 + field = "Injection Output 9 ", injectionPins9 + field = "Injection Output 10 ", injectionPins10 + field = "Injection Output 11 ", injectionPins11 + field = "Injection Output 12 ", injectionPins12 + field = auxSpeedSensorInputPin1, auxSpeedSensorInputPin1 + field = auxSpeedSensorInputPin2, auxSpeedSensorInputPin2 + + + dialog = allPins2_2 + field = "Ignition Output 1", ignitionPins1 + field = "Ignition Output 2", ignitionPins2 + field = "Ignition Output 3", ignitionPins3 + field = "Ignition Output 4", ignitionPins4 + field = "Ignition Output 5", ignitionPins5 + field = "Ignition Output 6", ignitionPins6 + field = "Ignition Output 7", ignitionPins7 + field = "Ignition Output 8", ignitionPins8 + field = "Ignition Output 9", ignitionPins9 + field = "Ignition Output 10", ignitionPins10 + field = "Ignition Output 11", ignitionPins11 + field = "Ignition Output 12", ignitionPins12 + + dialog = allPins2_3 + field = "Debug Trigger Sync", debugTriggerSync + panel = allTriggerDebug + panel = allPinsMC33 + + dialog = allPins1_3 + field = "Aux ADC #1", auxAnalogInputs1 + field = "Aux ADC #2", auxAnalogInputs2 + field = "Aux ADC #3", auxAnalogInputs3 + field = "Aux ADC #4", auxAnalogInputs4 + field = "Aux ADC #5", auxAnalogInputs5 + field = "Aux ADC #6", auxAnalogInputs6 + field = "Aux ADC #7", auxAnalogInputs7 + field = "Aux ADC #8", auxAnalogInputs8 + field = "CAN RX pin", canRxPin + field = "CAN TX pin", canTxPin + field = "SPI1 MOSI", spi1mosiPin, { spi1mosiPin != 0 || is_enabled_spi_1 == 1} + field = "SPI1 MISO", spi1misoPin, { spi1misoPin != 0 || is_enabled_spi_1 == 1} + field = "SPI1 SCK", spi1sckPin, {is_enabled_spi_1 == 1} + field = "SPI2 MOSI", spi2mosiPin, {is_enabled_spi_2 == 1} + field = "SPI2 MISO", spi2misoPin, {is_enabled_spi_2 == 1} + field = "SPI2 SCK", spi2sckPin, {is_enabled_spi_2 == 1} + field = "SPI3 MOSI", spi3mosiPin, {is_enabled_spi_3 == 1} + field = "SPI3 MISO", spi3misoPin, {is_enabled_spi_3 == 1} + field = "SPI3 SCK", spi3sckPin, {is_enabled_spi_3 == 1} + field = "SPI4 MOSI", spi4mosiPin, {is_enabled_spi_4 == 1} + field = "SPI4 MISO", spi4misoPin, {is_enabled_spi_4 == 1} + field = "SPI4 SCK", spi4sckPin, {is_enabled_spi_4 == 1} + field = "SPI5 MOSI", spi5mosiPin, {is_enabled_spi_5 == 1} + field = "SPI5 MISO", spi5misoPin, {is_enabled_spi_5 == 1} + field = "SPI5 SCK", spi5sckPin, {is_enabled_spi_5 == 1} + field = "SPI6 MOSI", spi6mosiPin, {is_enabled_spi_6 == 1} + field = "SPI6 MISO", spi6misoPin, {is_enabled_spi_6 == 1} + field = "SPI6 SCK", spi6sckPin, {is_enabled_spi_6 == 1} + field = "hip9011CsPin", hip9011CsPin + field = "Saab CDM knock", cdmInputPin + field = "DRV8860 CS", drv8860_cs + field = "DRV8860 CS Mode", drv8860_csPinMode + field = "DRV8860 MISO pin", drv8860_miso + field = "DRV8860 SPI", drv8860spiDevice + + dialog = allPins3_1 + panel = allPinsSensors + + dialog = allPins3_2 + field = "VVT solenoid bank 1 intake", vvtPins1 + field = "VVT solenoid bank 1 exhaust", vvtPins2 + field = "VVT solenoid bank 2 intake", vvtPins3 + field = "VVT solenoid bank 2 exhaust", vvtPins4 + field = "Aux Valve #1", auxValves1 + field = "Aux Valve #2", auxValves2 + field = "TLE8888 Chip Select", tle8888_cs + field = "TLE 8888 spi", tle8888spiDevice + field = "L9779 Chip Select", l9779_cs + field = "Start/Stop Button", startStopButtonPin + field = "Upshift Pin", tcuUpshiftButtonPin + field = "Downshift Pin", tcuDownshiftButtonPin + + dialog = allPins3_1_and_2, "All IO 3/3", xAxis + panel = allPins3_1 + panel = allPins3_2 + + dialog = allPins1_1_and_2, "", xAxis + panel = allPins1_1 + panel = allPins1_2 + + dialog = allPins1, "All IO 1/3", xAxis + panel = allPins1_1_and_2 + panel = allPins1_3 + + dialog = allPins2_1_and_2, "", xAxis + panel = allPins2_1 + panel = allPins2_2 + + dialog = allPins2, "All IO 2/3", xAxis + panel = allPins2_1_and_2 + panel = allPins2_3 + + dialog = clt_thermistor, "CLT sensor" + field = "Input channel", clt_adcChannel + field = "Pullup resistor", clt_bias_resistor, {clt_adcChannel != 0} + + settingSelector = "Common CLT Sensors" + settingOption = "GM CLT", clt_tempC_1=-40,clt_resistance_1=100000,clt_tempC_2=40,clt_resistance_2=1459,clt_tempC_3=130,clt_resistance_3=70,useLinearCltSensor=0 + settingOption = "Miata NA", clt_tempC_1=-20,clt_resistance_1=16150,clt_tempC_2=40,clt_resistance_2=1150,clt_tempC_3=80,clt_resistance_3=330,useLinearCltSensor=0 + settingOption = "Miata NB", clt_tempC_1=-10,clt_resistance_1=9000,clt_tempC_2=20,clt_resistance_2=2500,clt_tempC_3=80,clt_resistance_3=320,useLinearCltSensor=0 + settingOption = "Bosch Various", clt_tempC_1=0,clt_resistance_1=5896,clt_tempC_2=50,clt_resistance_2=834,clt_tempC_3=100,clt_resistance_3=187,useLinearCltSensor=0 + + field = "#Input three pairs of thermistor temperature and resistance." + field = "#Typical temperatures are -40 deg C, 0 deg C and 100 deg C" + field = "" + field = "Lowest temperature", clt_tempC_1, {clt_adcChannel != 0} + field = "Resistance @ LT", clt_resistance_1, {clt_adcChannel != 0} + field = "" + field = "Middle temperature", clt_tempC_2, {clt_adcChannel != 0} + field = "Resistance @ MT", clt_resistance_2, {clt_adcChannel != 0} + field = "" + field = "Highest temperature", clt_tempC_3, {clt_adcChannel != 0} + field = "Resistance @ HT", clt_resistance_3, {clt_adcChannel != 0} + field = "" + field = "Linear characteristic", useLinearCltSensor, {clt_adcChannel != 0} + + dialog = cltGauges + gauge = CLTGauge + gauge = rawCltGauge + + dialog = cltSensor, "CLT Sensor", border + panel = clt_thermistor, West + panel = cltGauges, East + + dialog = iat_thermistor, "IAT sensor" + field = "Input channel", iat_adcChannel + field = "Pullup resistor", iat_bias_resistor, {iat_adcChannel != 0} + + settingSelector = "Common IAT Sensors", {iat_adcChannel != 0} + settingOption = "GM IAT", iat_tempC_1=8.9,iat_resistance_1=7000,iat_tempC_2=30.6,iat_resistance_2=1930,iat_tempC_3=63.3,iat_resistance_3=560,useLinearIatSensor=0 + settingOption = "Miata NA/NB", iat_tempC_1=-20,iat_resistance_1=16150,iat_tempC_2=40,iat_resistance_2=1150,iat_tempC_3=80,iat_resistance_3=330,useLinearIatSensor=0 + settingOption = "Miata MSM IAT2", iat_tempC_1=0,iat_resistance_1=112000,iat_tempC_2=40,iat_resistance_2=17000,iat_tempC_3=60,iat_resistance_3=8000,useLinearIatSensor=0 + settingOption = "Bosch Various", iat_tempC_1=-10,iat_resistance_1=9397,iat_tempC_2=30,iat_resistance_2=1707,iat_tempC_3=70,iat_resistance_3=436,useLinearIatSensor=0 + + field = "#Input three pairs of thermistor temperature and resistance." + field = "#Typical temperatures are -40 deg C, 0 deg C and 100 deg C" + field = "" + field = "Lowest temperature", iat_tempC_1, {iat_adcChannel != 0} + field = "Resistance @ LT", iat_resistance_1, {iat_adcChannel != 0} + field = "" + field = "Middle temperature", iat_tempC_2, {iat_adcChannel != 0} + field = "Resistance @ MT", iat_resistance_2, {iat_adcChannel != 0} + field = "" + field = "Highest temperature", iat_tempC_3, {iat_adcChannel != 0} + field = "Resistance @ HT", iat_resistance_3, {iat_adcChannel != 0} + field = "" + field = "Linear characteristic", useLinearIatSensor, {iat_adcChannel != 0} + + dialog = iatGauges + gauge = IATGauge + gauge = rawIatGauge + + dialog = iatSensor, "IAT Sensor", border + panel = iat_thermistor, West + panel = iatGauges, East + + dialog = oilp_settings, "Oil Pressure Sensor" + field = "Oil Pressure input", oilPressure_hwChannel + field = "low voltage", oilPressure_v1, {oilPressure_hwChannel != 0} + field = "low pressure", oilPressure_value1, {oilPressure_hwChannel != 0} + field = "high voltage", oilPressure_v2, {oilPressure_hwChannel != 0} + field = "high pressure", oilPressure_value2, {oilPressure_hwChannel != 0} + + dialog = oilPressureGauges + gauge = OilPressGauge + gauge = rawOilPressureGauge + + dialog = oilPressureSensor, "", border + panel = oilp_settings, West + panel = oilPressureGauges, East + + dialog = fuelp_settings, "Fuel Pressure Sensor" + field = "Fuel low pressure input", lowPressureFuel_hwChannel + field = "low voltage", lowPressureFuel_v1, {lowPressureFuel_hwChannel != 0} + field = "low pressure", lowPressureFuel_value1, {lowPressureFuel_hwChannel != 0} + field = "high voltage", lowPressureFuel_v2, {lowPressureFuel_hwChannel != 0} + field = "high pressure", lowPressureFuel_value2, {lowPressureFuel_hwChannel != 0} + field = "sensor type", fuelPressureSensorMode, {lowPressureFuel_hwChannel != 0} + + field = "Fuel high pressure input", highPressureFuel_hwChannel + field = "low voltage", highPressureFuel_v1, {highPressureFuel_hwChannel != 0} + field = "low pressure", highPressureFuel_value1, {highPressureFuel_hwChannel != 0} + field = "high voltage", highPressureFuel_v2, {highPressureFuel_hwChannel != 0} + field = "high pressure", highPressureFuel_value2, {highPressureFuel_hwChannel != 0} + + dialog = fuelPressureGauges + gauge = lowFuelPressureGauge + gauge = rawLowFuelPressureGauge + gauge = highFuelPressureGauge + gauge = rawHighFuelPressureGauge + + dialog = fuelPressureSensor, "", border + panel = fuelp_settings, West + panel = fuelPressureGauges, East + + dialog = acPressureSensorSettings, "A/C Pressure Sensor" + field = "Input", acPressure_hwChannel + field = "Low voltage", acPressure_v1, {acPressure_hwChannel != 0} + field = "Low value", acPressure_value1, {acPressure_hwChannel != 0} + field = "High voltage", acPressure_v2, {acPressure_hwChannel != 0} + field = "High value", acPressure_value2, {acPressure_hwChannel != 0} + + dialog = acPressureGauges + gauge = acPressureGauge + gauge = rawAcPressureGauge + + dialog = acPressureSensor, "", border + panel = acPressureSensorSettings, West + panel = acPressureGauges, East + + dialog = auxLinearSensor1, "Aux Linear Sensor #1" + field = "Input", auxLinear1_hwChannel + field = "Low voltage", auxLinear1_v1, {auxLinear1_hwChannel != 0} + field = "Low value", auxLinear1_value1, {auxLinear1_hwChannel != 0} + field = "High voltage", auxLinear1_v2, {auxLinear1_hwChannel != 0} + field = "High value", auxLinear1_value2, {auxLinear1_hwChannel != 0} + + dialog = auxLinearSensor2, "Aux Linear Sensor #2" + field = "Input", auxLinear2_hwChannel + field = "Low voltage", auxLinear2_v1, {auxLinear2_hwChannel != 0} + field = "Low value", auxLinear2_value1, {auxLinear2_hwChannel != 0} + field = "High voltage", auxLinear2_v2, {auxLinear2_hwChannel != 0} + field = "High value", auxLinear2_value2, {auxLinear2_hwChannel != 0} + + dialog = auxLinearSensor3, "Aux Linear Sensor #3" + field = "ADC input", auxLinear3_hwChannel + field = "Low voltage", auxLinear3_v1, {auxLinear3_hwChannel != 0} + field = "Low value", auxLinear3_value1, {auxLinear3_hwChannel != 0} + field = "High voltage", auxLinear3_v2, {auxLinear3_hwChannel != 0} + field = "High value", auxLinear3_value2, {auxLinear3_hwChannel != 0} + + dialog = auxLinearSensor4, "Aux Linear Sensor #4" + field = "ADC input", auxLinear4_hwChannel + field = "Low voltage", auxLinear4_v1, {auxLinear4_hwChannel != 0} + field = "Low value", auxLinear4_value1, {auxLinear4_hwChannel != 0} + field = "High voltage", auxLinear4_v2, {auxLinear4_hwChannel != 0} + field = "High value", auxLinear4_value2, {auxLinear4_hwChannel != 0} + + dialog = auxLinearSensors + panel = auxLinearSensor1 + panel = auxLinearSensor2 + field = "Aux Speed Input 1", auxSpeedSensorInputPin1 + field = "Aux Speed Input 2", auxSpeedSensorInputPin2 + field = "Use Aux Speed Sensors for slip ratio", useAuxSpeedForSlipRatio + field = "Use VSS As Second Wheel Speed", useVssAsSecondWheelSpeed + +; Sensors->MAP sensor + dialog = mapSensorAnalog, "MAP sensor", yAxis + field = "MAP input", map_sensor_hwChannel + field = "MAP type", map_sensor_type, { map_sensor_hwChannel != 0 } + field = "MAP value low point", map_sensor_lowValue, { map_sensor_hwChannel != 0 && map_sensor_type == 0 } + field = "MAP voltage low point", mapLowValueVoltage, { map_sensor_hwChannel != 0 && map_sensor_type == 0 } + field = "MAP value high point", map_sensor_highValue, { map_sensor_hwChannel != 0 && map_sensor_type == 0 } + field = "MAP voltage high value", mapHighValueVoltage, { map_sensor_hwChannel != 0 && map_sensor_type == 0 } + + indicatorPanel = mapValidIndicators, 1 + indicator = {isMapValid}, "BAD Map Input", "Good MAP Input" + + dialog = mapCommon, "MAP common settings" + field = "Low value threshold", mapErrorDetectionTooLow + field = "High value threshold", mapErrorDetectionTooHigh + panel = mapValidIndicators + field = "" + field = "Measure Map Only In One Cylinder", measureMapOnlyInOneCylinder + field = "Cylinder count to sample MAP", mapMinBufferLength + field = mapExpAverageAlpha, mapExpAverageAlpha + + dialog = mapSettings, "", yAxis + panel = mapCommon + panel = mapSensorAnalog + + dialog = analogBaroSettings, "Analog Sensor" + field = "Baro input", baroSensor_hwChannel, { baroSensor_hwChannel != 0 || (lps25BaroSensorScl == 0 && lps25BaroSensorSda == 0) } + field = "Low Value", baroSensor_lowValue, {baroSensor_hwChannel != 0} + field = "High Value", baroSensor_highValue, {baroSensor_hwChannel != 0} + field = "Type", baroSensor_type, {baroSensor_hwChannel != 0} + + dialog = digitalBaroSettings, "Digital Sensor" + field = "LPS2x Baro SCL", lps25BaroSensorScl, { baroSensor_hwChannel == 0} + field = "LPS2x Baro SDA", lps25BaroSensorSda, { baroSensor_hwChannel == 0} + + dialog = baroSettings, "Baro sensor" + panel = analogBaroSettings + panel = digitalBaroSettings + + dialog = mapCurves, "MAP sampling", yAxis + field = "isMapAveragingEnabled", isMapAveragingEnabled + panel = map_samplingAngleCurve + panel = map_samplingWindowCurve + + dialog = mafSettings, "MAF sensor", yAxis + field = "MAF ADC input", mafAdcChannel + field = "MAF 2 ADC input", maf2AdcChannel + +; Sensors->EGO sensor + dialog = egoSettings_sensor, "O2 sensor" + settingSelector = "O2 Type" + settingOption = "BPSX", afr_v1=0,afr_value1=9,afr_v2=5,afr_value2=19 + settingOption = "Innovate", afr_v1=0,afr_value1=7.35,afr_v2=5,afr_value2=22.39 + settingOption = "14Point7", afr_v1=0,afr_value1=9.996,afr_v2=5,afr_value2=19.992 + settingOption = "PLX", afr_v1=0,afr_value1=10,afr_v2=5,afr_value2=20 + settingOption = "Narrow Band", afr_v1=0.1,afr_value1=15,afr_v2=0.9,afr_value2=14 + settingOption = "AEM", afr_v1=0.5,afr_value1=8.5,afr_v2=4.5,afr_value2=18 + + field = "Type", afr_type +; todo: only use these values for custom! + field = "low voltage", afr_v1 + field = "low value", afr_value1 + field = "high voltage", afr_v2 + field = "high value", afr_value2 + field = "Correction", egoValueShift + + dialog = egoSettings_IO1, "O2 Sensor 1 I/O" + field = "Input channel", afr_hwChannel,{afr_hwChannel != 0 || enableAemXSeries == 0 } + field = "Narrowband Heater output", o2heaterPin, { o2heaterPin != 0 || enableAemXSeries == 0 } + + dialog = egoSettings_IO2, "O2 Sensor 2 I/O" + field = "Input channel", afr_hwChannel2 + + indicatorPanel = uegoCan0Indicators, 1, { enableAemXSeries == 1 && (faultCode0 == 7 || faultCode0 == 8) } + indicator = { faultCode0 == 7 }, "RusEFI WBO", "AEM Gauge", green, black, yellow, black + indicator = { faultCode0 == 8 }, "AEM OK", "AEM ERROR", green, black, yellow, black + + indicatorPanel = uegoCan1Indicators, 1, { enableAemXSeries == 1 && (faultCode0 == 7 || faultCode0 == 8) } + indicator = { faultCode1 == 7 }, "RusEFI WBO", "AEM Gauge", green, black, yellow, black + + indicatorPanel = uegoCan0IndicatorsExt, 1, { enableAemXSeries == 1 && faultCode0 != 7 && faultCode0 != 8 } + indicator = { faultCode0 == 0 || faultCode0 == 7 }, "Failed", "Ready/Ok", red, black, green, black + indicator = { faultCode0 == 2 }, "Heating allowed", "Heating prohibited", green, black, yellow, black + indicator = { faultCode0 == 1 }, "Communication ok", "Timeout reading", green, black, red, black + indicator = { faultCode0 == 3 }, "No heating failure", "Heating failed", green, black, red, black + indicator = { faultCode0 == 4 }, "No overheat", "Overheat", green, black, red, black + indicator = { faultCode0 == 5 }, "No underheat", "Underheat", green, black, red, black + indicator = { faultCode0 == 6 }, "Heater supply ok", "No heater supply", green, black, yellow, black + + indicatorPanel = uegoCan1IndicatorsExt, 1, { enableAemXSeries == 1 && faultCode1 != 7 && faultCode0 != 8 } + indicator = { faultCode1 == 0 || faultCode1 == 7 }, "Failed", "Ready/Ok", red, black, green, black + indicator = { faultCode1 == 2 }, "Heating allowed", "Heating prohibited", green, black, yellow, black + indicator = { faultCode1 == 1 }, "Communication ok", "Timeout reading", green, black, red, black + indicator = { faultCode1 == 3 }, "No heating failure", "Heating failed", green, black, red, black + indicator = { faultCode1 == 4 }, "No overheat", "Overheat", green, black, red, black + indicator = { faultCode1 == 5 }, "No underheat", "Underheat", green, black, red, black + indicator = { faultCode1 == 6 }, "Heater supply ok", "No heater supply", green, black, yellow, black + + dialog = uegoCanStatus, "CAN UEGO 1, 2 Status", border + panel = uegoCan0Indicators, West + panel = uegoCan1Indicators, East + + dialog = uegoCanStatusExt, "CAN UEGO 1, 2 Extended Status", border + panel = uegoCan0IndicatorsExt, West + panel = uegoCan1IndicatorsExt, East + + dialog = uegoCan, "CAN UEGO/wideband O2" + field = "Support for AEM or RusEFI CAN UEGO" + field = "Enable CAN Wideband", enableAemXSeries, { canReadEnabled } + field = "Wideband CAN bus", widebandOnSecondBus + field = "Swap channels 1 and 2", flipWboChannels, flipWboChannels + field = "Force O2 sensor heating", forceO2Heating + field = "Suppress on-board WBO", suppressWboWorkaround7048 + + dialog = egoSettings, "", yAxis + panel = uegoCan + panel = uegoCanStatus, { enableAemXSeries == 1 } + panel = uegoCanStatusExt, { enableAemXSeries == 1 } + panel = egoSettings_IO1 + panel = egoSettings_IO2, {afr_hwChannel != 0 && enableAemXSeries == 0} + panel = egoSettings_sensor, {afr_hwChannel != 0 && enableAemXSeries == 0} + +; Engine->EGT inputs + dialog = egtInputsCan, "CAN EGT sensors" + field = "CAN support EGT1 to EGT6 inputs" + field = "CAN EGT (AEM X series of RusEFI)", enableAemXSeriesEgt, { canReadEnabled } + + dialog = egtInputsSpi, "SPI EGT sensors" + field = "If both CAN and SPI EGT sensors are used, please leave two first for CAN" + field = "MAX31855/MAX31856 SPI", max31855spiDevice + field = "CS for EGT1", max31855_cs1 + field = "CS for EGT2", max31855_cs2 + field = "CS for EGT3", max31855_cs3 + field = "CS for EGT4", max31855_cs4 + field = "CS for EGT5", max31855_cs5 + field = "CS for EGT6", max31855_cs6 + field = "CS for EGT7", max31855_cs7 + field = "CS for EGT8", max31855_cs8 + + dialog = egtInputs, "EGT inputs" + panel = egtInputsCan + panel = egtInputsSpi + +; Engine->idle Settings + dialog = idleSolenoid, "Solenoid" + field = "Idle Solenoid Primary output", idle_solenoidPin, { idle_solenoidPin != 0 || !useStepperIdle } + field = "Double Solenoid Mode", isDoubleSolenoidIdle + field = "Idle Solenoid Secondary output", secondSolenoidPin, { idle_solenoidPin != 0 || (!useStepperIdle && isDoubleSolenoidIdle ) } + field = "Idle Solenoid output(s) Mode", idle_solenoidPinMode, !useStepperIdle + field = "Idle Solenoid Frequency", idle_solenoidFrequency, !useStepperIdle + + dialog = etbHbridgeHardwareNo1, "H-Bridge Hardware No1" + field = "No1 Direction #1", etbIo1_directionPin1 + field = "No1 Direction #2", etbIo1_directionPin2 + field = "No1 Control", etbIo1_controlPin + field = "No1 Disable", etbIo1_disablePin + + dialog = etbHbridgeHardwareNo2, "H-Bridge Hardware No2" + field = "No2 Direction #1", etbIo2_directionPin1 + field = "No2 Direction #2", etbIo2_directionPin2 + field = "No2 Control", etbIo2_controlPin + field = "No2 Disable", etbIo2_disablePin + + dialog = etbHbridgeHardware, "ETB H-Bridge Hardware" + field = "Two-wire mode", etb_use_two_wires + panel = etbHbridgeHardwareNo1 + panel = etbHbridgeHardwareNo2 + + dialog = stepperHbridgeHardwareNo1, "H-Bridge Hardware No1" + field = "No1 Direction #1", stepperDcIo1_directionPin1 + field = "No1 Direction #2", stepperDcIo1_directionPin2 + field = "No1 Control", stepperDcIo1_controlPin + field = "No1 Disable", stepperDcIo1_disablePin + + dialog = stepperHbridgeHardwareNo2, "H-Bridge Hardware No2" + field = "No2 Direction #1", stepperDcIo2_directionPin1 + field = "No2 Direction #2", stepperDcIo2_directionPin2 + field = "No2 Control", stepperDcIo2_controlPin + field = "No2 Disable", stepperDcIo2_disablePin + + dialog = stepperHbridgeHardware, "Stepper H-Bridge Hardware" + topicHelp = "stepperHbridgeHardwareHelp" + field = "Inverted driver pins", stepperDcInvertedPins + panel = stepperHbridgeHardwareNo1, { etbFunctions1 == 0 } + panel = stepperHbridgeHardwareNo2, { etbFunctions2 == 0 } + + dialog = idleStepperHw, "Stepper Controller Hardware" + topicHelp = "idleStepperHwHelp" + field = "Idle Stepper Step Pin", idle_stepperStepPin + field = "Idle Stepper Dir Pin", idle_stepperDirectionPin + field = "Idle Stepper Dir Pin Mode", stepperDirectionPinMode + field = "Idle Stepper Enable Pin", stepperEnablePin + field = "Idle Stepper Enable Pin Mode", stepperEnablePinMode + + dialog = stepperDirectDriveHardware, "Stepper Direct-Drive Hardware" + topicHelp = "stepperDirectDriveHardwareHelp" + field = "Stepper A+", stepper_raw_output1 + field = "Stepper A-", stepper_raw_output2 + field = "Stepper B+", stepper_raw_output3 + field = "Stepper B-", stepper_raw_output4 + + dialog = idleStepperHwType, "" + panel = idleStepperHw, { useStepperIdle && !useHbridgesToDriveIdleStepper && !useRawOutputToDriveIdleStepper } + panel = stepperHbridgeHardware, { useStepperIdle && useHbridgesToDriveIdleStepper && !useRawOutputToDriveIdleStepper } + panel = stepperDirectDriveHardware, { useStepperIdle && !useHbridgesToDriveIdleStepper && useRawOutputToDriveIdleStepper } + + dialog = idleStepperGeneral, "" + field = "Drive stepper with dual H bridges", useHbridgesToDriveIdleStepper, useStepperIdle + field = "Drive stepper with PushPull outputs", useRawOutputToDriveIdleStepper, { useStepperIdle && !useHbridgesToDriveIdleStepper } + field = "Stepper reaction time", idleStepperReactionTime, useStepperIdle + field = "Stepper total steps", idleStepperTotalSteps, useStepperIdle + field = "Stepper parking extra steps, %", stepperParkingExtraSteps, useStepperIdle + field = "Force parking every restart", stepperForceParkingEveryRestart, useStepperIdle + + dialog = idleStepperMicro, "Micro-Stepping" + field = "Stepping Mode", stepperNumMicroSteps, useHbridgesToDriveIdleStepper + field = "Min. Duty Cycle", stepperMinDutyCycle, { useHbridgesToDriveIdleStepper && stepperNumMicroSteps > 1 } + field = "Max. Duty Cycle", stepperMaxDutyCycle, { useHbridgesToDriveIdleStepper && stepperNumMicroSteps > 1 } + + dialog = idleStepper, "Stepper" + panel = idleStepperGeneral + panel = idleStepperHwType + panel = idleStepperMicro + + dialog = idleHwType, "Idle Valve Hardware", yAxis + panel = idleSolenoid + panel = idleStepper + + dialog = idlehw, "", yAxis + field = "!ECU reboot needed to apply these settings" + field = "Use Stepper", useStepperIdle + field = "Electronic throttle idle range", etbIdleThrottleRange + panel = idleHwType + + dialog = idlePidSettings, "Closed Loop Idle" + field = "P-factor", idleRpmPid_pFactor + field = "I-factor", idleRpmPid_iFactor + field = "derivativeFilterLoss", idle_derivativeFilterLoss + field = "antiwindupFreq", idle_antiwindupFreq + field = "D-factor", idleRpmPid_dFactor + field = "Min", idleRpmPid_minValue + field = "Max", idleRpmPid_maxValue + field = "iTerm Min", idlerpmpid_iTermMin + field = "iTerm Max", idlerpmpid_iTermMax + field = "PID Extra for low RPM", pidExtraForLowRpm + field = idleIncrementalPidCic, idleIncrementalPidCic + field = "use Cic Pid", useCicPidForIdle + field = "Use IAC PID Multiplier Table", useIacPidMultTable + + dialog = idleOpenLoop, "Open Loop Idle" + slider = "Open loop base position", manIdlePosition, horizontal + field = "A/C adder", acIdleExtraOffset + field = "A/C RPM target", acIdleRpmTarget + field = "Fan #1 adder", fan1ExtraIdle + field = "Fan #2 adder", fan2ExtraIdle + field = "Dashpot/Taper Initial IAC Adder", iacByTpsTaper + + dialog = idleGating, "Idle Detection Thresholds" + field = "TPS threshold", idlePidDeactivationTpsThreshold + field = "RPM upper limit", idlePidRpmUpperLimit + field = "RPM deadzone", idlePidRpmDeadZone + field = "Max vehicle speed", maxIdleVss + + dialog = idleExtra, "Extra Idle Features" + field = "Use idle ignition table", useSeparateAdvanceForIdle + field = "Use idle VE table", useSeparateVeForIdle + field = "Override Idle VE table load axis", idleVeOverrideMode, { useSeparateVeForIdle == 1 } + field = "Use idle tables for cranking taper", useSeparateIdleTablesForCrankingTaper + field = "Use coasting idle table", useIacTableForCoasting + field = "Dashpot coasting-to-idle Hold time", iacByTpsHoldTime + field = "Dashpot coasting-to-idle Decay time", iacByTpsDecayTime + + dialog = idleSettings, "", yAxis + field = "Idle control mode", idleMode + + field = "! Solenoid idle control is disabled at zero RPM" + +; gating applies both to open loop and closed loop! + panel = idleGating +; closed loop mode is an addition on top of open loop, so idleOpenLoop stays open even when closed loop is selected + panel = idleOpenLoop + panel = idlePidSettings, { idleMode == 0 } + panel = idleExtra + + dialog = idleTimingPidCorrDialog, "", yAxis + field = "" + field = "Enable closed loop idle ignition timing", useIdleTimingPidControl + field = "" + field = "#Gain is in degrees advance per rpm away from target" + field = "#A good starting point is 0.1 = 10 deg per 100 rpm" + field = "Proportional gain", idleTimingPid_pFactor, {useIdleTimingPidControl == 1} + field = "Integral gain", idleTimingPid_iFactor, {useIdleTimingPidControl == 1} + field = "Derivative gain", idleTimingPid_dFactor, {useIdleTimingPidControl == 1} + field = "" + field = "Min adjustment (retard)", idleTimingPid_minValue, {useIdleTimingPidControl == 1} + field = "Max adjustment (advance)", idleTimingPid_maxValue, {useIdleTimingPidControl == 1} + field = "" + field = "Soft entry time", idleTimingSoftEntryTime, {useIdleTimingPidControl == 1} + field = "" + field = "#Use debug mode 'Timing' to view idle timing adjustment" + +; Engine->Fan Settings + dialog = fan1Settings, "Fan 1" + field = "Output", fanPin, 1, { uiMode == 0 || uiMode == 1 } + field = "Output mode", fanPinMode, { uiMode == 0 || uiMode == 1 } + field = "On temperature", fanOnTemperature + field = "Off temperature", fanOffTemperature + field = "Enable with AC", enableFan1WithAc + field = "Disable when engine stopped", disableFan1WhenStopped + field = "Disable above vehicle speed", disableFan1AtSpeed + field = "Idle adder", fan1ExtraIdle + + dialog = fan2Settings, "Fan 2" + field = "Output", fan2Pin + field = "Output mode", fan2PinMode + field = "On temperature", fan2OnTemperature + field = "Off temperature", fan2OffTemperature + field = "Enable with AC", enableFan2WithAc + field = "Disable when engine stopped", disableFan2WhenStopped + field = "Disable above vehicle speed", disableFan2AtSpeed + field = "Idle adder", fan2ExtraIdle + + dialog = fanTest, "", xAxis + commandButton = "Test Fan 1", cmd_test_fan_1 + commandButton = "Test Fan 2", cmd_test_fan_2 + + indicatorPanel = fanIndicators, 2 + indicator = { isFanOn }, "fan 1 off", "fan 1 on", white, black, green, black + indicator = { isFan2On }, "fan 2 off", "fan 2 on", white, black, green, black + + dialog = acSettingsWest, "A/C Settings" + field = "A/C switch", acSwitch + field = "A/C switch mode", acSwitchMode + field = "A/C Relay", acRelayPin + field = "A/C Relay Mode", acRelayPinMode + field = "A/C compressor delay", acDelay + field = "Max RPM", maxAcRpm + field = "Max CLT", maxAcClt + field = "Max TPS", maxAcTps + field = "A/C Idle adder", acIdleExtraOffset + field = "A/C Idle RPM", acIdleRpmTarget + field = "RPM low threshold", acLowRpmLimit + field = "Pressure Low disable", minAcPressure + field = "Pressure High disable", maxAcPressure + field = "A/C Pressure Enable Hysteresis", acPressureEnableHyst + + dialog = acSettings, "", border + panel = acSettingsWest, West + panel = ac_controlIndicatorPanel, East + + dialog = fanSetting, "Fan Settings" + panel = fan1Settings + panel = fan2Settings + panel = fanTest + panel = fanIndicators + + dialog = fuelPumpDialog, "Fuel Pump" + field = "Output", fuelPumpPin + field = "Output mode", fuelPumpPinMode + field = "Prime duration", startUpFuelPumpDuration + commandButton = "Test Fuel Pump", cmd_test_fuel_pump + +; Controller->Actuator Outputs + dialog = mainRelayDialog, "Main relay output" + field = "Output", mainRelayPin + field = "Output mode", mainRelayPinMode + commandButton = "Test Main Relay", cmd_test_main_relay + + dialog = starterRelayDialog, "Starter Disable" + field = "Output", starterRelayDisablePin + field = "Output mode", starterRelayDisablePinMode + commandButton = "Test Starter Disable", cmd_test_starter_disable_relay + + dialog = startStopDialog, "Starter Control" + field = "Require Foot On Brake To Crank", requireFootOnBrakeToCrank + field = "Start/Stop Button input", startStopButtonPin + field = "Start/Stop Button input mode", startStopButtonMode + field = "Start Button", startRequestPinInverted + field = "Starter Control", starterControlPin + field = "Start cranking maximum time", startCrankingDuration, {startStopButtonPin != 0} + field = "Suppress On Start Up (Ms)", startButtonSuppressOnStartUpMs, {startStopButtonPin != 0} + commandButton = "Test Starter Relay", cmd_test_starter_relay + +; Engine->MIL Settings + dialog = malfunctionDialog, "Check Engine Settings" + field = "Output", malfunctionIndicatorPin + field = "Output mode", malfunctionIndicatorPinMode + field = "Warning Period", warningPeriod + commandButton = "Test Check Engine", cmd_test_check_engine_light + + dialog = tachSettings, "Tachometer output" + field = "Output", tachOutputPin + field = "Output mode", tachOutputPinMode + field = "Pulse Mode", tachPulseDurationAsDutyCycle + field = "Pulse duration", tachPulseDuractionMs + field = "Pulse per Rev", tachPulsePerRev + + dialog = speedoSettings, "Speedometer output" + field = "Output", speedometerOutputPin + field = "Pulse per km", speedometerPulsePerKm, { speedometerOutputPin } + + dialog = outputsDialogLeft + panel = mainRelayDialog + panel = fuelPumpDialog + panel = tachSettings + + dialog = outputsDialogRight + panel = startStopDialog + panel = starterRelayDialog + panel = speedoSettings + panel = malfunctionDialog + + dialog = outputsDialog, "Outputs", border + panel = outputsDialogLeft, West + panel = fanSetting, Center + panel = outputsDialogRight, East + + dialog = statusLeds, "Status LEDs" + field = "Trigger error LED", triggerErrorPin + field = "Debug Trigger Sync", debugTriggerSync + + dialog = softwareKnockCfg, "Sense" + field = "Enable", enableSoftwareKnock + field = "Cylinder Bore", cylinderBore, {enableSoftwareKnock} + field = "Estimated Knock Frequency",knockFrequency, {enableSoftwareKnock} + field = "Detection mode", knockDetectionUseDoubleFrequency + field = "Detection Window Start",knockDetectionWindowStart, {enableSoftwareKnock} + field = "Sampling Duration", knockSamplingDuration, {enableSoftwareKnock} + field = "Enable Knock Spectrogram", enableKnockSpectrogram, {enableSoftwareKnock} + field = "Enable Knock Spectrogram Filter", enableKnockSpectrogramFilter, {enableKnockSpectrogram} + field = "Knock Spectrum Sensitivity", knockSpectrumSensitivity, {enableKnockSpectrogram} + + field = "" + field = "Select the nearest sensor for each cylinder" + field = "Cylinder 1", knockBankCyl1, {enableSoftwareKnock} + field = "Cylinder 2", knockBankCyl2, {enableSoftwareKnock && cylindersCount >= 2} + field = "Cylinder 3", knockBankCyl3, {enableSoftwareKnock && cylindersCount >= 3} + field = "Cylinder 4", knockBankCyl4, {enableSoftwareKnock && cylindersCount >= 4} + field = "Cylinder 5", knockBankCyl5, {enableSoftwareKnock && cylindersCount >= 5} + field = "Cylinder 6", knockBankCyl6, {enableSoftwareKnock && cylindersCount >= 6} + field = "Cylinder 7", knockBankCyl7, {enableSoftwareKnock && cylindersCount >= 7} + field = "Cylinder 8", knockBankCyl8, {enableSoftwareKnock && cylindersCount >= 8} + field = "Cylinder 9", knockBankCyl9, {enableSoftwareKnock && cylindersCount >= 9} + field = "Cylinder 10", knockBankCyl10, {enableSoftwareKnock && cylindersCount >= 10} + field = "Cylinder 11", knockBankCyl11, {enableSoftwareKnock && cylindersCount >= 11} + field = "Cylinder 12", knockBankCyl12, {enableSoftwareKnock && cylindersCount >= 12} + + dialog = softwareKnockResponseCfg, "Response" + field = knockRetardAggression, knockRetardAggression + field = knockRetardReapplyRate, knockRetardReapplyRate + field = knockFuelTrimAggression, knockFuelTrimAggression + field = knockFuelTrimReapplyRate, knockFuelTrimReapplyRate + field = knockFuelTrim, knockFuelTrim + field = knockSuppressMinTps, knockSuppressMinTps + + dialog = softwareKnockLeft, "" + panel = softwareKnockCfg + panel = softwareKnockResponseCfg + + dialog = softwareKnock, "Software Knock", border + panel = softwareKnockLeft, West + panel = knockThresholdCurve, Center + +; Engine->hip9011 Settings + dialog = hipHardware + field = "SPI device", hip9011SpiDevice, {isHip9011Enabled == 1} + field = "ChipSelect pin", hip9011CsPin, {isHip9011Enabled == 1} + field = "ChipSelect mode", hip9011CsPinMode, {isHip9011Enabled == 1} + field = "IntHold pin ", hip9011IntHoldPin, {isHip9011Enabled == 1} + field = "IntHold pin mode", hip9011IntHoldPinMode, {isHip9011Enabled == 1} + field = "hip Output/stm input", hipOutputChannel, {isHip9011Enabled == 1} + + dialog = hipSettings + field = "prescaler & SDO", hip9011PrescalerAndSDO, {isHip9011Enabled == 1} + field = "knockDetectionWindowStart", knockDetectionWindowStart, {isHip9011Enabled == 1} + field = "knockDetectionWindowEnd", knockDetectionWindowEnd, {isHip9011Enabled == 1} + field = "Cylinder bore", cylinderBore, {isHip9011Enabled == 1} + + dialog = hipCurve, "Knock threshold" + panel = knockThresholdCurve + + dialog = hipFunction, "HIP9011 Settings (knock decoder)" + field = "!ECU reboot needed to apply these settings" + field = "Enabled", isHip9011Enabled + panel = hipHardware + panel = hipSettings + panel = hipCurve + + dialog = spiBus1, "SPI1 settings" + field = "Enable", is_enabled_spi_1 + field = "MOSI", spi1mosiPin, {1}, {is_enabled_spi_1 == 1} + field = "MOSI mode", spi1MosiMode, {1}, {is_enabled_spi_1 == 1} + field = "MISO", spi1misoPin, {1}, {is_enabled_spi_1 == 1} + field = "MISO mode", spi1MisoMode, {1}, {is_enabled_spi_1 == 1} + field = "SCK", spi1sckPin, {1}, {is_enabled_spi_1 == 1} + field = "SCK mode", spi1SckMode, {1}, {is_enabled_spi_1 == 1} + + dialog = spiBus2, "SPI2 settings" + field = "Enable", is_enabled_spi_2 + field = "MOSI", spi2mosiPin, {1}, {is_enabled_spi_2 == 1} + field = "MOSI mode", spi2MosiMode, {1}, {is_enabled_spi_2 == 1} + field = "MISO", spi2misoPin, {1}, {is_enabled_spi_2 == 1} + field = "MISO mode", spi2MisoMode, {1}, {is_enabled_spi_2 == 1} + field = "SCK", spi2sckPin, {1}, {is_enabled_spi_2 == 1} + field = "SCK mode", spi2SckMode, {1}, {is_enabled_spi_2 == 1} + + dialog = spiBus3, "SPI3 settings" + field = "MOSI", spi3mosiPin, {1}, {is_enabled_spi_3 == 1} + field = "MOSI mode", spi3MosiMode, {1}, {is_enabled_spi_3 == 1} + field = "MISO", spi3misoPin, {1}, {is_enabled_spi_3 == 1} + field = "MISO mode", spi3MisoMode, {1}, {is_enabled_spi_3 == 1} + field = "SCK", spi3sckPin, {1}, {is_enabled_spi_3 == 1} + field = "SCK mode", spi3SckMode, {1}, {is_enabled_spi_3 == 1} + + dialog = spiBus4, "SPI4 settings" + field = "Enable", is_enabled_spi_4 + + dialog = spiBus5, "SPI5 settings" + field = "Enable", is_enabled_spi_5 + + dialog = spiBus6, "SPI6 settings" + field = "Enable", is_enabled_spi_6 + + dialog = spiBuses, "SPI buses settings" + field = "!ECU reboot needed to apply these settings" + panel = spiBus1 + panel = spiBus2 + panel = spiBus4 + panel = spiBus5 + panel = spiBus6 + + dialog = spiDevices, "SPI devices settings" + field = "Use SPI accelerometer", useSpiImu + + dialog = stftPartitioning, "Region Configuration" + field = "Idle region RPM", stft_maxIdleRegionRpm + field = "Overrun region load", stft_maxOverrunLoad + field = "Power region load", stft_minPowerLoad + + dialog = stftPartitionSettingsMain, "Main Region", xAxis + field = "Time const", stft_cellCfgs4_timeConstant + field = "Max add", stft_cellCfgs4_maxAdd + field = "Max remove", stft_cellCfgs4_maxRemove + + dialog = stftPartitionSettingsIdle, "Idle Region", xAxis + field = "Time const", stft_cellCfgs1_timeConstant + field = "Max add", stft_cellCfgs1_maxAdd + field = "Max remove", stft_cellCfgs1_maxRemove + + dialog = stftPartitionSettingsPower, "Power Region", xAxis + field = "Time const", stft_cellCfgs3_timeConstant + field = "Max add", stft_cellCfgs3_maxAdd + field = "Max remove", stft_cellCfgs3_maxRemove + + dialog = stftPartitionSettingsOverrun, "Overrun Region", xAxis + field = "Time const", stft_cellCfgs2_timeConstant + field = "Max add", stft_cellCfgs2_maxAdd + field = "Max remove", stft_cellCfgs2_maxRemove + + dialog = fuelClosedLoopDialog, "Closed loop fuel correction" + field = "Enabled", fuelClosedLoopCorrectionEnabled + + field = "Startup delay" stft_startupDelay, {fuelClosedLoopCorrectionEnabled == 1} + field = "Minimum CLT for correction", stft_minClt, {fuelClosedLoopCorrectionEnabled == 1} + field = "Minimum AFR for correction", stft_minAfr, {fuelClosedLoopCorrectionEnabled == 1} + field = "Maximum AFR for correction", stft_maxAfr, {fuelClosedLoopCorrectionEnabled == 1} + field = "Adjustment deadband", stft_deadband, {fuelClosedLoopCorrectionEnabled == 1} + field = "Ignore error magnitude", stftIgnoreErrorMagnitude, {fuelClosedLoopCorrectionEnabled == 1} + + panel = stftPartitioning, {fuelClosedLoopCorrectionEnabled == 1} + panel = stftPartitionSettingsMain, {fuelClosedLoopCorrectionEnabled == 1} + panel = stftPartitionSettingsIdle, {fuelClosedLoopCorrectionEnabled == 1} + panel = stftPartitionSettingsPower, {fuelClosedLoopCorrectionEnabled == 1} + panel = stftPartitionSettingsOverrun, {fuelClosedLoopCorrectionEnabled == 1} + + dialog = lambdaProtectionLeft, "" + field = "Enable lambda protection", lambdaProtectionEnable + field = "Check above load", lambdaProtectionMinLoad, { lambdaProtectionEnable } + field = "and above TPS", lambdaProtectionMinTps, { lambdaProtectionEnable } + field = "and above RPM", lambdaProtectionMinRpm, { lambdaProtectionEnable } + field = "and after delay", lambdaProtectionTimeout { lambdaProtectionEnable } + field = "Then cut fuel until:" + field = "Load less than", lambdaProtectionRestoreLoad, { lambdaProtectionEnable } + field = "and TPS less than", lambdaProtectionRestoreTps, { lambdaProtectionEnable } + field = "and RPM less than", lambdaProtectionRestoreRpm, { lambdaProtectionEnable } + + dialog = lambdaProtectionRight, "Lambda Difference Table" + panel = lambdaMaxDeviationTableTbl + + dialog = lambdaProtection, "Lambda Protection", border + panel = lambdaProtectionLeft, West + panel = lambdaProtectionRight, East + + dialog = vvtPidDialog0, "Configuration" + field = "Activation Delay", vvtActivationDelayMs + field = "Do not control below RPM", vvtControlMinRpm + field = "VVT solenoid bank 1 intake", vvtPins1 + field = "VVT solenoid bank 1 exhaust", vvtPins2 + field = "VVT solenoid bank 2 intake", vvtPins3 + field = "VVT solenoid bank 2 exhaust", vvtPins4 + field = "VVT solenoid intake cams control direction", invertVvtControlIntake, { vvtPins1 != 0 || vvtPins3 != 0 } + field = "VVT solenoid exhaust cams control direction", invertVvtControlExhaust, { vvtPins2 != 0 || vvtPins4 != 0 } + + dialog = vvtPidDialog1, "Intake PID" + field = "offset", auxPid1_offset, {vvtPins1 != 0} + field = "P factor", auxPid1_pFactor, {vvtPins1 != 0} + field = "I factor", auxPid1_iFactor, {vvtPins1 != 0} + field = "D factor", auxPid1_dFactor, {vvtPins1 != 0} + field = "Min", auxPid1_minValue, {vvtPins1 != 0} + field = "Max", auxPid1_maxValue, {vvtPins1 != 0} + commandButton = "Bench bank 1", cmd_test_vvt0_valve, { engineTurnedRecently == 0 } + commandButton = "Bench bank 2", cmd_test_vvt2_valve, { engineTurnedRecently == 0 } + + dialog = vvtPidDialog2, "Exhaust PID" + field = "offset", auxPid2_offset, {vvtPins2 != 0} + field = "P factor", auxPid2_pFactor, {vvtPins2 != 0} + field = "I factor", auxPid2_iFactor, {vvtPins2 != 0} + field = "D factor", auxPid2_dFactor, {vvtPins2 != 0} + field = "Min", auxPid2_minValue, {vvtPins2 != 0} + field = "Max", auxPid2_maxValue, {vvtPins2 != 0} + commandButton = "Bench bank 1", cmd_test_vvt1_valve, { engineTurnedRecently == 0 } + commandButton = "Bench bank 2", cmd_test_vvt3_valve, { engineTurnedRecently == 0 } + + dialog = vvtPidDialog, "VVT Configuration & PID", border + panel = vvtPidDialog0, West + panel = vvtPidDialog1, Center + panel = vvtPidDialog2, East + +; Engine->Battery & Alternator + dialog = batteryDialog, "Battery Settings", yAxis + field = "vBatt ADC input", vbattAdcChannel + field = "Battery Input Divider Coefficient", vbattDividerCoeff + dialog = alternator, "Alternator Settings", yAxis + field = "Enabled", isAlternatorControlEnabled + field = "Control output", alternatorControlPin, {isAlternatorControlEnabled == 1} + field = "Control output mode", alternatorControlPinMode, {isAlternatorControlEnabled == 1} + field = "PWM frequency", alternatorPwmFrequency, {isAlternatorControlEnabled == 1} + field = "A/C duty adder", acRelayAlternatorDutyAdder, {isAlternatorControlEnabled == 1} + field = "#PID control" + field = "offset", alternatorControl_offset, {isAlternatorControlEnabled == 1} + field = "P factor", alternatorControl_pFactor, {isAlternatorControlEnabled == 1} + field = "I factor", alternatorControl_iFactor, {isAlternatorControlEnabled == 1} + field = "D factor", alternatorControl_dFactor, {isAlternatorControlEnabled == 1} + field = "iTerm min", alternator_iTermMin, {isAlternatorControlEnabled == 1} + field = "iTerm max", alternator_iTermMax, {isAlternatorControlEnabled == 1} + field = "Min", alternatorControl_minValue, {isAlternatorControlEnabled == 1} + field = "Max", alternatorControl_maxValue, {isAlternatorControlEnabled == 1} + field = "#% duty = Pterm + Iterm + Dterm + offset%" + + dialog = alternatorSettings, "Alternator Settings", border + panel = alternator, West + panel = alternatorVoltageTargetTableTbl, East + + dialog = energySystems, "Battery and Alternator Settings", yAxis + panel = batteryDialog + panel = alternatorSettings + + dialog = speedSensorAnalog, "Speed sensor" + field = "Input", vehicleSpeedSensorInputPin + field = "Filter parameter", vssFilterReciprocal, { vehicleSpeedSensorInputPin != 0 } + +; +; We prefer quantities that users can actually measure or inspect without math, so we have +; two separate natural settings here without one 'sensor tooth to wheel revolution' ratio +; + field = "Wheel revolutions per kilometer", driveWheelRevPerKm + field = "Speed sensor gear ratio", vssGearRatio, { vehicleSpeedSensorInputPin != 0 } + field = "Speed sensor tooth count", vssToothCount, { vehicleSpeedSensorInputPin != 0 } + + dialog = speedSensorCan, "CAN Vehicle Speed" + field = "Enable CAN VSS", enableCanVss, { canReadEnabled } + field = "CAN VSS type", canVssNbcType, { enableCanVss } + field = "CAN VSS scaling", canVssScaling, { canReadEnabled } + + dialog = speedSensorLeft, "", yAxis + panel = speedSensorAnalog, { enableCanVss == 0 } + panel = speedSensorCan + + dialog = gearDetection, "Gear Detection" + field = "Wheel revolutions per kilometer", driveWheelRevPerKm + field = "Final drive ratio", finalGearRatio + field = "" + field = "Forward gear count", totalGearsCount + field = "" + field = "1st gear", gearRatio1, { totalGearsCount >= 1 } + field = "2nd gear", gearRatio2, { totalGearsCount >= 2 } + field = "3rd gear", gearRatio3, { totalGearsCount >= 3 } + field = "4th gear", gearRatio4, { totalGearsCount >= 4 } + field = "5th gear", gearRatio5, { totalGearsCount >= 5 } + field = "6th gear", gearRatio6, { totalGearsCount >= 6 } + field = "7th gear", gearRatio7, { totalGearsCount >= 7 } + field = "8th gear", gearRatio8, { totalGearsCount >= 8 } + + dialog = speedSensor, "Speed sensor", xAxis + panel = speedSensorLeft + gauge = VSSGauge + panel = gearDetection + +; Engine->Other inputs + dialog = analogInputSettings, "Analog Input Settings" + field = "!ECU reboot needed to apply these settings" + field = "ADC vRef voltage", adcVcc + field = "Grab baro value from MAP", useFixedBaroCorrFromMap + field = "Analog divider ratio", analogInputDividerCoefficient + + +; Board->Connection + dialog = tsPort, "Calibration Secondary Serial" + field = "tunerStudioSerialSpeed", tunerStudioSerialSpeed + field = "TX pin", binarySerialTxPin + field = "RX pin", binarySerialRxPin + + dialog = canHw1, "Primary CAN" + field = "Verbose Can", verboseCan + field = "Bitrate", canBaudRate + field = "RX pin", canRxPin + field = "TX pin", canTxPin + field = "Allow OpenBLT", canOpenBLT + + dialog = canHw2, "Secondary CAN" + field = "Verbose Can2", verboseCan2 + field = "Bitrate", can2BaudRate + field = "RX pin", can2RxPin + field = "TX pin", can2TxPin + field = "Allow OpenBLT", can2OpenBLT + + dialog = canBus, "CAN Bus" + field = "CAN dash type", canNbcType + field = "Inertia Measurement Unit", imuType + field = "CAN read enabled", canReadEnabled + field = "CAN write enabled", canWriteEnabled + field = "Enable rusEFI CAN broadcast", enableVerboseCanTx + field = "Enable extended rusEFI CAN broadcast", enableExtendedCanBroadcast + field = "rusEFI CAN data bus", canBroadcastUseChannelTwo + field = "rusEFI CAN data base address", verboseCanBaseAddress + field = "rusEFI CAN data address type", rusefiVerbose29b + field = "rusEFI CAN data period", canSleepPeriodMs + + dialog = canBus2, "Secondary CAN Bus" + + dialog = canBusMain, "CAN Bus Communication", yAxis + panel = canBus + + panel = canHw1 + panel = canHw2 + + dialog = sdCard, "SD Card Logger" + field = "#rusEFI logs to SD when powered without USB connected" + field = "# and USB not connected for 15 seconds" + field = "#rusEFI connects SD to your PC when powered by USB" + field = "Enable SD Card", isSdCardEnabled + field = "alwaysWriteSdCard", alwaysWriteSdCard, { isSdCardEnabled } + field = "CS Pin", sdCardCsPin, { isSdCardEnabled } + field = "SPI", sdCardSpiDevice, { isSdCardEnabled } + field = "SD logger rate", sdCardLogFrequency, { isSdCardEnabled } + field = "SD logger mode", sdTriggerLog, { isSdCardEnabled } + + dialog = tle8888Dialog, "TLE8888", yAxis + field = "TLE8888 SPI", tle8888spiDevice + field = "TLE8888 Chip Select", tle8888_cs + field = "Trigger Input Mode", tle8888mode + field = "useTLE8888 cranking reset hack", useTLE8888_cranking_hack + field = "useTLE8888 stepper", useTLE8888_stepper + commandButton = "Reinitialize", cmd_tle8888_init + + dialog = l9779Dialog, "L9779", yAxis + field = "L9779 SPI", l9779spiDevice + field = "L9779 Chip Select", l9779_cs + + dialog = connection, "", yAxis + panel = tsPort + field = "uartConsoleSerialSpeed", uartConsoleSerialSpeed + field = enableKline, enableKline + + dialog = monitoringSettings, "rusEFI Console Settings" + field = "Sensor Sniffer", sensorChartMode + field = " Threshold", sensorSnifferRpmThreshold + field = "Engine Sniffer Threshold", engineSnifferRpmThreshold + + dialog = fuelStrategyPanel, "Fuel" + field = "!https://rusefi.com/s/fuel" + field = "Fuel strategy", fuelAlgorithm + + dialog = debugging, "Debug" + field = "!https://rusefi.com/s/debugmode" + field = "Debug mode", debugMode + + dialog = dutyCycleLimiting, "Injector Duty Cycle Limiter" + field = "Instantaneous injector duty cycle limit", maxInjectorDutyInstant, {isInjectionEnabled} + field = "Sustained injector duty cycle limit", maxInjectorDutySustained, {isInjectionEnabled} + field = "Sustained injector duty cycle delay", maxInjectorDutySustainedTimeout, {isInjectionEnabled} + + dialog = limitsSettings, "Limits" + field = "Cut fuel on RPM limit", cutFuelOnHardLimit + field = "Cut spark on RPM limit", cutSparkOnHardLimit + field = "Use CLT-based RPM limit curve", useCltBasedRpmLimit, { cutFuelOnHardLimit || cutSparkOnHardLimit } + field = "RPM hard limit", rpmHardLimit, { (cutFuelOnHardLimit || cutSparkOnHardLimit) && !useCltBasedRpmLimit } + field = "RPM limit hysteresis", rpmHardLimitHyst + field = "Boost cut pressure", boostCutPressure + field = "Boost cut pressure hysteresis", boostCutPressureHyst + panel = dutyCycleLimiting + + dialog = softRpmLimitSettings, "Soft RPM Limit" + field = "Window size", rpmSoftLimitWindowSize + field = "Timing retard", rpmSoftLimitTimingRetard, { cutSparkOnHardLimit } + field = "Fuel added", rpmSoftLimitFuelAdded, { cutFuelOnHardLimit } + + dialog = oilPressureProtection, "Oil pressure protection" + field = "Minimum oil pressure after start", minOilPressureAfterStart + field = "Enable low oil pressure protection", enableOilPressureProtect + field = "Oil pressure protection timeout", minimumOilPressureTimeout + panel = minimumOilPressure + + dialog = etbLimits, "Electronic Throttle Limiting" + field = "Smoothly close the throttle to limit RPM." + field = "Soft limiter start", etbRevLimitStart + field = "Soft limiter range", etbRevLimitRange + + dialog = limitsAndFallbackLeft + panel = limitsSettings + panel = softRpmLimitSettings, West, { (cutFuelOnHardLimit || cutSparkOnHardLimit) && !useCltBasedRpmLimit } + panel = etbLimits + + dialog = oilPressureProtection, "Oil pressure protection" + field = "Minimum oil pressure after start", minOilPressureAfterStart + + dialog = limitsAndFallbackCenter, "CLT-based RPM Limit" + panel = cltRevLimitCurve + + dialog = limitsAndFallback, "Limits and fallbacks", border + panel = limitsAndFallbackLeft, West + panel = limitsAndFallbackCenter, Center, { (cutFuelOnHardLimit || cutSparkOnHardLimit) && useCltBasedRpmLimit } + +; Engine->Base Engine Settings + dialog = engineChars, "Base Engine Settings" + topicHelp = "baseHelp" + field = "Layout", uiMode + panel = baseEngineConfig + panel = engineMetadata, {1}, { uiMode == 0 || uiMode == 1 } + panel = fuelStrategyPanel + + dialog = crankingFuel, "Fuel" + field = "Injection mode", crankingInjectionMode + field = "Fuel Source For Cranking", useRunningMathForCranking + field = "Base fuel mass", cranking_baseFuel, {useRunningMathForCranking == 0} + + dialog = crankingIAC, "Idle air valve" + field = "Cranking base IAC position", crankingIACposition + field = "After cranking IAC taper duration",afterCrankingIACtaperDuration + field = "Override cranking IAC CLT multiplier", overrideCrankingIacSetting + + dialog = crankingIgnition, "Ignition" + field = "Timing Advance mode", useSeparateAdvanceForCranking + field = "Fixed cranking advance", crankingTimingAngle, {useSeparateAdvanceForCranking == 0} + field = "Fixed Cranking Dwell", ignitionDwellForCrankingMs + + dialog = primingFuelPulsePanel, "Priming fuel pulse" + field = "Priming delay", primingDelay + panel = primingPulse + + dialog = crankingAdv, "Advanced" + field = "Enable flood clear", isCylinderCleanupEnabled + field = "Enable faster engine spin-up", isFasterEngineSpinUpEnabled + field = "Use Advance Corrections for cranking", useAdvanceCorrectionsForCranking + field = "Use Flex Fuel cranking table", flexCranking + +; Cranking->Cranking Settings + dialog = crankingDialog, "Cranking Settings" + field = "Cranking RPM limit", cranking_rpm + panel = crankingFuel + panel = crankingIgnition + panel = crankingIAC + panel = crankingAdv + + dialog = TpsAccelPanel, "TPS" + field = "Set 'Debug Mode' to see detailed 'TPS acceleration enrichment' diagnostics" + field = "Length", tpsAccelLookback + field = "Accel Threshold", tpsAccelEnrichmentThreshold + field = "Decel Threshold", tpsDecelEnleanmentThreshold +; field = "Decel Multiplier", tpsDecelEnleanmentMultiplier + field = "#Accelerator Pump model:" + field = "Fraction Period", tpsAccelFractionPeriod + field = "Fraction Divisor", tpsAccelFractionDivisor + + dialog = WallWettingAccelPanel, "Wall Wetting (alpha version)" + field = "Wall fueling model type", complexWallModel + field = "evaporation time constant / tau", wwaeTau, { complexWallModel == 0 } + field = "added to wall coef / beta", wwaeBeta, { complexWallModel == 0 } + + +; Tuning->AccelEnrichment + dialog = AccelEnrich, "Accel/Decel Enrichment" + panel = TpsAccelPanel + panel = WallWettingAccelPanel + + dialog = wwTauCurves, "Wall wetting AE evaporation time" + field = "#Set a base evaporation time based on coolant temperature, and a multiplier based on MAP." + panel = wwTauCltCurve + panel = wwTauMapCurve + + dialog = wwBetaCurves, "Wall wetting AE impact fraction" + field = "#Set a base impact fraction based on coolant temperature, and a multiplier based on MAP." + panel = wwBetaCltCurve + panel = wwBetaMapCurve + + dialog = auxValvesIO, "Outputs" + field = "aux valve #1", auxValves1 + field = "aux valve #2", auxValves2 + + dialog = scriptSetting, "Setting" + field = "!Use rusEFI console for Lua script editing" + field = "Set number is not associated with the output number." + field = "Set number, only the cell number with some numbers." + field = "Name #1", scriptSettingName1 + field = "Setting #1", scriptSetting1 + field = "Name #2", scriptSettingName2 + field = "Setting #2", scriptSetting2 + field = "Name #3", scriptSettingName3 + field = "Setting #3", scriptSetting3 + field = "Name #4", scriptSettingName4 + field = "Setting #4", scriptSetting4 + field = "Name #5", scriptSettingName5 + field = "Setting #5", scriptSetting5 + field = "Name #6", scriptSettingName6 + field = "Setting #6", scriptSetting6 + + dialog = scriptSettingDialog, "Script Settings", border + panel = scriptSetting, East + + dialog = luaDigitalInputsLeftDialog + field = "Digital #1", luaDigitalInputPins1 + field = "Digital #2", luaDigitalInputPins2 + field = "Digital #3", luaDigitalInputPins3 + field = "Digital #4", luaDigitalInputPins4 + field = "Digital #5", luaDigitalInputPins5 + field = "Digital #6", luaDigitalInputPins6 + field = "Digital #7", luaDigitalInputPins7 + field = "Digital #8", luaDigitalInputPins8 + + dialog = luaDigitalInputsRightDialog + field = "Mode #1", luaDigitalInputPinModes1 + field = "Mode #2", luaDigitalInputPinModes2 + field = "Mode #3", luaDigitalInputPinModes3 + field = "Mode #4", luaDigitalInputPinModes4 + field = "Mode #5", luaDigitalInputPinModes5 + field = "Mode #6", luaDigitalInputPinModes6 + field = "Mode #7", luaDigitalInputPinModes7 + field = "Mode #8", luaDigitalInputPinModes8 + + dialog = luaDigitalInputsDialog, "Lua Digital Aux Inputs", border + panel = luaDigitalInputsLeftDialog, West + panel = luaDigitalInputsRightDialog, East + + dialog = auxInputsDialog, "Lua Analog Inputs" + field = "ADC #1", auxAnalogInputs1 + field = "ADC #2", auxAnalogInputs2 + field = "ADC #3", auxAnalogInputs3 + field = "ADC #4", auxAnalogInputs4 + field = "ADC #5", auxAnalogInputs5 + field = "ADC #6", auxAnalogInputs6 + field = "ADC #7", auxAnalogInputs7 + field = "ADC #8", auxAnalogInputs8 + + dialog = luaOutputs, "Lua Outputs" + field = "!Use rusEFI console for Lua script editing" + field = "#Call startPwm to initialize, then call" + field = "#setPwmDuty and setPwmFreq to vary duty/freq" + field = "#See rusefi.com/s/lua for more info" + field = "output #0", luaOutputPins1 + field = "output #1", luaOutputPins2 + field = "output #2", luaOutputPins3 + field = "output #3", luaOutputPins4 + field = "output #4", luaOutputPins5 + field = "output #5", luaOutputPins6 + field = "output #6", luaOutputPins7 + field = "output #7", luaOutputPins8 + + dialog = transmissionPanel + field = "TCU Enabled" tcuEnabled + field = "Gear Controller" gearControllerMode, { tcuEnabled } + field = "Transmission Controller" transmissionControllerMode, { tcuEnabled } + + dialog = shiftSolenoidPanel, "Shift Solenoids" + field = "Solenoid 1 output" tcu_solenoid1, { tcuEnabled && (transmissionControllerMode == 1 || transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Solenoid 1 output Mode" tcu_solenoid_mode1, { tcuEnabled && (transmissionControllerMode == 1 || transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Solenoid 2 output" tcu_solenoid2, { tcuEnabled && (transmissionControllerMode == 1 || transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Solenoid 2 output Mode" tcu_solenoid_mode2, { tcuEnabled && (transmissionControllerMode == 1 || transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Solenoid 3 output" tcu_solenoid3, { tcuEnabled && (transmissionControllerMode == 1 || transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Solenoid 3 output Mode" tcu_solenoid_mode3, { tcuEnabled && (transmissionControllerMode == 1 || transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Solenoid 4 output" tcu_solenoid4, { tcuEnabled && (transmissionControllerMode == 1 || transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Solenoid 4 output Mode" tcu_solenoid_mode4, { tcuEnabled && (transmissionControllerMode == 1 || transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Solenoid 5 output" tcu_solenoid5, { tcuEnabled && (transmissionControllerMode == 1 || transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Solenoid 5 output Mode" tcu_solenoid_mode5, { tcuEnabled && (transmissionControllerMode == 1 || transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Solenoid 6 output" tcu_solenoid6, { tcuEnabled && (transmissionControllerMode == 1 || transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Solenoid 6 output Mode" tcu_solenoid_mode6, { tcuEnabled && (transmissionControllerMode == 1 || transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "3-2 Solenoid output" tcu_32_solenoid_pin, { tcuEnabled && (transmissionControllerMode == 3) } + field = "3-2 Solenoid output mode" tcu_32_solenoid_pin_mode, { tcuEnabled && (transmissionControllerMode == 3) } + field = "3-2 Solenoid Frequency" tcu_32_solenoid_freq, { tcuEnabled && (transmissionControllerMode == 3) } + + dialog = otherSolenoidPanel, "Other Solenoids" + field = "TCC On/Off Solenoid Pin" tcu_tcc_onoff_solenoid, { tcuEnabled && (transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "TCC On/Off Solenoid Pin Mode" tcu_tcc_onoff_solenoid_mode, { tcuEnabled && (transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "TCC PWM Solenoid Pin" tcu_tcc_pwm_solenoid, { tcuEnabled && (transmissionControllerMode == 3) } + field = "TCC PWM Solenoid Pin Mode" tcu_tcc_pwm_solenoid_mode, { tcuEnabled && (transmissionControllerMode == 3) } + field = "TCC PWM Solenoid Frequency" tcu_tcc_pwm_solenoid_freq, { tcuEnabled && (transmissionControllerMode == 3) } + field = "Pressure Control Solenoid Pin" tcu_pc_solenoid_pin, { tcuEnabled && (transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Pressure Control Solenoid Pin Mode" tcu_pc_solenoid_pin_mode, { tcuEnabled && (transmissionControllerMode == 2 || transmissionControllerMode == 3) } + field = "Pressure Control Solenoid Frequency" tcu_pc_solenoid_freq, { tcuEnabled && (transmissionControllerMode == 2 || transmissionControllerMode == 3) } + + dialog = shiftSettingsPanel, "Shift Settings" + field = "Assumed Shift Time" tcu_shiftTime, { tcuEnabled } + + + dialog = buttonShiftInputPanel, "Switch/Button Shift" + field = "Upshift Pin" tcuUpshiftButtonPin, { tcuEnabled && gearControllerMode == 1 } + field = "Upshift Pin Mode" tcuUpshiftButtonPinMode, { tcuEnabled && gearControllerMode == 1 } + field = "Downshift Pin" tcuDownshiftButtonPin, { tcuEnabled && gearControllerMode == 1 } + field = "Downshift Pin Mode" tcuDownshiftButtonPinMode, { tcuEnabled && gearControllerMode == 1 } + + dialog = inputSpeedSensorPanel, "Input Speed Sensor" + field = "Input Pin", tcuInputSpeedSensorPin + field = "Filter parameter", issFilterReciprocal, { tcuInputSpeedSensorPin != 0 } + field = "Tooth Count", tcuInputSpeedSensorTeeth + +dialog = rangeMatrixInputPanel, "Range Selector Inputs" + field = "Analog Bias Resistor", tcu_rangeSensorBiasResistor, { tcuEnabled } + field = "Pulldown?", tcu_rangeSensorPulldown, { tcuEnabled } + field = "Analog Pin 1", tcu_rangeAnalogInput1, { tcuEnabled && tcu_rangeInput1 == 0 } + field = "Digital Pin 1", tcu_rangeInput1, { tcuEnabled && tcu_rangeAnalogInput1 == 0 } + field = "Digital Pin 1 Mode", tcu_rangeInputMode1, { tcuEnabled && tcu_rangeInput1 != 0 && tcu_rangeAnalogInput1 == 0 } + field = "Analog Pin 2", tcu_rangeAnalogInput2, { tcuEnabled && tcu_rangeInput2 == 0 } + field = "Digital Pin 2", tcu_rangeInput2, { tcuEnabled && tcu_rangeAnalogInput2 == 0 } + field = "Digital Pin 2 Mode", tcu_rangeInputMode2, { tcuEnabled && tcu_rangeInput2 != 0 && tcu_rangeAnalogInput2 == 0 } + field = "Analog Pin 3", tcu_rangeAnalogInput3, { tcuEnabled && tcu_rangeInput3 == 0 } + field = "Digital Pin 3", tcu_rangeInput3, { tcuEnabled && tcu_rangeAnalogInput3 == 0 } + field = "Digital Pin 3 Mode", tcu_rangeInputMode3, { tcuEnabled && tcu_rangeInput3 != 0 && tcu_rangeAnalogInput3 == 0 } + field = "Analog Pin 4", tcu_rangeAnalogInput4, { tcuEnabled && tcu_rangeInput4 == 0 } + field = "Digital Pin 4", tcu_rangeInput4, { tcuEnabled && tcu_rangeAnalogInput4 == 0 } + field = "Digital Pin 4 Mode", tcu_rangeInputMode4, { tcuEnabled && tcu_rangeInput4 != 0 && tcu_rangeAnalogInput4 == 0 } + +dialog = tcuControls, "Transmission Settings" + panel = transmissionPanel + panel = shiftSolenoidPanel + panel = otherSolenoidPanel + panel = shiftSettingsPanel + + dialog = gearControls, "Gear Selection Settings" + panel = buttonShiftInputPanel + panel = rangeMatrixInputPanel + + dialog = inputSpeedSensor, "Input Speed Sensor" + panel = inputSpeedSensorPanel + + dialog = shiftSpeedDialog, "Line Pressure Per Gear Steady State" + panel = shiftSpeedCurve + + dialog = tccCurves, "TCC Lock/Unlock Speed" + panel = tccLockCurve + + dialog = pcPerGearDialog, "Line Pressure Per Gear Steady State" + panel = pcPerGearCurve + + dialog = pcPerShiftDialog, "Line Pressure Per Shift" + panel = pcPerShiftCurve + + dialog = 32Dialog, "3-2 Shift Solenoid Percent by Speed" + panel = 32Curve + + dialog = rangeMatrixDocumentation, "Digital Cell Values" + field = "0 = this pin must be low to reach this state" + field = "1 = this pin must be high to reach this state" + field = "2 = this pin is ignored for reaching this state" + field = "3 = this state is unreachable" + + dialog = rangeMatrixDialog, "Range Selector Input Matrix", border + panel = rangeMatrix, Center + panel = rangeMatrixDocumentation, South + +;Boost Open Loop + + dialog = boostDialog, "" + field = "Enable", isBoostControlEnabled + field = "Control Mode", boostType, { isBoostControlEnabled } + field = "Output", boostControlPin, { boostControlPin != 0 || isBoostControlEnabled } + field = "Output Mode", boostControlPinMode, { isBoostControlEnabled } + field = "Frequency", boostPwmFrequency, { isBoostControlEnabled } + field = "Safe duty cycle", boostControlSafeDutyCycle, { isBoostControlEnabled } + field = "No boost control below RPM", boostControlMinRpm, { isBoostControlEnabled } + field = "No boost control below TPS", boostControlMinTps, { isBoostControlEnabled } + field = "No boost control below MAP", boostControlMinMap, { isBoostControlEnabled } + + dialog = boostOpenLoopYAxisSelector, "" + field = "Y Axis", boostOpenLoopYAxis + + dialog = boostOpenLoopDialog, "", border + panel = boostOpenLoopYAxisSelector, North + panel = boostTableTbl, Center + + dialog = tpsTpsModeSelector + field = "Mode", tpsTpsPercentMode + + dialog = tpsTpsDialog, "", border + panel = tpsTpsModeSelector, North + panel = tpsTpsAccelTbl, Center + + dialog = boostOpenLoopGearAdderDialog, "", border + panel = boostOpenLoopGearAdderCurve, Center + +;Boost Closed Loop + + dialog = boostPidDialog, "" + topicHelp = "boostPidHelp" + field = "Enable closed loop above", minimumBoostClosedLoopMap, { isBoostControlEnabled && boostType == 1 } + field = "P Gain", boostPid_pFactor, { isBoostControlEnabled && boostType == 1 } + field = "I Gain", boostPid_iFactor, { isBoostControlEnabled && boostType == 1 } + field = "D Gain", boostPid_dFactor, { isBoostControlEnabled && boostType == 1 } + field = "Min adjustment", boostPid_minValue, { isBoostControlEnabled && boostType == 1 } + field = "Max adjustment", boostPid_maxValue, { isBoostControlEnabled && boostType == 1 } + + dialog = boostTargetDialog, "", card + panel = boostClosedTbl + + dialog = boostEtbPid, "" + field = "This PID is controlling how DC motor reaches desired position" + field = "" + field = "!This section is for advanced users only!" + field = "H-Bridge #1 function", etbFunctions1 + field = "H-Bridge #2 function", etbFunctions2 + field = "P gain", etbWastegatePid_pFactor, { isBoostControlEnabled } + field = "I gain", etbWastegatePid_iFactor, { isBoostControlEnabled } + field = "D gain", etbWastegatePid_dFactor, { isBoostControlEnabled } + field = "PID min", etbWastegatePid_minValue, { isBoostControlEnabled } + field = "PID max", etbWastegatePid_maxValue, { isBoostControlEnabled } + + dialog = msIoBox1, "MS IO box 1" + field = "Base CAN identifier", msIoBox0_id + field = "VSS settings", msIoBox0_vss, { msIoBox0_id } + + dialog = msIoBox, "" + panel = msIoBox1 + + help = boostPidHelp, "Boost Control PID" + text = "P = % per kPa error" + text = "I = % per kPa-seconds" + text = "D = % per kPa/sec" + text = "" + text = "If the boost error is 5kpa, and your P is set to 2, it will make a correction of 10%." + text = "If the boost error has been 5kPa for 2 second (10 kPa-seconds) and I is set to 0.1, it will make a correction of 1%" + text = "If the boost is changing at 10kPa/s and D is set to 0.5, it will make a correction of 5%." + text = "Those three terms are then added together, and limited by the PID min/max settings." + text = "" + text = "That is then added to the value from the open loop table, and sent to PWM the valve." + + help = veTableDialogHelp, "Volumetric Efficiency" + text = "Volumetric Efficiency is used to calculate fuel in Speed Density mode. VE incorporates pressure ratio as measured by MAP sensor in boost (no VE ever above 105%ish)" + webHelp = "https://rusefi.com/s/fuel" + + help = stepperHbridgeHardwareHelp, "Stepper driven by Dual H-bridge" + text = "In case you are using two H-bridges driving 4-wire stepper. H-brigde control signals connected to MCU pins configured here." + + help = idleStepperHwHelp, "Stepper drivern by step motor driver IC" + text = "In case you have some special IC that drives your stepper. MCU to IC control signals (DIR/STEP/EN) configured here" + + help = stepperDirectDriveHardwareHelp, "Stepper driven by 4 Push-Pull/Pull outputs" + text = "In case you have 4/6-wire stepper driven by 4 ECU outputs in Push-Pull or Pull mode. Set ECU outputs used for each phase here." + + help = iatFuelCorrCurveHelp, "IAT Fuel Correction" + text = "Charge temperature estimation coefficient is the more proper way to handle IAT for fuel purposes" + text = "Open question who if anyone needs IAT Fuel Correction when" + + help = fuelHelp, "Fuel Control" + text = "More about fuel control on the web" + webHelp = "https://rusefi.com/s/fuel" + + help = triggerHelp, "Trigger Settings" + text = "More about Trigger Settings on the web" + webHelp = "https://rusefi.com/s/trigger" + + help = etbHelp, "ETB Control" + text = "More about electronic throttle body on the web" + webHelp = "https://rusefi.com/s/etb" + + help = vrThresholdHelp, "VR Sensor Threshold" + text = "This is about rusEFI VR Discrete decoder" + webHelp = "https://rusefi.com/" + + help = tpsTpsHelp, "Acceleration Enrichment" + text = "More about Tps To Tps acceleration on the web" + webHelp = "https://rusefi.com/s/tpstps" + + help = baseHelp, "Base Settings Control" + text = "More about rusefi on the web" + webHelp = "https://rusefi.com/" + + dialog = veTableDialog + topicHelp = "veTableDialogHelp" + panel = veTableTbl, South + + dialog = veTableDialog3D, "VE Table" + topicHelp = "veTableDialogHelp" + panel = veTableMap, South + + dialog = etbPidDialog, "PID settings" + field = "pFactor", etb_pFactor + field = "iFactor", etb_iFactor + field = "dFactor", etb_dFactor + field = "pid min", etb_minValue + field = "pid max", etb_maxValue + field = "iTermMin", etb_iTermMin + field = "iTermMax", etb_iTermMax + + dialog = etbIdleDialog, "ETB Idle" + field = "ETB idle maximum angle", etbIdleThrottleRange + + dialog = etbDialogLeft + field = "https://rusefi.com/s/etb" + field = "Disable ETB if engine is stopped", disableEtbWhenEngineStopped + field = "Disable ETB Motor", pauseEtbControl + field = "H-Bridge #1 function", etbFunctions1 + field = "H-Bridge #2 function", etbFunctions2 + field = "PWM Frequency", etbFreq + field = "Minimum ETB position", etbMinimumPosition + field = "Maximum ETB position", etbMaximumPosition + field = "" + field = "Jam detection error max", etbJamDetectThreshold, { etbJamDetectThreshold == 0 || etbJamTimeout != 0 } + field = "Jam detection timeout period", etbJamTimeout, { etbJamDetectThreshold != 0 } + field = "Disables jam detection for testing until the next power cycle" + commandButton = "Temporarily disable jam detection", cmd_etb_disable_jam_detect + ; we need the term about stepper idle in here, because there's a bug in TS that you can't have different visibility + ; criteria for the same panel when used in multiple places + ; todo: report bug to TS? + ; another todo: split panel into two panels so that we can enable/disable h-bridge #1 separately from h-bridge #2 + + dialog = etbAutotune, "PID Autotune" + field = "First step: calibrate TPS and hit 'Burn'" + field = "should first OPEN, then CLOSE" + commandButton = "Auto Calibrate ETB 1", cmd_etb_auto_calibrate, { (etbFunctions1 == 1 || etbFunctions2 == 1) && tps1_1AdcChannel != 0 && calibrationMode == 0} + commandButton = "Auto Calibrate ETB 2", cmd_etb_auto_calibrate_2, { (etbFunctions1 == 2 || etbFunctions2 == 2) && tps2_1AdcChannel != 0 && calibrationMode == 0} + field = "Second step" + commandButton = "Start ETB PID Autotune", cmd_etb_autotune, {(etbFunctions1 == 1 || etbFunctions1 == 2 || etbFunctions2 == 1 || etbFunctions2 == 2) && calibrationMode = 0} + commandButton = "Stop ETB PID Autotune", cmd_etb_autotune_stop, {(etbFunctions1 == 1 || etbFunctions1 == 2 || etbFunctions2 == 1 || etbFunctions2 == 2) && calibrationMode >= 3 && calibrationMode <= 5} + + dialog = etbDialogRight + panel = etbIdleDialog,{ etbFunctions1 == 1 || etbFunctions1 == 2 || etbFunctions2 == 1 || etbFunctions2 == 2 } +; commandButton = "Reset ETB", cmd_etb_reset + panel = etbPidDialog, { etbFunctions1 == 1 || etbFunctions1 == 2 || etbFunctions2 == 1 || etbFunctions2 == 2 } + panel = etbAutotune, { etbFunctions1 == 1 || etbFunctions1 == 2 || etbFunctions2 == 1 || etbFunctions2 == 2 } + + dialog = etbDialog, "Electronic Throttle Body", border + topicHelp = "etbHelp" + panel = etbDialogLeft, West + panel = etbDialogRight, East + + dialog = testSpark, "Spark" + commandButton = "Spark #1", cmd_test_spk1 + commandButton = "Spark #2", cmd_test_spk2, { cylindersCount >= 2 } + commandButton = "Spark #3", cmd_test_spk3, { cylindersCount >= 3 } + commandButton = "Spark #4", cmd_test_spk4, { cylindersCount >= 4 } + commandButton = "Spark #5", cmd_test_spk5, { cylindersCount >= 5 } + commandButton = "Spark #6", cmd_test_spk6, { cylindersCount >= 6 } + commandButton = "Spark #7", cmd_test_spk7, { cylindersCount >= 7 } + commandButton = "Spark #8", cmd_test_spk8, { cylindersCount >= 8 } + commandButton = "Spark #9", cmd_test_spk9, { cylindersCount >= 9 } + commandButton = "Spark #10", cmd_test_spk10, { cylindersCount >= 10 } + commandButton = "Spark #11", cmd_test_spk11, { cylindersCount >= 11 } + commandButton = "Spark #12", cmd_test_spk12, { cylindersCount >= 12 } + commandButton = "Abort test", cmd_test_cancel + + dialog = testMisc, "Misc" + commandButton = "A/C Relay", cmd_test_ac_relay + commandButton = "Idle Air Valve", cmd_test_idle_valve + commandButton = "Idle Second Air Valve", cmd_test_second_idle_valve + commandButton = "Stop Engine", cmd_stop_engine + commandButton = "Write Config", cmd_write_config + commandButton = "Reboot ECU", cmd_reset_controller + commandButton = "Reset to DFU", cmd_dfu + commandButton = "Reset to OpenBLT", cmd_openblt + commandButton = "No flash Burn mode", cmd_burn_without_flash + + ; bench test + dialog = ioTest, "Bench Test & Commands", xAxis + panel = testSpark + panel = testInjectors + panel = testOther + panel = testLuaOut + panel = testMisc + + ; Injectors test + dialog = injTest_l, "Output test modes", yAxis + field = "Iterations", benchTestCount + field = "ON time", benchTestOffTime + field = "OFF time", benchTestOnTime + + dialog = injTest_r, "Reference gauges", yAxis + gauge = VBattGauge,North + gauge = testBenchIterGauge,South + + dialog = injTest, "", xAxis + panel = injTest_l + panel = injTest_r + + dialog = widebandConfig, "rusEFI Wideband Config" + field = "!Please connect exactly one wideband controller before pressing these buttons!" + commandButton = "Update Firmware", cmd_wideband_firmare_update + field = "!These buttons will set ALL connected controllers to the specified index." + field = "!Disconnect all controllers you don't want to set!" + commandButton = "Set Index 0", cmd_set_wideband_idx_0 + commandButton = "Set Index 1", cmd_set_wideband_idx_1 + + dialog = engineTypeDialog, "Popular vehicles" + field = "!These buttons send a command to rusEFI controller to apply preset values" + field = "!Once you send the command, please reconnect to rusEFI controller in order to read fresh values" + + + + +; Board->ECU stimulator + dialog = ecuStimulator, "ECU stimulator" + field = "Trigger Simulator", triggerSimulatorRpm + commandButton = "Enable internal trigger simulation", cmd_enable_self_stim + commandButton = "Enable external trigger simulation", cmd_enable_ext_stim + commandButton = "Disable trigger simulation", cmd_disable_self_stim +; field = "" +; field = "digipot spi", digitalPotentiometerSpiDevice +; field = "digipot CS #0", digitalPotentiometerChipSelect1 +; field = "digipot CS #1", digitalPotentiometerChipSelect2 +; field = "digipot CS #2", digitalPotentiometerChipSelect3 +; field = "digipot CS #3", digitalPotentiometerChipSelect4 + field = "" + field = "trigger stimulator output #1", triggerSimulatorPins1 + field = "trigger stimulator output mode #1", triggerSimulatorPinModes1 + field = "trigger stimulator output #2", triggerSimulatorPins2 + field = "trigger stimulator output mode #2", triggerSimulatorPinModes2 + field = camSimulatorPin, camSimulatorPin + field = camSimulatorPinMode, camSimulatorPinMode + field = "" + field = "Logic input channel 1", logicAnalyzerPins1 + field = "Logic input channel 2", logicAnalyzerPins2 + field = "Logic input channel 3", logicAnalyzerPins3 + field = "Logic input channel 4", logicAnalyzerPins4 + field = "" + field = "Engine chart size", engineChartSize + + ; Racing Features->Launch Control + dialog = smLaunchControlWest, "Launch Control Settings" + field = "Enable Launch Control", launchControlEnabled + field = "Activation Mode", launchActivationMode, {launchControlEnabled == 1} + + field = "Launch Button", launchActivatePin, {launchControlEnabled == 1 && (launchActivatePin != 0 || (launchActivationMode == 0))} + field = "Launch Button inverted", launchActivateInverted, {launchControlEnabled == 1 && launchActivationMode == 0} + field = "Launch Button mode", launchActivatePinMode, {launchControlEnabled == 1 && launchActivationMode == 0} + + field = "Clutch Down", clutchDownPin, {launchControlEnabled == 1 && (clutchDownPin != 0 || (launchActivationMode == 1))} + field = "Clutch Down inverted", clutchDownPinInverted, {launchControlEnabled == 1 && launchActivationMode == 1} + field = "Clutch Down mode", clutchDownPinMode, {launchControlEnabled == 1 && launchActivationMode == 1} + field = "" + +; dead code field = "Rpm Threshold", launchRpmThreshold, {launchControlEnabled == 1} + field = "Speed Threshold", launchSpeedThreshold, {launchControlEnabled == 1} + field = "" + field = "Launch RPM", launchRpm, {launchControlEnabled == 1} + field = "Launch Control Window", launchRpmWindow, {launchControlEnabled == 1} + field = "TPS Threshold", launchTpsThreshold, {launchControlEnabled == 1} + field = "Ignition Retard enable", enableLaunchRetard, {launchControlEnabled == 1} + field = "Ignition Retard", launchTimingRetard, {launchControlEnabled == 1 && enableLaunchRetard == 1} + field = "Fuel Added %", launchFuelAdderPercent, {launchControlEnabled == 1} + field = "Smooth Retard Mode", launchSmoothRetard, {launchControlEnabled == 1 && enableLaunchRetard == 1} + field = "Launch Corrections End RPM", launchCorrectionsEndRpm, {launchSmoothRetard == 1 || launchSparkCutEnable == 1} + field = "Hard Cut Mode" + field = "Ignition Cut", launchSparkCutEnable, {launchControlEnabled == 1} + field = "Initial Ignition Cut %", initialIgnitionCutPercent, {launchSparkCutEnable == 1} + field = "Final Ignition Cut % Before launch", finalIgnitionCutPercentBeforeLaunch, {launchSparkCutEnable == 1} + field = "Fuel Cut", launchFuelCutEnable, {launchControlEnabled == 1} + + dialog = TorqueReductionButtonDialog, "Torque Reduction Button" + field = "Torque Reduction Button", torqueReductionTriggerPin + field = "Torque Reduction Inverted", torqueReductionTriggerPinInverted, {torqueReductionTriggerPin != 0} + field = "Torque Reduction Mode", torqueReductionTriggerPinMode, {torqueReductionTriggerPin != 0} + + dialog = LaunchButtonDialog, "Launch Button" + field = "Launch Button", launchActivatePin + field = "Launch Button Inverted", launchActivateInverted, {launchActivatePin != 0} + field = "Launch Button Mode", launchActivatePinMode, {launchActivatePin != 0} + + dialog = TorqueReductionActivationModeDialog, "Activation", yAxis + field = "Activation Mode", torqueReductionActivationMode + panel = TorqueReductionButtonDialog, {torqueReductionActivationMode == 0} + panel = LaunchButtonDialog, {torqueReductionActivationMode == 1} + + dialog = TorqueReductionSettings, "Settings" + field = "Limit Torque Reduction Time", limitTorqueReductionTime + field = "Torque Reduction Time", torqueReductionTime, {limitTorqueReductionTime != 0} + field = "Torque Reduction Arming RPM", torqueReductionArmingRpm + field = "Torque Reduction Arming APP", torqueReductionArmingApp + field = "Torque Reduction Ignition Retard", torqueReductionIgnitionRetard + field = "Torque Reduction Ignition Cut", torqueReductionIgnitionCut + + dialog = ShiftTorqueReductionSettingsDialog, "", yAxis + field = "Enable Shift Torque Reduction", torqueReductionEnabled + panel = TorqueReductionActivationModeDialog, {torqueReductionEnabled == 1} + panel = TorqueReductionSettings, {torqueReductionEnabled == 1 && ((torqueReductionActivationMode == 0 && torqueReductionTriggerPin != 0) || (torqueReductionActivationMode == 1 && launchActivatePin != 0))} + + dialog = ShiftTorqueReductionDialog, "", border + panel = ShiftTorqueReductionSettingsDialog, West + panel = shift_torque_reduction_stateDialog, East + + dialog = smLaunchControl, "", border + panel = smLaunchControlWest, West + panel = launch_control_stateDialog, East + + dialog = antiLagDialog, "AntiLag Settings" + field = "Enable AntiLag", antiLagEnabled + field = "Activation Mode", antiLagActivationMode + field = "Switch Input", ALSActivatePin, {antiLagActivationMode == 0 && antiLagEnabled == 1} + field = "ALS Button inverted", ALSActivateInverted, {antiLagActivationMode == 0 && antiLagEnabled == 1} + field = "ALS Button mode", ALSActivatePinMode, {antiLagActivationMode == 0 && antiLagEnabled == 1} + field = "ALS timeout", ALSMaxDuration, {antiLagEnabled == 1} + field = "Max TPS", ALSMaxTPS, {antiLagEnabled == 1} + field = "Min RPM", ALSMinRPM, {antiLagEnabled == 1} + field = "Max RPM", ALSMaxRPM, {antiLagEnabled == 1} + field = "Min CLT", ALSMinCLT, {antiLagEnabled == 1} + field = "Max CLT", ALSMaxCLT, {antiLagEnabled == 1} + field = "Idle Air Add", ALSIdleAdd, {antiLagEnabled == 1} + field = "ETB Air Add", ALSEtbAdd, {antiLagEnabled == 1} + panel = FuelAdderTableALS + panel = IgnRetardTableALS + panel = IgnSkipTableALS + + + dialog = coastingFuelCutControl, "Coasting Fuel Cutoff Settings" + field = "Enable Coasting Fuel Cutoff", coastingFuelCutEnabled + field = "No cut below CLT", coastingFuelCutClt, {coastingFuelCutEnabled == 1} + field = "RPM cut fuel above", coastingFuelCutRpmHigh, {coastingFuelCutEnabled == 1} + field = "RPM restore fuel below", coastingFuelCutRpmLow, {coastingFuelCutEnabled == 1} + field = "Vehicle speed cut above", coastingFuelCutVssHigh, {coastingFuelCutEnabled == 1} + field = "Vehicle speed restore below", coastingFuelCutVssLow, {coastingFuelCutEnabled == 1} + field = "Cut fuel below TPS", coastingFuelCutTps, {coastingFuelCutEnabled == 1} + field = "Cut fuel below MAP", coastingFuelCutMap, {coastingFuelCutEnabled == 1} + field = "Fuel cut delay", dfcoDelay, {coastingFuelCutEnabled == 1} + field = "Inhibit closed loop fuel after cut", noFuelTrimAfterDfcoTime, {coastingFuelCutEnabled == 1} + + dialog = rotaryDialog, "Rotary" + field = "Enable Trailing Sparks", enableTrailingSparks + field = "Trailing Spark Offset", trailingSparkAngle + field = "Trailing Pin 1", trailingCoilPins1 + field = "Trailing Pin 2", trailingCoilPins2 + field = "Trailing Pin 3", trailingCoilPins3 + field = "Trailing Pin 4", trailingCoilPins4 + + + + dialog = parkingLot2, "Experimental 2" + field = dacOutputPins1, dacOutputPins1 + field = dacOutputPins2, dacOutputPins2 + + field = "luaCanRxWorkaround CAN performance hack", luaCanRxWorkaround + field = "Read RPM matching VSS profile", canInputBCM + field = auxSpeed1Multiplier, auxSpeed1Multiplier + field = magicNumberAvailableForDevTricks, magicNumberAvailableForDevTricks + field = brakeMeanEffectivePressureDifferential, brakeMeanEffectivePressureDifferential + + dialog = parkingLot3, "Experimental 3" + field = triggerEventsTimeoutMs, triggerEventsTimeoutMs + field = devBit0, devBit0 + field = devBit1, devBit1 + field = devBit2, devBit2 + field = devBit3, devBit3 + field = devBit4, devBit4 + field = devBit5, devBit5 + field = devBit6, devBit6 + field = devBit7, devBit7 + + + dialog = mc33810Dialog, "MC33810 IGN/INJ driver" + field = "SPI settings" + field = "mc33810_cs", mc33810_cs1 + field = "mc33810_csPinMode", mc33810_csPinMode + field = "Chip configuration" + field = "Nominal coil charge current (3..10.75)", mc33810Nomi + field = "Maximum coil charge current (6..21)", mc33810Maxi + field = "Maximum dwell (IGN pins mode only)", mc33810maxDwellTimer + field = "Disable auto recovery from OV/UV", mc33810DisableRecoveryMode + field = "Disable ING mode if you have no IGBT/MOSFETs on board and no feedback routed to IC" + field = "GD0 output disable IGN mode", mc33810Gpgd0Mode + field = "GD1 output disable IGN mode", mc33810Gpgd1Mode + field = "GD2 output disable IGN mode", mc33810Gpgd2Mode + field = "GD3 output disable IGN mode", mc33810Gpgd3Mode + commandButton = "Reinitialize", cmd_mc33810_init + + indicatorPanel = acrActiveDiagPanel, 1, { 1 } + indicator = { acrActive }, "ACR off", "ACR on", white, black, green, black + + dialog = harleyAcr, "Harley Automatic Compression Release" + field = "Pin", acrPin + field = "Pin 2", acrPin2 + field = "Cut Fuel during ACR", cutFuelInAcr + field = "#ACR is disabled after the specified number" + field = "#of revolutions, plus degrees of engine phase" + field = "Disable after revolutions", acrRevolutions + field = "Disable after engine phase", acrDisablePhase + commandButton = "Test ACR #1", cmd_test_acr_valve + commandButton = "Test ACR #2", cmd_test_acr2_valve + panel = acrActiveDiagPanel + + dialog = kLineDialog, "K Line" + field = kLineBaudRate, kLineBaudRate + field = verboseKLine, verboseKLine + field = hondaK, hondaK + field = kLineDoHondaSend, kLineDoHondaSend + field = kLinePeriodUs, kLinePeriodUs + + dialog = parkingLot, "Experimental/Broken" + field = uiMode, uiMode + field = can1ListenMode, can1ListenMode + field = can2ListenMode, can2ListenMode + field = rethrowHardFault, rethrowHardFault + field = canGpioType, canGpioType + field = "I understand ECU Locking", yesUnderstandLocking + field = "! Use console for unlocking" + field = "Tune read/write password", tuneHidingKey, { yesUnderstandLocking == 1 } + field = verboseQuad, verboseQuad +; field = useEeprom, useEeprom + field = "#System hacks" + field = "vvtBooleanForVerySpecialCases", vvtBooleanForVerySpecialCases + field = watchOutForLinearTime, watchOutForLinearTime + field = "TS over CAN debug", verboseIsoTp + field = "showHumanReadableWarning (affects Burn)", showHumanReadableWarning + field = "Warning Message", warning_message + + field = "consumeObdSensors", consumeObdSensors, { canReadEnabled == 1 && canWriteEnabled == 1} + field = "BRZ/FRS/GT86 pedal", allowIdenticalPps + field = "Artificial Misfire", artificialTestMisfire + field = "Always use instant RPM", alwaysInstantRpm + field = vinNumber, vinNumber + field = turbochargerFilter, turbochargerFilter + field = auxFrequencyFilter, auxFrequencyFilter + field = useBiQuadOnAuxSpeedSensors, useBiQuadOnAuxSpeedSensors + field = "TODO KS mode 4569", kickStartCranking + panel = allTriggerDebug + panel = torqueTableTbl + + help = helpGeneral, "rusEFI General Help" + webHelp = "http://www.rusefi.com/" + text = "" + + dialog = vrThreshold1, "VR 1 Threshold" + field = "Pin", vrThreshold1_pin + panel = vrThresholdCurve1 + + dialog = vrThreshold2, "VR 2 Threshold" + field = "Pin", vrThreshold2_pin + panel = vrThresholdCurve2 + + dialog = vrThreshold + topicHelp = "vrThresholdHelp" + panel = vrThreshold1 + + dialog = gppwm1left, "" + field = "Output", gppwm1_pin + field = "" + field = "Set frequency to 0hz for on-off mode" + field = "Frequency", gppwm1_pwmFrequency, {gppwm1_pin != 0} + field = "" + field = "On above duty", gppwm1_onAboveDuty, {gppwm1_pin != 0 && gppwm1_pwmFrequency == 0} + field = "Off below duty", gppwm1_offBelowDuty, {gppwm1_pin != 0 && gppwm1_pwmFrequency == 0} + field = "Duty if error", gppwm1_dutyIfError, {gppwm1_pin != 0} + field = "" + field = "X Axis", gppwm1_rpmAxis, {gppwm1_pin != 0} + field = "Y Axis", gppwm1_loadAxis, {gppwm1_pin != 0} + field = "Note", gpPwmNote1 + field = "" + field = "" + field = "" + field = "" + field = "" + + dialog = gppwm1, "General Purpose PWM 1", xAxis + panel = gppwm1left + panel = gppwm1Tbl, {gppwm1_pin != 0} + + dialog = gppwm2left, "" + field = "Output", gppwm2_pin + field = "" + field = "Set frequency to 0hz for on-off mode" + field = "Frequency", gppwm2_pwmFrequency, {gppwm2_pin != 0} + field = "" + field = "On above duty", gppwm2_onAboveDuty, {gppwm2_pin != 0 && gppwm2_pwmFrequency == 0} + field = "Off below duty", gppwm2_offBelowDuty, {gppwm2_pin != 0 && gppwm2_pwmFrequency == 0} + field = "Duty if error", gppwm2_dutyIfError, {gppwm2_pin != 0} + field = "" + field = "X Axis", gppwm2_rpmAxis, {gppwm2_pin != 0} + field = "Y Axis", gppwm2_loadAxis, {gppwm2_pin != 0} + field = "Note", gpPwmNote2 + field = "" + field = "" + field = "" + field = "" + field = "" + + dialog = gppwm2, "General Purpose PWM 2", xAxis + panel = gppwm2left + panel = gppwm2Tbl, {gppwm2_pin != 0} + + dialog = gppwm3left, "" + field = "Output", gppwm3_pin + field = "" + field = "Set frequency to 0hz for on-off mode" + field = "Frequency", gppwm3_pwmFrequency, {gppwm3_pin != 0} + field = "" + field = "On above duty", gppwm3_onAboveDuty, {gppwm3_pin != 0 && gppwm3_pwmFrequency == 0} + field = "Off below duty", gppwm3_offBelowDuty, {gppwm3_pin != 0 && gppwm3_pwmFrequency == 0} + field = "Duty if error", gppwm3_dutyIfError, {gppwm3_pin != 0} + field = "" + field = "X Axis", gppwm3_rpmAxis, {gppwm3_pin != 0} + field = "Y Axis", gppwm3_loadAxis, {gppwm3_pin != 0} + field = "Note", gpPwmNote3 + field = "" + field = "" + field = "" + field = "" + field = "" + + dialog = gppwm3, "General Purpose PWM 3", xAxis + panel = gppwm3left + panel = gppwm3Tbl, {gppwm3_pin != 0} + + dialog = gppwm4left, "" + field = "Output", gppwm4_pin + field = "" + field = "Set frequency to 0hz for on-off mode" + field = "Frequency", gppwm4_pwmFrequency, {gppwm4_pin != 0} + field = "" + field = "On above duty", gppwm4_onAboveDuty, {gppwm4_pin != 0 && gppwm4_pwmFrequency == 0} + field = "Off below duty", gppwm4_offBelowDuty, {gppwm4_pin != 0 && gppwm4_pwmFrequency == 0} + field = "Duty if error", gppwm4_dutyIfError, {gppwm4_pin != 0} + field = "" + field = "X Axis", gppwm4_rpmAxis, {gppwm4_pin != 0} + field = "Y Axis", gppwm4_loadAxis, {gppwm4_pin != 0} + field = "Note", gpPwmNote4 + field = "" + field = "" + field = "" + field = "" + field = "" + + dialog = gppwm4, "General Purpose PWM 4", xAxis + panel = gppwm4left + panel = gppwm4Tbl, {gppwm4_pin != 0} + + dialog = hpfpCamDialog, "HPFP Cam Configuration" + field = "Number of lobes", hpfpCamLobes + field = "If using VVT, which cam the pump is driven from", hpfpCam, {hpfpCamLobes != 0} + field = "Angle of first lobe peak", hpfpPeakPos, {hpfpCamLobes != 0} + panel = hpfpLobeProfileCurve, {hpfpCamLobes != 0} + + dialog = hpfpPumpDialog, "HPFP Pump Configuration" + field = "Valve Pin", hpfpValvePin, {hpfpCamLobes != 0} + field = "Valve Pin Mode", hpfpValvePinMode, {hpfpCamLobes != 0} + commandButton = "HPFP Valve", cmd_test_hpfp_valve + field = "Valve peak current", mc33_hpfp_i_peak, {hpfpCamLobes != 0} + field = "Valve hold current", mc33_hpfp_i_hold, {hpfpCamLobes != 0} + field = "Valve hold off time", mc33_hpfp_i_hold_off, {hpfpCamLobes != 0} + field = "Valve maximum duration", mc33_hpfp_max_hold, {hpfpCamLobes != 0} + field = "Pump volume", hpfpPumpVolume, {hpfpCamLobes != 0} + field = "Minimum angle", hpfpMinAngle, {hpfpCamLobes != 0} + field = "Activation angle", hpfpActivationAngle, {hpfpCamLobes != 0} + field = "Target decay rate", hpfpTargetDecay, {hpfpCamLobes != 0} + field = "Proportional gain", hpfpPidP, {hpfpCamLobes != 0} + field = "Integral gain", hpfpPidI, {hpfpCamLobes != 0} + panel = hpfpDeadtimeCurve, {hpfpCamLobes != 0} + + indicatorPanel = IgnitionDiagPanel, 1, { 1 } + indicator = { ignitorDiagnostic1 > 1 }, { Ignition out 1: bitStringValue(outputDiagErrorList, ignitorDiagnostic1 )}, { Ignition out 1: bitStringValue(outputDiagErrorList, ignitorDiagnostic1 )}, green, black, red, black + indicator = { ignitorDiagnostic2 > 1 }, { Ignition out 2: bitStringValue(outputDiagErrorList, ignitorDiagnostic2 )}, { Ignition out 2: bitStringValue(outputDiagErrorList, ignitorDiagnostic2 )}, green, black, red, black + indicator = { ignitorDiagnostic3 > 1 }, { Ignition out 3: bitStringValue(outputDiagErrorList, ignitorDiagnostic3 )}, { Ignition out 3: bitStringValue(outputDiagErrorList, ignitorDiagnostic3 )}, green, black, red, black + indicator = { ignitorDiagnostic4 > 1 }, { Ignition out 4: bitStringValue(outputDiagErrorList, ignitorDiagnostic4 )}, { Ignition out 4: bitStringValue(outputDiagErrorList, ignitorDiagnostic4 )}, green, black, red, black + indicator = { ignitorDiagnostic5 > 1 }, { Ignition out 5: bitStringValue(outputDiagErrorList, ignitorDiagnostic5 )}, { Ignition out 5: bitStringValue(outputDiagErrorList, ignitorDiagnostic5 )}, green, black, red, black + indicator = { ignitorDiagnostic6 > 1 }, { Ignition out 6: bitStringValue(outputDiagErrorList, ignitorDiagnostic6 )}, { Ignition out 6: bitStringValue(outputDiagErrorList, ignitorDiagnostic6 )}, green, black, red, black + indicator = { ignitorDiagnostic7 > 1 }, { Ignition out 7: bitStringValue(outputDiagErrorList, ignitorDiagnostic7 )}, { Ignition out 7: bitStringValue(outputDiagErrorList, ignitorDiagnostic7 )}, green, black, red, black + indicator = { ignitorDiagnostic8 > 1 }, { Ignition out 8: bitStringValue(outputDiagErrorList, ignitorDiagnostic8 )}, { Ignition out 8: bitStringValue(outputDiagErrorList, ignitorDiagnostic8 )}, green, black, red, black + indicator = { ignitorDiagnostic9 > 1 }, { Ignition out 9: bitStringValue(outputDiagErrorList, ignitorDiagnostic9 )}, { Ignition out 9: bitStringValue(outputDiagErrorList, ignitorDiagnostic9 )}, green, black, red, black + indicator = { ignitorDiagnostic10 > 1 }, {Ignition out 10: bitStringValue(outputDiagErrorList, ignitorDiagnostic10)}, {Ignition out 10: bitStringValue(outputDiagErrorList, ignitorDiagnostic10)}, green, black, red, black + indicator = { ignitorDiagnostic11 > 1 }, {Ignition out 11: bitStringValue(outputDiagErrorList, ignitorDiagnostic11)}, {Ignition out 11: bitStringValue(outputDiagErrorList, ignitorDiagnostic11)}, green, black, red, black + indicator = { ignitorDiagnostic12 > 1 }, {Ignition out 12: bitStringValue(outputDiagErrorList, ignitorDiagnostic12)}, {Ignition out 12: bitStringValue(outputDiagErrorList, ignitorDiagnostic12)}, green, black, red, black + + + indicatorPanel = InjectionDiagPanel, 1, { 1 } + indicator = { injectorDiagnostic1 > 1 }, { Injector out 1: bitStringValue(outputDiagErrorList, injectorDiagnostic1 )}, { Injector out 1: bitStringValue(outputDiagErrorList, injectorDiagnostic1 )}, green, black, red, black + indicator = { injectorDiagnostic2 > 1 }, { Injector out 2: bitStringValue(outputDiagErrorList, injectorDiagnostic2 )}, { Injector out 2: bitStringValue(outputDiagErrorList, injectorDiagnostic2 )}, green, black, red, black + indicator = { injectorDiagnostic3 > 1 }, { Injector out 3: bitStringValue(outputDiagErrorList, injectorDiagnostic3 )}, { Injector out 3: bitStringValue(outputDiagErrorList, injectorDiagnostic3 )}, green, black, red, black + indicator = { injectorDiagnostic4 > 1 }, { Injector out 4: bitStringValue(outputDiagErrorList, injectorDiagnostic4 )}, { Injector out 4: bitStringValue(outputDiagErrorList, injectorDiagnostic4 )}, green, black, red, black + indicator = { injectorDiagnostic5 > 1 }, { Injector out 5: bitStringValue(outputDiagErrorList, injectorDiagnostic5 )}, { Injector out 5: bitStringValue(outputDiagErrorList, injectorDiagnostic5 )}, green, black, red, black + indicator = { injectorDiagnostic6 > 1 }, { Injector out 6: bitStringValue(outputDiagErrorList, injectorDiagnostic6 )}, { Injector out 6: bitStringValue(outputDiagErrorList, injectorDiagnostic6 )}, green, black, red, black + indicator = { injectorDiagnostic7 > 1 }, { Injector out 7: bitStringValue(outputDiagErrorList, injectorDiagnostic7 )}, { Injector out 7: bitStringValue(outputDiagErrorList, injectorDiagnostic7 )}, green, black, red, black + indicator = { injectorDiagnostic8 > 1 }, { Injector out 8: bitStringValue(outputDiagErrorList, injectorDiagnostic8 )}, { Injector out 8: bitStringValue(outputDiagErrorList, injectorDiagnostic8 )}, green, black, red, black + indicator = { injectorDiagnostic9 > 1 }, { Injector out 9: bitStringValue(outputDiagErrorList, injectorDiagnostic9 )}, { Injector out 9: bitStringValue(outputDiagErrorList, injectorDiagnostic9 )}, green, black, red, black + indicator = { injectorDiagnostic10 > 1 }, {Injector out 10: bitStringValue(outputDiagErrorList, injectorDiagnostic10)}, {Injector out 10: bitStringValue(outputDiagErrorList, injectorDiagnostic10)}, green, black, red, black + indicator = { injectorDiagnostic11 > 1 }, {Injector out 11: bitStringValue(outputDiagErrorList, injectorDiagnostic11)}, {Injector out 11: bitStringValue(outputDiagErrorList, injectorDiagnostic11)}, green, black, red, black + indicator = { injectorDiagnostic12 > 1 }, {Injector out 12: bitStringValue(outputDiagErrorList, injectorDiagnostic12)}, {Injector out 12: bitStringValue(outputDiagErrorList, injectorDiagnostic12)}, green, black, red, black + + + dialog = OutputDiagDialog, "Output diagnostic", xAxis + panel = IgnitionDiagPanel + panel = InjectionDiagPanel + +[Tools] + ;addTool = toolName, PanelName + addTool = veTableGenerator, "VE Table Generator", veTableTbl +#if LAMBDA +#else + addTool = afrTableGenerator, "AFR Table Generator", afrTableTbl +#endif diff --git a/generated/tunerstudio/generated/signature_z31-f7.txt b/generated/tunerstudio/generated/signature_z31-f7.txt new file mode 100644 index 0000000..4d27d84 --- /dev/null +++ b/generated/tunerstudio/generated/signature_z31-f7.txt @@ -0,0 +1,4 @@ +! Generated by gen_signature.sh +! SIGNATURE_HASH is a built-in variable generated by config_definition-all.jar +! gen_signature.sh Using env variable branch [main] +#define TS_SIGNATURE "rusEFI main.2024.11.13.z31-f7.@@SIGNATURE_HASH@@"