rusefi/firmware/config/boards/subaru_eg33/config/controllers/algo/engine_configuration_genera...

4944 lines
98 KiB
C
Raw Normal View History

2022-04-30 10:07:03 -07:00
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on config/boards/subaru_eg33/config/gen_subaru_config.sh integration/rusefi_config.txt Sat Apr 30 17:04:55 UTC 2022
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
#include "rusefi_types.h"
// start of stft_cell_cfg_s
struct stft_cell_cfg_s {
/**
2021-04-26 14:59:44 -07:00
%
* offset 0
*/
int8_t maxAdd;
2022-04-24 20:46:16 -07:00
/**
%
2022-04-24 21:01:07 -07:00
* offset 1
2022-04-24 20:46:16 -07:00
*/
int8_t maxRemove;
/**
2021-10-29 12:52:10 -07:00
* 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.
2021-04-26 14:59:44 -07:00
sec
2022-04-24 21:01:07 -07:00
* offset 2
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint16_t, 10, 1> timeConstant;
};
2022-04-24 21:01:07 -07:00
static_assert(sizeof(stft_cell_cfg_s) == 4);
// start of stft_s
struct stft_s {
/**
* Below this RPM, the idle region is active
2021-04-26 14:59:44 -07:00
RPM
* offset 0
*/
2021-12-19 19:56:33 -08:00
scaled_channel<uint8_t, 1, 50> maxIdleRegionRpm;
/**
* Below this engine load, the overrun region is active
2021-04-26 14:59:44 -07:00
load
2022-04-24 21:01:07 -07:00
* offset 1
*/
uint8_t maxOverrunLoad;
/**
* Above this engine load, the power region is active
2021-04-26 14:59:44 -07:00
load
2022-04-24 21:01:07 -07:00
* offset 2
*/
uint8_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.
2021-04-26 14:59:44 -07:00
%
2022-04-24 21:01:07 -07:00
* offset 3
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint8_t, 10, 1> deadband;
/**
* Below this temperature, correction is disabled.
2021-04-26 14:59:44 -07:00
C
2022-04-24 21:01:07 -07:00
* offset 4
*/
int8_t minClt;
/**
* Below this AFR, correction is paused
2021-04-26 14:59:44 -07:00
afr
2022-04-24 21:01:07 -07:00
* offset 5
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint8_t, 10, 1> minAfr;
/**
* Above this AFR, correction is paused
2021-04-26 14:59:44 -07:00
afr
2022-04-24 21:01:07 -07:00
* offset 6
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint8_t, 10, 1> maxAfr;
/**
* Delay after starting the engine before beginning closed loop correction.
2021-04-26 14:59:44 -07:00
seconds
2022-04-24 21:01:07 -07:00
* offset 7
*/
uint8_t startupDelay;
/**
2022-04-24 21:01:07 -07:00
* offset 8
*/
stft_cell_cfg_s cellCfgs[STFT_CELL_COUNT];
};
2022-04-24 21:01:07 -07:00
static_assert(sizeof(stft_s) == 24);
// 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
2021-04-26 14:59:44 -07:00
ms
* offset 14
*/
int16_t periodMs;
/**
2021-10-28 11:24:50 -07:00
* Output Min Duty Cycle
* offset 16
*/
int16_t minValue;
/**
2021-10-28 11:24:50 -07:00
* Output Max Duty Cycle
* offset 18
*/
int16_t maxValue;
};
2022-04-17 13:30:07 -07:00
static_assert(sizeof(pid_s) == 20);
// 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.
2021-04-26 14:59:44 -07:00
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
2021-04-26 14:59:44 -07:00
RPM
* offset 4
*/
int16_t rpm;
/**
* need 4 byte alignment
2021-07-03 08:33:11 -07:00
units
* offset 6
*/
uint8_t alignmentFill_at_6[2];
};
2022-04-17 13:30:07 -07:00
static_assert(sizeof(cranking_parameters_s) == 8);
// start of spi_pins
struct spi_pins {
/**
* offset 0
*/
2022-04-28 15:06:22 -07:00
Gpio mosiPin;
/**
2022-04-29 16:48:53 -07:00
* offset 2
*/
2022-04-28 15:06:22 -07:00
Gpio misoPin;
/**
2022-04-29 16:48:53 -07:00
* offset 4
*/
2022-04-28 15:06:22 -07:00
Gpio sckPin;
/**
* need 4 byte alignment
2021-07-03 08:33:11 -07:00
units
2022-04-29 16:48:53 -07:00
* offset 6
*/
2022-04-29 16:48:53 -07:00
uint8_t alignmentFill_at_6[2];
};
2022-04-29 16:48:53 -07:00
static_assert(sizeof(spi_pins) == 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.
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 2
*/
uint8_t dutyIfError;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
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.
2021-04-26 14:59:44 -07:00
hz
2022-04-29 16:48:53 -07:00
* offset 4
*/
uint16_t pwmFrequency;
/**
2021-09-05 17:26:59 -07:00
* Hysteresis: in on-off mode, turn the output on when the table value is above this duty.
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 6
*/
uint8_t onAboveDuty;
/**
2021-09-05 17:26:59 -07:00
* Hysteresis: in on-off mode, turn the output off when the table value is below this duty.
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 7
*/
uint8_t offBelowDuty;
/**
* Selects the load axis to use for the table.
2022-04-29 16:48:53 -07:00
* offset 8
*/
gppwm_channel_e loadAxis;
/**
2021-04-26 14:59:44 -07:00
unit
2022-04-29 16:48:53 -07:00
* offset 9
*/
uint8_t alignmentFill_map;
/**
2021-04-26 14:59:44 -07:00
load
2022-04-29 16:48:53 -07:00
* offset 10
*/
uint8_t loadBins[GPPWM_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 18
*/
2021-12-22 05:15:15 -08:00
scaled_channel<uint8_t, 1, 50> rpmBins[GPPWM_RPM_COUNT];
/**
2021-11-05 19:01:07 -07:00
duty
2022-04-29 16:48:53 -07:00
* offset 26
*/
2021-11-05 19:01:07 -07:00
uint8_t table[GPPWM_RPM_COUNT][GPPWM_LOAD_COUNT];
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 90
*/
uint8_t alignmentFill_at_90[2];
};
2022-04-29 16:48:53 -07:00
static_assert(sizeof(gppwm_channel) == 92);
// start of air_pressure_sensor_config_s
struct air_pressure_sensor_config_s {
/**
* kPa value at low volts
2021-04-26 14:59:44 -07:00
kpa
* offset 0
*/
float lowValue;
/**
* kPa value at high volts
2021-04-26 14:59:44 -07:00
kpa
* offset 4
*/
float highValue;
/**
* offset 8
*/
air_pressure_sensor_type_e type;
/**
* offset 12
*/
adc_channel_e hwChannel;
2022-04-24 20:46:16 -07:00
/**
2022-04-25 18:42:14 -07:00
* need 4 byte alignment
units
2022-04-24 21:01:07 -07:00
* offset 13
2022-04-24 20:46:16 -07:00
*/
2022-04-25 18:42:14 -07:00
uint8_t alignmentFill_at_13[3];
};
2022-04-24 21:01:07 -07:00
static_assert(sizeof(air_pressure_sensor_config_s) == 16);
/**
* @brief MAP averaging configuration
*/
// start of MAP_sensor_config_s
struct MAP_sensor_config_s {
/**
* offset 0
*/
float samplingAngleBins[MAP_ANGLE_SIZE];
/**
2021-11-03 14:10:50 -07:00
* MAP averaging sampling start crank degree angle
2021-04-26 14:59:44 -07:00
deg
* offset 32
*/
float samplingAngle[MAP_ANGLE_SIZE];
/**
* offset 64
*/
float samplingWindowBins[MAP_WINDOW_SIZE];
/**
2021-11-03 14:10:50 -07:00
* MAP averaging angle crank degree duration
2021-04-26 14:59:44 -07:00
deg
* offset 96
*/
float samplingWindow[MAP_WINDOW_SIZE];
/**
* offset 128
*/
air_pressure_sensor_config_s sensor;
};
2022-04-24 21:01:07 -07:00
static_assert(sizeof(MAP_sensor_config_s) == 144);
/**
* @brief Thermistor known values
*/
// start of thermistor_conf_s
struct thermistor_conf_s {
/**
* these values are in Celcius
2021-04-26 14:59:44 -07:00
*C
* offset 0
*/
float tempC_1;
/**
2021-04-26 14:59:44 -07:00
*C
* offset 4
*/
float tempC_2;
/**
2021-04-26 14:59:44 -07:00
*C
* offset 8
*/
float tempC_3;
/**
2021-04-26 14:59:44 -07:00
Ohm
* offset 12
*/
float resistance_1;
/**
2021-04-26 14:59:44 -07:00
Ohm
* offset 16
*/
float resistance_2;
/**
2021-04-26 14:59:44 -07:00
Ohm
* offset 20
*/
float resistance_3;
/**
* Pull-up resistor value on your board
2021-04-26 14:59:44 -07:00
Ohm
* offset 24
*/
float bias_resistor;
};
2022-04-17 13:30:07 -07:00
static_assert(sizeof(thermistor_conf_s) == 28);
/**
* @brief Linear sensor interpolation
*/
// start of linear_sensor_s
struct linear_sensor_s {
/**
* offset 0
*/
adc_channel_e hwChannel;
2022-04-24 20:46:16 -07:00
/**
2022-04-25 18:42:14 -07:00
* need 4 byte alignment
units
2022-04-24 21:01:07 -07:00
* offset 1
2022-04-24 20:46:16 -07:00
*/
2022-04-25 18:42:14 -07:00
uint8_t alignmentFill_at_1[3];
/**
2021-04-26 14:59:44 -07:00
volts
2022-04-24 21:01:07 -07:00
* offset 4
*/
float v1;
/**
2021-04-26 14:59:44 -07:00
kPa
2022-04-24 21:01:07 -07:00
* offset 8
*/
float value1;
/**
2021-04-26 14:59:44 -07:00
volts
2022-04-24 21:01:07 -07:00
* offset 12
*/
float v2;
/**
2021-04-26 14:59:44 -07:00
kPa
2022-04-24 21:01:07 -07:00
* offset 16
*/
float value2;
};
2022-04-24 21:01:07 -07:00
static_assert(sizeof(linear_sensor_s) == 20);
/**
* @brief Thermistor curve parameters
*/
// start of ThermistorConf
struct ThermistorConf {
/**
* offset 0
*/
thermistor_conf_s config;
/**
* offset 28
*/
adc_channel_e adcChannel;
/**
* need 4 byte alignment
2021-07-03 08:33:11 -07:00
units
* offset 29
*/
uint8_t alignmentFill_at_29[3];
};
2022-04-17 13:30:07 -07:00
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. cc/min, cubic centimetre per minute
* By the way, g/s = 0.125997881 * (lb/hr)
* g/s = 0.125997881 * (cc/min)/10.5
* g/s = 0.0119997981 * cc/min
2021-04-26 14:59:44 -07:00
cm3/min
* offset 0
*/
float flow;
/**
* set_flat_injector_lag LAG
* set_injector_lag VOLTAGE LAG
2021-04-26 14:59:44 -07:00
volts
* offset 4
*/
float battLagCorrBins[VBAT_INJECTOR_CURVE_SIZE];
/**
* ms delay between injector open and close dead times
2021-04-26 14:59:44 -07:00
ms
* offset 36
*/
float battLagCorr[VBAT_INJECTOR_CURVE_SIZE];
};
2022-04-17 13:30:07 -07:00
static_assert(sizeof(injector_s) == 68);
// start of specs_s
struct specs_s {
/**
2021-11-03 14:10:50 -07:00
* Engine volume/capacity, in litres
* see also cylindersCount
2021-04-26 14:59:44 -07:00
L
* offset 0
*/
float displacement;
/**
2021-11-03 14:10:50 -07:00
* Number of cylinder the engine has.
* offset 4
*/
2021-07-07 05:40:27 -07:00
uint32_t cylindersCount;
/**
* offset 8
*/
firing_order_e firingOrder;
};
2022-04-17 13:30:07 -07:00
static_assert(sizeof(specs_s) == 12);
/**
* @brief Trigger wheel(s) configuration
*/
// start of trigger_config_s
struct trigger_config_s {
/**
2021-04-18 06:37:46 -07:00
* https://github.com/rusefi/rusefi/wiki/All-Supported-Triggers
* set trigger_type X
* offset 0
*/
trigger_type_e type;
/**
offset 4 bit 0 */
2021-11-19 20:16:43 -08:00
bool todoRemoveMeOneDay0 : 1 {};
/**
offset 4 bit 1 */
2021-11-19 20:16:43 -08:00
bool todoRemoveMeOneDay1 : 1 {};
/**
* This option could be used if your second trigger channel is broken
offset 4 bit 2 */
2021-11-19 20:16:43 -08:00
bool useOnlyFirstChannel : 1 {};
/**
offset 4 bit 3 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_3 : 1 {};
/**
offset 4 bit 4 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_4 : 1 {};
/**
offset 4 bit 5 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_5 : 1 {};
/**
offset 4 bit 6 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_6 : 1 {};
/**
offset 4 bit 7 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_7 : 1 {};
/**
offset 4 bit 8 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_8 : 1 {};
/**
offset 4 bit 9 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_9 : 1 {};
/**
offset 4 bit 10 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_10 : 1 {};
/**
offset 4 bit 11 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_11 : 1 {};
/**
offset 4 bit 12 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_12 : 1 {};
/**
offset 4 bit 13 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_13 : 1 {};
/**
offset 4 bit 14 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_14 : 1 {};
/**
offset 4 bit 15 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_15 : 1 {};
/**
offset 4 bit 16 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_16 : 1 {};
/**
offset 4 bit 17 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_17 : 1 {};
/**
offset 4 bit 18 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_18 : 1 {};
/**
offset 4 bit 19 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_19 : 1 {};
/**
offset 4 bit 20 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_20 : 1 {};
/**
offset 4 bit 21 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_21 : 1 {};
/**
offset 4 bit 22 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_22 : 1 {};
/**
offset 4 bit 23 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_23 : 1 {};
/**
offset 4 bit 24 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_24 : 1 {};
/**
offset 4 bit 25 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_25 : 1 {};
/**
offset 4 bit 26 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_26 : 1 {};
/**
offset 4 bit 27 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_27 : 1 {};
/**
offset 4 bit 28 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_28 : 1 {};
/**
offset 4 bit 29 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_29 : 1 {};
/**
offset 4 bit 30 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_30 : 1 {};
/**
offset 4 bit 31 */
2021-11-19 20:16:43 -08:00
bool unusedBit_4_31 : 1 {};
/**
2021-04-26 14:59:44 -07:00
number
* offset 8
*/
int customTotalToothCount;
/**
2021-04-26 14:59:44 -07:00
number
* offset 12
*/
int customSkippedToothCount;
};
2022-04-17 13:30:07 -07:00
static_assert(sizeof(trigger_config_s) == 16);
// start of afr_sensor_s
struct afr_sensor_s {
/**
* offset 0
*/
adc_channel_e hwChannel;
2022-04-24 20:46:16 -07:00
/**
2022-04-25 18:42:14 -07:00
* need 4 byte alignment
units
2022-04-24 21:01:07 -07:00
* offset 1
2022-04-24 20:46:16 -07:00
*/
2022-04-25 18:42:14 -07:00
uint8_t alignmentFill_at_1[3];
/**
2021-04-26 14:59:44 -07:00
volts
2022-04-24 21:01:07 -07:00
* offset 4
*/
float v1;
/**
2021-04-26 14:59:44 -07:00
AFR
2022-04-24 21:01:07 -07:00
* offset 8
*/
float value1;
/**
2021-04-26 14:59:44 -07:00
volts
2022-04-24 21:01:07 -07:00
* offset 12
*/
float v2;
/**
2021-04-26 14:59:44 -07:00
AFR
2022-04-24 21:01:07 -07:00
* offset 16
*/
float value2;
};
2022-04-24 21:01:07 -07:00
static_assert(sizeof(afr_sensor_s) == 20);
// start of idle_hardware_s
struct idle_hardware_s {
/**
2021-04-26 14:59:44 -07:00
Hz
* offset 0
*/
int solenoidFrequency;
/**
* offset 4
*/
output_pin_e solenoidPin;
/**
2022-04-29 16:48:53 -07:00
* offset 6
*/
2022-04-28 15:06:22 -07:00
Gpio stepperDirectionPin;
/**
2022-04-29 16:48:53 -07:00
* offset 8
*/
2022-04-28 15:06:22 -07:00
Gpio stepperStepPin;
/**
2022-04-29 16:48:53 -07:00
* offset 10
*/
pin_output_mode_e solenoidPinMode;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 11
*/
uint8_t alignmentFill_at_11[1];
};
2022-04-29 16:48:53 -07:00
static_assert(sizeof(idle_hardware_s) == 12);
// start of dc_io
struct dc_io {
/**
* offset 0
*/
2022-04-28 15:06:22 -07:00
Gpio directionPin1;
/**
2022-04-29 16:48:53 -07:00
* offset 2
*/
2022-04-28 15:06:22 -07:00
Gpio directionPin2;
/**
2021-06-05 13:09:52 -07:00
* Acts as EN pin in two-wire mode
2022-04-29 16:48:53 -07:00
* offset 4
*/
2022-04-28 15:06:22 -07:00
Gpio controlPin;
/**
2022-04-29 16:48:53 -07:00
* offset 6
*/
2022-04-28 15:06:22 -07:00
Gpio disablePin;
};
2022-04-29 16:48:53 -07:00
static_assert(sizeof(dc_io) == 8);
2021-07-28 04:49:04 -07:00
// start of vr_threshold_s
struct vr_threshold_s {
/**
2022-04-24 23:20:36 -07:00
rpm
2021-07-28 04:49:04 -07:00
* offset 0
*/
2022-04-24 23:20:36 -07:00
scaled_channel<uint8_t, 1, 50> rpmBins[6];
2021-07-28 04:49:04 -07:00
/**
2022-04-24 23:20:36 -07:00
volts
* offset 6
2021-07-28 04:49:04 -07:00
*/
2022-04-24 23:20:36 -07:00
scaled_channel<uint8_t, 100, 1> values[6];
2021-07-28 04:49:04 -07:00
/**
2022-04-24 23:20:36 -07:00
* offset 12
2021-07-28 04:49:04 -07:00
*/
2022-04-28 15:06:22 -07:00
Gpio pin;
2021-07-28 04:49:04 -07:00
/**
2022-04-24 23:20:36 -07:00
* need 4 byte alignment
units
2022-04-29 16:48:53 -07:00
* offset 14
2021-07-28 04:49:04 -07:00
*/
2022-04-29 16:48:53 -07:00
uint8_t alignmentFill_at_14[2];
2021-07-28 04:49:04 -07:00
};
2022-04-24 21:01:07 -07:00
static_assert(sizeof(vr_threshold_s) == 16);
2021-07-28 04:49:04 -07:00
// 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;
2021-12-19 23:04:16 -08:00
/**
* Disable sensor sniffer above this rpm
RPM
* offset 4
*/
scaled_channel<uint8_t, 1, 50> sensorSnifferRpmThreshold;
/**
* set rpm_hard_limit X
rpm
2022-04-24 21:01:07 -07:00
* offset 5
2021-12-19 23:04:16 -08:00
*/
scaled_channel<uint8_t, 1, 50> rpmHardLimit;
/**
* A secondary Rev limit engaged by the driver to help launch the vehicle faster
rpm
2022-04-24 21:01:07 -07:00
* offset 6
2021-12-19 23:04:16 -08:00
*/
scaled_channel<uint8_t, 1, 50> launchRpm;
2022-04-24 20:46:16 -07:00
/**
* Engine sniffer would be disabled above this rpm
* set engineSnifferRpmThreshold X
RPM
2022-04-24 21:01:07 -07:00
* offset 7
*/
2021-12-19 23:04:16 -08:00
scaled_channel<uint8_t, 1, 50> engineSnifferRpmThreshold;
/**
2021-12-19 23:04:16 -08:00
* Disable multispark above this engine speed.
rpm
2022-04-24 21:01:07 -07:00
* offset 8
*/
2021-12-19 23:04:16 -08:00
scaled_channel<uint8_t, 1, 50> multisparkMaxRpm;
/**
* Above this RPM, disable AC. Set to 0 to disable check.
rpm
2022-04-24 21:01:07 -07:00
* offset 9
2021-12-19 23:04:16 -08:00
*/
scaled_channel<uint8_t, 1, 50> maxAcRpm;
/**
* Above this TPS, disable AC. Set to 0 to disable check.
%
2022-04-24 21:01:07 -07:00
* offset 10
2021-12-19 23:04:16 -08:00
*/
uint8_t maxAcTps;
/**
* Above this CLT, disable AC to prevent overheating the engine. Set to 0 to disable check.
deg C
2022-04-24 21:01:07 -07:00
* offset 11
2021-12-19 23:04:16 -08:00
*/
uint8_t maxAcClt;
/**
2022-04-18 05:10:05 -07:00
RPM
2022-04-24 21:01:07 -07:00
* offset 12
2021-12-19 23:04:16 -08:00
*/
2022-04-18 05:10:05 -07:00
scaled_channel<uint8_t, 1, 50> knockNoiseRpmBins[ENGINE_NOISE_CURVE_SIZE];
2021-12-19 23:04:16 -08:00
/**
* 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.
deg
2022-04-29 16:48:53 -07:00
* offset 28
2021-12-19 23:04:16 -08:00
*/
uint8_t multisparkMaxSparkingAngle;
/**
* Configures the maximum number of extra sparks to fire (does not include main spark)
count
2022-04-29 16:48:53 -07:00
* offset 29
2021-12-19 23:04:16 -08:00
*/
uint8_t multisparkMaxExtraSparkCount;
/**
* On Single Coil or Wasted Spark setups you have to lower dwell at high RPM
RPM
2022-04-29 16:48:53 -07:00
* offset 30
2021-12-19 23:04:16 -08:00
*/
scaled_channel<uint8_t, 1, 50> sparkDwellRpmBins[DWELL_CURVE_SIZE];
2022-04-24 21:01:07 -07:00
/**
* need 4 byte alignment
units
2022-04-29 16:48:53 -07:00
* offset 38
2022-04-24 21:01:07 -07:00
*/
2022-04-29 16:48:53 -07:00
uint8_t alignmentFill_at_38[2];
2021-12-19 23:04:16 -08:00
/**
ms
2022-04-29 16:48:53 -07:00
* offset 40
2021-12-19 23:04:16 -08:00
*/
float sparkDwellValues[DWELL_CURVE_SIZE];
/**
2022-04-29 16:48:53 -07:00
* offset 72
2021-12-19 23:04:16 -08:00
*/
injector_s injector;
/**
2021-11-03 14:10:50 -07:00
* Does the vehicle have a turbo or supercharger?
2022-04-29 16:48:53 -07:00
offset 140 bit 0 */
2021-11-19 20:16:43 -08:00
bool isForcedInduction : 1 {};
/**
2021-04-30 08:03:28 -07:00
* On Ford vehicles one of the sensors is not linear on the full range, i.e. in the specific range of the positions we effectively have only one sensor.
2022-04-29 16:48:53 -07:00
offset 140 bit 1 */
2021-11-19 20:16:43 -08:00
bool useFordRedundantTps : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 2 */
2021-11-19 20:16:43 -08:00
bool isVerboseAuxPid1 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 3 */
2021-11-19 20:16:43 -08:00
bool overrideTriggerGaps : 1 {};
/**
2021-06-11 03:27:21 -07:00
* Turn on this fan when AC is on.
2022-04-29 16:48:53 -07:00
offset 140 bit 4 */
2021-11-19 20:16:43 -08:00
bool enableFan1WithAc : 1 {};
/**
2021-06-11 03:27:21 -07:00
* Turn on this fan when AC is on.
2022-04-29 16:48:53 -07:00
offset 140 bit 5 */
2021-11-19 20:16:43 -08:00
bool enableFan2WithAc : 1 {};
/**
2021-06-28 05:55:05 -07:00
* Inhibit operation of this fan while the engine is not running.
2022-04-29 16:48:53 -07:00
offset 140 bit 6 */
2021-11-19 20:16:43 -08:00
bool disableFan1WhenStopped : 1 {};
/**
2021-06-28 05:55:05 -07:00
* Inhibit operation of this fan while the engine is not running.
2022-04-29 16:48:53 -07:00
offset 140 bit 7 */
2021-11-19 20:16:43 -08:00
bool disableFan2WhenStopped : 1 {};
/**
2021-07-09 05:40:06 -07:00
* Enable secondary spark outputs that fire after the primary (rotaries, twin plug engines).
2022-04-29 16:48:53 -07:00
offset 140 bit 8 */
2021-11-19 20:16:43 -08:00
bool enableTrailingSparks : 1 {};
/**
* enable cj125verbose/disable cj125verbose
2022-04-29 16:48:53 -07:00
offset 140 bit 9 */
2021-11-19 20:16:43 -08:00
bool isCJ125Verbose : 1 {};
/**
* Is your UA CJ125 output wired to MCU via resistor divider? Ua can go over 3.3v but only at lambda >3, i.e very lean AFR above 44.1
* When exposed to free air and 17x gain, Ua will be 4.17 volt
2022-04-29 16:48:53 -07:00
offset 140 bit 10 */
2021-11-19 20:16:43 -08:00
bool cj125isUaDivided : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 11 */
2021-11-19 20:16:43 -08:00
bool cj125isLsu49 : 1 {};
/**
* TLE7209 uses two-wire mode. TLE9201 and VNH2SP30 do NOT use two wire mode.
2022-04-29 16:48:53 -07:00
offset 140 bit 12 */
2021-11-19 20:16:43 -08:00
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.
2022-04-29 16:48:53 -07:00
offset 140 bit 13 */
2021-11-19 20:16:43 -08:00
bool isDoubleSolenoidIdle : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 14 */
2022-02-06 16:04:39 -08:00
bool useEeprom : 1 {};
/**
* Is your UR CJ125 output wired to MCU via resistor divider?
* Looks like 3v range should be enough, divider generally not needed.
2022-04-29 16:48:53 -07:00
offset 140 bit 15 */
2021-11-19 20:16:43 -08:00
bool cj125isUrDivided : 1 {};
/**
* Switch between Industrial and Cic PID implementation
2022-04-29 16:48:53 -07:00
offset 140 bit 16 */
2021-11-19 20:16:43 -08:00
bool useCicPidForIdle : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 17 */
2021-11-19 20:16:43 -08:00
bool useTLE8888_cranking_hack : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 18 */
2021-11-19 20:16:43 -08:00
bool useInstantRpmForIdle : 1 {};
/**
2021-10-06 09:18:32 -07:00
* This uses separate ignition timing and VE tables not only for idle conditions, also during the postcranking-to-idle taper transition (See also afterCrankingIACtaperDuration).
2022-04-29 16:48:53 -07:00
offset 140 bit 19 */
2021-11-19 20:16:43 -08:00
bool useSeparateIdleTablesForCrankingTaper : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 20 */
2021-11-19 20:16:43 -08:00
bool launchControlEnabled : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 21 */
2021-11-19 20:16:43 -08:00
bool rollingLaunchEnabled : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 22 */
2021-11-19 20:16:43 -08:00
bool antiLagEnabled : 1 {};
/**
2021-05-21 12:28:41 -07:00
* For cranking either use the specified fixed base fuel mass, or use the normal running math (VE table).
2022-04-29 16:48:53 -07:00
offset 140 bit 23 */
2021-11-19 20:16:43 -08:00
bool useRunningMathForCranking : 1 {};
/**
2021-04-04 17:01:45 -07:00
* Shall we display real life signal or just the part consumed by trigger decoder.
2021-10-24 13:06:18 -07:00
* Applies to both trigger and cam/vvt input.
*
2021-04-07 13:46:09 -07:00
* enable logic_level_trigger
2022-04-29 16:48:53 -07:00
offset 140 bit 24 */
2021-11-19 20:16:43 -08:00
bool displayLogicLevelsInEngineSniffer : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 25 */
2021-11-19 20:16:43 -08:00
bool useTLE8888_stepper : 1 {};
/**
* If enabled, the MAP estimate table will be used if the MAP sensor fails to estimate manifold pressure based on RPM and TPS.
2022-04-29 16:48:53 -07:00
offset 140 bit 26 */
2021-11-19 20:16:43 -08:00
bool enableMapEstimationTableFallback : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 27 */
2021-11-19 20:16:43 -08:00
bool usescriptTableForCanSniffingFiltering : 1 {};
/**
2022-02-10 07:29:24 -08:00
* Print incoming and outgoing first bus CAN messages in rusEFI console
2022-04-29 16:48:53 -07:00
offset 140 bit 28 */
2021-12-06 18:38:31 -08:00
bool verboseCan : 1 {};
/**
2021-11-03 14:10:50 -07:00
* Experimental setting that will cause a misfire
2021-11-06 06:26:06 -07:00
* DO NOT ENABLE.
2022-04-29 16:48:53 -07:00
offset 140 bit 29 */
2021-11-19 20:16:43 -08:00
bool artificialTestMisfire : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 30 */
2021-11-19 20:16:43 -08:00
bool issue_294_31 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 140 bit 31 */
bool unusedBit_47_31 : 1 {};
/**
* Closed throttle, 1 volt = 200 units.
* See also tps1_1AdcChannel
* set tps_min X
2021-04-26 14:59:44 -07:00
ADC
2022-04-29 16:48:53 -07:00
* offset 144
*/
int16_t tpsMin;
/**
* Full throttle.
* See also tps1_1AdcChannel
* set tps_max X
2021-04-26 14:59:44 -07:00
ADC
2022-04-29 16:48:53 -07:00
* offset 146
*/
int16_t tpsMax;
/**
* TPS error detection: what throttle % is unrealistically low?
* Also used for accelerator pedal error detection if so equiped.
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 148
*/
int16_t tpsErrorDetectionTooLow;
/**
* TPS error detection: what throttle % is unrealistically high?
* Also used for accelerator pedal error detection if so equiped.
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 150
*/
int16_t tpsErrorDetectionTooHigh;
/**
2022-04-29 16:48:53 -07:00
* offset 152
*/
cranking_parameters_s cranking;
/**
2021-06-13 05:01:23 -07:00
* Dwell duration while cranking
2021-04-26 14:59:44 -07:00
ms
2022-04-29 16:48:53 -07:00
* offset 160
*/
float ignitionDwellForCrankingMs;
/**
2021-06-16 05:54:10 -07:00
* Once engine speed passes this value, start reducing ETB angle.
2021-06-16 14:09:18 -07:00
rpm
2022-04-29 16:48:53 -07:00
* offset 164
*/
2021-06-16 05:54:10 -07:00
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.
2021-06-16 14:09:18 -07:00
rpm
2022-04-29 16:48:53 -07:00
* offset 166
2021-06-16 05:54:10 -07:00
*/
uint16_t etbRevLimitRange;
/**
* @see isMapAveragingEnabled
2022-04-29 16:48:53 -07:00
* offset 168
*/
MAP_sensor_config_s map;
/**
* todo: merge with channel settings, use full-scale Thermistor here!
2022-04-29 16:48:53 -07:00
* offset 312
*/
ThermistorConf clt;
/**
2022-04-29 16:48:53 -07:00
* offset 344
*/
ThermistorConf iat;
/**
2021-04-26 14:59:44 -07:00
deg
2022-04-29 16:48:53 -07:00
* offset 376
*/
int launchTimingRetard;
/**
* value '6' for 8MHz hw osc
* read hip9011 datasheet for details
* todo split into two bit fields
2021-04-26 14:59:44 -07:00
integer
2022-04-29 16:48:53 -07:00
* offset 380
*/
int hip9011PrescalerAndSDO;
/**
* We calculate knock band based of cylinderBore
* Use this to override - kHz knock band override
2021-04-26 14:59:44 -07:00
kHz
2022-04-29 16:48:53 -07:00
* offset 384
*/
float knockBandCustom;
/**
2022-04-29 16:48:53 -07:00
* offset 388
*/
specs_s specs;
/**
2021-11-03 14:10:50 -07:00
* Cylinder diameter in mm.
2021-04-26 14:59:44 -07:00
mm
2022-04-29 16:48:53 -07:00
* offset 400
*/
float cylinderBore;
/**
2021-06-17 08:41:07 -07:00
* This setting controls which fuel quantity control algorithm is used.
2021-11-03 14:10:50 -07:00
* 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.
2022-04-29 16:48:53 -07:00
* offset 404
*/
engine_load_mode_e fuelAlgorithm;
/**
* This is the injection strategy during engine start. See Fuel/Injection settings for more detail. It is suggested to use "Simultaneous".
2022-04-29 16:48:53 -07:00
* offset 408
*/
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. If your injectors are individually wired you will also need to enable "Two wire batch emulation".
* set injection_mode X
* See also twoWireBatchInjection
2022-04-29 16:48:53 -07:00
* offset 412
*/
injection_mode_e injectionMode;
/**
* this is about deciding when the injector starts it's squirt
* See also injectionPhase map
* todo: do we need even need this since we have the map anyway?
2021-04-26 14:59:44 -07:00
deg
2022-04-29 16:48:53 -07:00
* offset 416
*/
angle_t extraInjectionOffset;
/**
* Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines.
2021-05-23 11:03:56 -07:00
* There is tapering towards running timing advance
* set cranking_timing_angle X
2021-04-26 14:59:44 -07:00
deg
2022-04-29 16:48:53 -07:00
* offset 420
*/
angle_t crankingTimingAngle;
/**
2021-05-21 12:28:41 -07:00
* 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
2022-04-29 16:48:53 -07:00
* offset 424
*/
ignition_mode_e ignitionMode;
/**
2021-11-03 14:10:50 -07:00
* How many consecutive gap rations have to match expected ranges for sync to happen
2021-05-23 17:47:26 -07:00
count
2022-04-29 16:48:53 -07:00
* offset 428
*/
2021-05-23 17:47:26 -07:00
int8_t gapTrackingLengthOverride;
/**
2021-07-04 06:37:12 -07:00
* Above this speed, disable closed loop idle control. Set to 0 to disable (allow closed loop idle at any speed).
kph
2022-04-29 16:48:53 -07:00
* offset 429
2021-05-23 17:47:26 -07:00
*/
2021-07-04 06:37:12 -07:00
uint8_t maxIdleVss;
2021-06-16 14:31:59 -07:00
/**
* 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.
kPa
2022-04-29 16:48:53 -07:00
* offset 430
2021-06-16 14:31:59 -07:00
*/
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).
2022-04-29 16:48:53 -07:00
* offset 432
*/
timing_mode_e timingMode;
/**
* This value is the ignition timing used when in 'fixed timing' mode, i.e. constant timing
* This mode is useful when adjusting distributor location.
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 436
*/
angle_t fixedModeTiming;
/**
* Angle between Top Dead Center (TDC) and the first trigger event.
* Positive value in case of synchnization point before TDC and negative in case of synchnization point after TDC
* .Knowing this angle allows us to control timing and other angles in reference to TDC.
* set global_trigger_offset_angle X
2021-04-26 14:59:44 -07:00
deg btdc
2022-04-29 16:48:53 -07:00
* offset 440
*/
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.
2021-04-26 14:59:44 -07:00
coef
2022-04-29 16:48:53 -07:00
* offset 444
*/
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.
2021-04-26 14:59:44 -07:00
coef
2022-04-29 16:48:53 -07:00
* offset 448
*/
float vbattDividerCoeff;
/**
* Cooling fan turn-on temperature threshold, in Celsius
2021-06-11 03:27:21 -07:00
deg C
2022-04-29 16:48:53 -07:00
* offset 452
*/
float fanOnTemperature;
/**
* Cooling fan turn-off temperature threshold, in Celsius
2021-06-11 03:27:21 -07:00
deg C
2022-04-29 16:48:53 -07:00
* offset 456
*/
float fanOffTemperature;
/**
2021-11-27 06:01:08 -08:00
* 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.
revs/km
2022-04-29 16:48:53 -07:00
* offset 460
*/
2021-11-27 06:01:08 -08:00
float driveWheelRevPerKm;
/**
* set can_mode X
2022-04-29 16:48:53 -07:00
* offset 464
*/
can_nbc_e canNbcType;
/**
2021-11-03 14:10:50 -07:00
* CANbus thread period in ms
2021-04-26 14:59:44 -07:00
ms
2022-04-29 16:48:53 -07:00
* offset 468
*/
int canSleepPeriodMs;
/**
2022-04-29 16:48:53 -07:00
* offset 472
*/
display_mode_e displayMode;
/**
2021-04-26 14:59:44 -07:00
index
2022-04-29 16:48:53 -07:00
* offset 476
*/
int byFirmwareVersion;
/**
2021-04-26 14:59:44 -07:00
index
2022-04-29 16:48:53 -07:00
* offset 480
*/
int HD44780width;
/**
2021-04-26 14:59:44 -07:00
index
2022-04-29 16:48:53 -07:00
* offset 484
*/
int HD44780height;
/**
* First throttle body, first sensor. See also pedalPositionAdcChannel
2022-04-29 16:48:53 -07:00
* offset 488
*/
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.
2022-04-29 16:48:53 -07:00
* offset 489
*/
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.
2022-04-29 16:48:53 -07:00
* offset 490
*/
adc_channel_e fuelLevelSensor;
/**
* Second throttle body position sensor, single channel so far
* set_analog_input_pin tps2 X
2022-04-29 16:48:53 -07:00
* offset 491
*/
adc_channel_e tps2_1AdcChannel;
/**
* 0.1 is a good default value
2021-04-26 14:59:44 -07:00
x
2022-04-29 16:48:53 -07:00
* offset 492
*/
float idle_derivativeFilterLoss;
/**
2021-07-09 07:09:27 -07:00
* just a temporary solution
angle
2022-04-29 16:48:53 -07:00
* offset 496
*/
2021-07-09 07:09:27 -07:00
int trailingSparkAngle;
/**
2022-04-29 16:48:53 -07:00
* offset 500
*/
trigger_config_s trigger;
/**
2022-04-29 16:48:53 -07:00
* offset 516
*/
spi_device_e hip9011SpiDevice;
/**
2021-11-03 14:10:50 -07:00
* Single value to be used in event of a failed MAP sensor
* This value is only used for speed density fueling calculations.
2021-04-26 14:59:44 -07:00
kPa
2022-04-29 16:48:53 -07:00
* offset 517
*/
uint8_t failedMapFallback;
/**
2021-05-30 04:06:46 -07:00
* Duty cycle to use in case of a sensor failure. This duty cycle should produce the minimum possible amount of boost.
%
2022-04-29 16:48:53 -07:00
* offset 518
*/
2021-05-30 04:06:46 -07:00
uint8_t boostControlSafeDutyCycle;
/**
2022-04-29 16:48:53 -07:00
* offset 519
*/
adc_channel_e mafAdcChannel;
/**
* set global_fuel_correction X
2021-04-26 14:59:44 -07:00
coef
2022-04-29 16:48:53 -07:00
* offset 520
*/
float globalFuelCorrection;
/**
2021-04-26 14:59:44 -07:00
volts
2022-04-29 16:48:53 -07:00
* offset 524
*/
float adcVcc;
/**
2021-04-26 14:59:44 -07:00
Deg
2022-04-29 16:48:53 -07:00
* offset 528
*/
2021-11-24 18:45:07 -08:00
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.
2022-04-29 16:48:53 -07:00
* offset 532
*/
brain_input_pin_e camInputs[CAM_INPUTS_COUNT];
2021-02-18 15:20:11 -08:00
/**
2022-04-29 16:48:53 -07:00
* offset 540
2021-02-18 15:20:11 -08:00
*/
uint8_t camInputsPadding[CAM_INPUTS_COUNT_padding];
/**
2022-04-29 16:48:53 -07:00
* offset 540
*/
afr_sensor_s afr;
/**
* Electronic throttle pedal position first channel
* See throttlePedalPositionSecondAdcChannel for second channel
* See also tps1_1AdcChannel
* set_analog_input_pin pps X
* See throttlePedalUpVoltage and throttlePedalWOTVoltage
2022-04-29 16:48:53 -07:00
* offset 560
*/
adc_channel_e throttlePedalPositionAdcChannel;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 561
*/
uint8_t alignmentFill_at_561[1];
/**
* offset 562
*/
2022-04-28 15:06:22 -07:00
Gpio tle6240_cs;
/**
2022-04-29 16:48:53 -07:00
* offset 564
*/
pin_output_mode_e tle6240_csPinMode;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 565
*/
uint8_t alignmentFill_at_565[1];
/**
* Throttle Pedal not pressed switch - used on some older vehicles like early Mazda Miata
2022-04-29 16:48:53 -07:00
* offset 566
*/
switch_input_pin_e throttlePedalUpPin;
/**
* @see hasBaroSensor
2022-04-29 16:48:53 -07:00
* offset 568
*/
air_pressure_sensor_config_s baroSensor;
/**
2022-04-29 16:48:53 -07:00
* offset 584
*/
idle_hardware_s idle;
/**
2021-11-03 14:10:50 -07:00
* Value between 0 and 100 used in Manual mode
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 596
*/
float manIdlePosition;
/**
2021-10-22 13:03:15 -07:00
* Ignition timing to remove when a knock event occurs.
%
2022-04-29 16:48:53 -07:00
* offset 600
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint8_t, 10, 1> knockRetardAggression;
2021-10-22 13:03:15 -07:00
/**
* After a knock event, reapply timing at this rate.
deg/s
2022-04-29 16:48:53 -07:00
* offset 601
2021-10-22 13:03:15 -07:00
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint8_t, 10, 1> knockRetardReapplyRate;
2021-10-22 13:03:15 -07:00
/**
* Maximum amount of knock retard.
deg
2022-04-29 16:48:53 -07:00
* offset 602
2021-10-22 13:03:15 -07:00
*/
uint8_t knockRetardMaximum;
/**
2022-04-09 06:32:30 -07:00
* Set this so your vehicle speed signal is responsive, but not noisy. Larger value give smoother but slower response.
2022-04-29 16:48:53 -07:00
* offset 603
2021-10-22 13:03:15 -07:00
*/
2022-04-09 06:32:30 -07:00
uint8_t vssFilterReciprocal;
/**
2021-11-27 06:01:08 -08:00
* 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.
ratio
2022-04-29 16:48:53 -07:00
* offset 604
*/
2021-11-27 06:01:08 -08:00
scaled_channel<uint16_t, 1000, 1> vssGearRatio;
/**
* 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.
count
2022-04-29 16:48:53 -07:00
* offset 606
2021-11-27 06:01:08 -08:00
*/
uint8_t vssToothCount;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 607
*/
uint8_t alignmentFill_at_607[1];
/**
* offset 608
2021-11-27 06:01:08 -08:00
*/
2022-04-28 15:06:22 -07:00
Gpio l9779_cs;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 610
*/
uint8_t alignmentFill_at_610[2];
/**
* Same RPM is used for two ways of producing simulated RPM. See also triggerSimulatorPins (with wires)
* See also directSelfStimulation (no wires, bypassing input hardware)
* rpm X
* TODO: rename to triggerSimulatorRpm
2021-04-26 14:59:44 -07:00
Rpm
2022-04-29 16:48:53 -07:00
* offset 612
*/
int triggerSimulatorFrequency;
/**
2022-04-29 16:48:53 -07:00
* offset 616
*/
2021-07-06 17:57:01 -07:00
output_pin_e injectionPins[MAX_CYLINDER_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 640
*/
2021-07-06 17:57:01 -07:00
output_pin_e ignitionPins[MAX_CYLINDER_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 664
*/
pin_output_mode_e injectionPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 665
*/
2022-04-24 20:46:16 -07:00
pin_output_mode_e ignitionPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 666
*/
2022-04-28 15:06:22 -07:00
Gpio HD44780_rs;
/**
2022-04-29 16:48:53 -07:00
* offset 668
*/
2022-04-28 15:06:22 -07:00
Gpio HD44780_e;
2022-04-24 20:46:16 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 670
2022-04-24 20:46:16 -07:00
*/
2022-04-28 15:06:22 -07:00
Gpio HD44780_db4;
/**
2022-04-29 16:48:53 -07:00
* offset 672
2022-04-24 20:46:16 -07:00
*/
2022-04-28 15:06:22 -07:00
Gpio HD44780_db5;
2022-04-24 20:46:16 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 674
2022-04-24 20:46:16 -07:00
*/
2022-04-28 15:06:22 -07:00
Gpio HD44780_db6;
2022-04-24 20:46:16 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 676
*/
2022-04-28 15:06:22 -07:00
Gpio HD44780_db7;
/**
2022-04-29 16:48:53 -07:00
* offset 678
*/
2022-04-28 15:06:22 -07:00
Gpio gps_rx_pin;
/**
2022-04-29 16:48:53 -07:00
* offset 680
*/
2022-04-28 15:06:22 -07:00
Gpio gps_tx_pin;
/**
2022-04-29 16:48:53 -07:00
* offset 682
*/
output_pin_e fuelPumpPin;
/**
2022-04-29 16:48:53 -07:00
* offset 684
*/
pin_output_mode_e fuelPumpPinMode;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 685
*/
uint8_t alignmentFill_at_685[1];
/**
* Check engine light, also malfunction indicator light. Always blinks once on boot.
2022-04-29 16:48:53 -07:00
* offset 686
*/
output_pin_e malfunctionIndicatorPin;
/**
2022-04-29 16:48:53 -07:00
* offset 688
*/
pin_output_mode_e malfunctionIndicatorPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 689
*/
pin_output_mode_e fanPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 690
*/
output_pin_e fanPin;
/**
2021-07-24 10:28:25 -07:00
* Some cars have a switch to indicate that clutch pedal is all the way down
2022-04-29 16:48:53 -07:00
* offset 692
*/
switch_input_pin_e clutchDownPin;
/**
2022-04-29 16:48:53 -07:00
* offset 694
*/
output_pin_e alternatorControlPin;
/**
2022-04-29 16:48:53 -07:00
* offset 696
*/
pin_output_mode_e alternatorControlPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 697
*/
pin_input_mode_e clutchDownPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 698
*/
2022-04-28 15:06:22 -07:00
Gpio digitalPotentiometerChipSelect[DIGIPOT_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 706
*/
pin_output_mode_e electronicThrottlePin1Mode;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 707
*/
uint8_t alignmentFill_at_707[1];
/**
* set_cj125_heater_pin XXX
2022-04-29 16:48:53 -07:00
* offset 708
*/
2022-04-28 15:06:22 -07:00
Gpio wboHeaterPin;
/**
* set_cj125_cs_pin XXX
2022-04-29 16:48:53 -07:00
* offset 710
*/
2022-04-28 15:06:22 -07:00
Gpio cj125CsPin;
/**
2022-04-29 16:48:53 -07:00
* offset 712
*/
spi_device_e max31855spiDevice;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 713
*/
uint8_t alignmentFill_at_713[1];
/**
* offset 714
*/
2022-04-28 15:06:22 -07:00
Gpio debugTriggerSync;
/**
* Digital Potentiometer is used by stock ECU stimulation code
2022-04-29 16:48:53 -07:00
* offset 716
*/
spi_device_e digitalPotentiometerSpiDevice;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 717
*/
uint8_t alignmentFill_at_717[1];
/**
* offset 718
*/
2022-04-28 15:06:22 -07:00
Gpio mc33972_cs;
/**
2022-04-29 16:48:53 -07:00
* offset 720
*/
pin_output_mode_e mc33972_csPinMode;
/**
* Useful in Research&Development phase
2022-04-29 16:48:53 -07:00
* offset 721
*/
adc_channel_e auxFastSensor1_adcChannel;
/**
* First throttle body, second sensor.
2022-04-29 16:48:53 -07:00
* offset 722
*/
adc_channel_e tps1_2AdcChannel;
/**
* Second throttle body, second sensor.
2022-04-29 16:48:53 -07:00
* offset 723
*/
adc_channel_e tps2_2AdcChannel;
/**
* Electronic throttle pedal position input
* Second channel
* See also tps1_1AdcChannel
* See throttlePedalSecondaryUpVoltage and throttlePedalSecondaryWOTVoltage
2022-04-29 16:48:53 -07:00
* offset 724
*/
adc_channel_e throttlePedalPositionSecondAdcChannel;
/**
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 725
*/
2021-03-19 05:41:10 -07:00
uint8_t fuelLevelValues[FUEL_LEVEL_TABLE_COUNT];
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 733
*/
uint8_t alignmentFill_at_733[3];
/**
* AFR, WBO, EGO - whatever you like to call it
2022-04-29 16:48:53 -07:00
* offset 736
*/
ego_sensor_e afr_type;
/**
* 0.1 is a good default value
2021-04-26 14:59:44 -07:00
x
2022-04-29 16:48:53 -07:00
* offset 740
*/
float idle_antiwindupFreq;
/**
2022-04-29 16:48:53 -07:00
* offset 744
*/
brain_input_pin_e triggerInputPins[TRIGGER_INPUT_PIN_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 750
*/
pin_output_mode_e hip9011CsPinMode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 751
*/
uint8_t alignmentFill_at_751[1];
/**
* offset 752
*/
output_pin_e tachOutputPin;
/**
2022-04-29 16:48:53 -07:00
* offset 754
*/
pin_output_mode_e tachOutputPinMode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 755
*/
uint8_t alignmentFill_at_755[1];
/**
* offset 756
*/
output_pin_e mainRelayPin;
/**
2022-04-29 16:48:53 -07:00
* offset 758
*/
2022-04-28 15:06:22 -07:00
Gpio sdCardCsPin;
/**
* set_can_tx_pin X
2022-04-29 16:48:53 -07:00
* offset 760
*/
2022-04-28 15:06:22 -07:00
Gpio canTxPin;
/**
* set_can_rx_pin X
2022-04-29 16:48:53 -07:00
* offset 762
*/
2022-04-28 15:06:22 -07:00
Gpio canRxPin;
/**
2022-04-29 16:48:53 -07:00
* offset 764
*/
pin_input_mode_e throttlePedalUpPinMode;
/**
2021-05-31 15:02:57 -07:00
* Additional idle % while A/C is active
%
2022-04-29 16:48:53 -07:00
* offset 765
*/
uint8_t acIdleExtraOffset;
/**
2022-04-06 13:22:52 -07:00
* Ratio between the wheels and your transmission output.
2022-01-13 19:39:21 -08:00
ratio
2022-04-29 16:48:53 -07:00
* offset 766
*/
2022-04-06 13:22:52 -07:00
scaled_channel<uint16_t, 100, 1> finalGearRatio;
2022-01-13 19:39:21 -08:00
/**
2022-04-29 16:48:53 -07:00
* offset 768
2022-01-13 19:39:21 -08:00
*/
2022-04-21 06:14:29 -07:00
brain_input_pin_e tcuInputSpeedSensorPin;
/**
2022-04-29 16:48:53 -07:00
* offset 770
2022-04-21 06:14:29 -07:00
*/
uint8_t tcuInputSpeedSensorTeeth;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 771
*/
uint8_t alignmentFill_at_771[1];
/**
* Voltage when the wastegate is closed.
* You probably don't have one of these!
2021-04-26 14:59:44 -07:00
mv
2022-04-29 16:48:53 -07:00
* offset 772
*/
uint16_t wastegatePositionMin;
/**
* Voltage when the wastegate is fully open.
* You probably don't have one of these!
* 1 volt = 1000 units
2021-04-26 14:59:44 -07:00
mv
2022-04-29 16:48:53 -07:00
* offset 774
*/
uint16_t wastegatePositionMax;
/**
* Voltage when the idle valve is closed.
* You probably don't have one of these!
2021-04-26 14:59:44 -07:00
mv
2022-04-29 16:48:53 -07:00
* offset 776
*/
uint16_t idlePositionMin;
/**
* Voltage when the idle valve is open.
* You probably don't have one of these!
* 1 volt = 1000 units
2021-04-26 14:59:44 -07:00
mv
2022-04-29 16:48:53 -07:00
* offset 778
*/
uint16_t idlePositionMax;
/**
* Secondary TTL channel baud rate
2021-04-26 14:59:44 -07:00
BPs
2022-04-29 16:48:53 -07:00
* offset 780
*/
uint32_t tunerStudioSerialSpeed;
/**
* Just for reference really, not taken into account by any logic at this point
2021-04-26 14:59:44 -07:00
CR
2022-04-29 16:48:53 -07:00
* offset 784
*/
float compressionRatio;
/**
2022-04-23 18:03:14 -07:00
* 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.
2022-04-29 16:48:53 -07:00
* offset 788
*/
2022-04-28 15:06:22 -07:00
Gpio triggerSimulatorPins[TRIGGER_SIMULATOR_PIN_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 794
*/
pin_output_mode_e triggerSimulatorPinModes[TRIGGER_SIMULATOR_PIN_COUNT];
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 797
*/
uint8_t alignmentFill_at_797[1];
/**
2021-02-18 15:20:11 -08:00
* Narrow band o2 heater, not used for CJ125. 'ON' if engine is running, 'OFF' if stopped or cranking. See wboHeaterPin
2022-04-29 16:48:53 -07:00
* offset 798
*/
output_pin_e o2heaterPin;
/**
2022-04-29 16:48:53 -07:00
* offset 800
*/
pin_output_mode_e o2heaterPinModeTodO;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 801
*/
uint8_t alignmentFill_at_801[3];
/**
offset 804 bit 0 */
2021-11-19 20:16:43 -08:00
bool is_enabled_spi_1 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 1 */
2021-11-19 20:16:43 -08:00
bool is_enabled_spi_2 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 2 */
2021-11-19 20:16:43 -08:00
bool is_enabled_spi_3 : 1 {};
/**
* enable sd/disable sd
2022-04-29 16:48:53 -07:00
offset 804 bit 3 */
2021-11-19 20:16:43 -08:00
bool isSdCardEnabled : 1 {};
/**
2021-11-28 12:32:19 -08:00
* Use 11 bit (standard) or 29 bit (extended) IDs for rusEFI verbose CAN format.
2022-04-29 16:48:53 -07:00
offset 804 bit 4 */
2021-11-28 12:32:19 -08:00
bool rusefiVerbose29b : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 5 */
2021-11-19 20:16:43 -08:00
bool isEngineControlEnabled : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 6 */
2021-11-19 20:16:43 -08:00
bool isHip9011Enabled : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 7 */
2021-11-19 20:16:43 -08:00
bool isVerboseAlternator : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 8 */
2021-11-19 20:16:43 -08:00
bool useSerialPort : 1 {};
/**
* This setting should only be used if you have a stepper motor idle valve and a stepper motor driver installed.
2022-04-29 16:48:53 -07:00
offset 804 bit 9 */
2021-11-19 20:16:43 -08:00
bool useStepperIdle : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 10 */
2021-11-19 20:16:43 -08:00
bool enabledStep1Limiter : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 11 */
2021-11-19 20:16:43 -08:00
bool useTpicAdvancedMode : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 12 */
2021-11-19 20:16:43 -08:00
bool useLcdScreen : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 13 */
2021-11-19 20:16:43 -08:00
bool verboseTLE8888 : 1 {};
/**
* CAN broadcast using custom rusEFI protocol
* enable can_broadcast/disable can_broadcast
2022-04-29 16:48:53 -07:00
offset 804 bit 14 */
2021-11-19 20:16:43 -08:00
bool enableVerboseCanTx : 1 {};
/**
* This will cause the alternator to be operated in a basic on or off mode, this is the simplest alternator control.
2022-04-29 16:48:53 -07:00
offset 804 bit 15 */
2021-11-19 20:16:43 -08:00
bool onOffAlternatorLogic : 1 {};
/**
* enable cj125/disable cj125
2022-04-29 16:48:53 -07:00
offset 804 bit 16 */
2021-11-19 20:16:43 -08:00
bool isCJ125Enabled : 1 {};
/**
* Use rise or fall signal front
* get vvtCamSensorUseRise
2022-04-29 16:48:53 -07:00
offset 804 bit 17 */
2021-11-19 20:16:43 -08:00
bool vvtCamSensorUseRise : 1 {};
/**
* Useful for individual intakes
2022-04-29 16:48:53 -07:00
offset 804 bit 18 */
2021-11-19 20:16:43 -08:00
bool measureMapOnlyInOneCylinder : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 19 */
2021-11-19 20:16:43 -08:00
bool stepperForceParkingEveryRestart : 1 {};
/**
2021-05-31 01:21:59 -07:00
* 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.
2022-04-29 16:48:53 -07:00
offset 804 bit 20 */
2021-11-19 20:16:43 -08:00
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.
2022-04-29 16:48:53 -07:00
offset 804 bit 21 */
2021-11-19 20:16:43 -08:00
bool coastingFuelCutEnabled : 1 {};
/**
* This setting allows the ECU to open the IAC during overrun conditions to help reduce engine breaking, this can be helpful for large engines in light weight cars. Used in Auto-PID Idle mode.
2022-04-29 16:48:53 -07:00
offset 804 bit 22 */
2021-11-19 20:16:43 -08:00
bool useIacTableForCoasting : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 23 */
2021-11-19 20:16:43 -08:00
bool useNoiselessTriggerDecoder : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 24 */
2021-11-19 20:16:43 -08:00
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.
2022-04-29 16:48:53 -07:00
offset 804 bit 25 */
2021-11-19 20:16:43 -08:00
bool disableEtbWhenEngineStopped : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 26 */
2021-11-19 20:16:43 -08:00
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.
2022-04-29 16:48:53 -07:00
offset 804 bit 27 */
2021-11-19 20:16:43 -08:00
bool pauseEtbControl : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 28 */
2021-11-19 20:16:43 -08:00
bool alignEngineSnifferAtTDC : 1 {};
/**
* This setting allows the ETB to act as the idle air control valve and move to regulate the airflow at idle.
2022-04-29 16:48:53 -07:00
offset 804 bit 29 */
2021-11-19 20:16:43 -08:00
bool useETBforIdleControl : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 804 bit 30 */
2021-11-19 20:16:43 -08:00
bool idleIncrementalPidCic : 1 {};
/**
2021-05-26 11:21:01 -07:00
* AEM X-Series or rusEFI Wideband
2022-04-29 16:48:53 -07:00
offset 804 bit 31 */
2021-11-19 20:16:43 -08:00
bool enableAemXSeries : 1 {};
/**
2022-04-29 16:48:53 -07:00
* offset 808
*/
brain_input_pin_e logicAnalyzerPins[LOGIC_ANALYZER_CHANNEL_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 816
*/
pin_output_mode_e mainRelayPinMode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 817
*/
uint8_t alignmentFill_at_817[1];
/**
* offset 818
*/
2022-04-28 15:06:22 -07:00
Gpio hip9011CsPin;
/**
2022-04-29 16:48:53 -07:00
* offset 820
*/
2022-04-28 15:06:22 -07:00
Gpio hip9011IntHoldPin;
/**
2022-04-29 16:48:53 -07:00
* offset 822
*/
pin_output_mode_e hip9011IntHoldPinMode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 823
*/
uint8_t alignmentFill_at_823[1];
/**
* offset 824
*/
uint32_t verboseCanBaseAddress;
/**
2021-04-26 14:59:44 -07:00
v
2022-04-29 16:48:53 -07:00
* offset 828
*/
uint8_t mc33_hvolt;
/**
2021-08-27 15:03:24 -07:00
* Minimum MAP before closed loop boost is enabled. Use to prevent misbehavior upon entering boost.
kPa
2022-04-29 16:48:53 -07:00
* offset 829
*/
2021-08-27 15:03:24 -07:00
uint8_t minimumBoostClosedLoopMap;
/**
* Optional Radiator Fan used with A/C
2022-04-29 16:48:53 -07:00
* offset 830
*/
output_pin_e acFanPin;
/**
2022-04-29 16:48:53 -07:00
* offset 832
*/
pin_output_mode_e acFanPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 833
*/
2022-01-10 14:06:22 -08:00
spi_device_e l9779spiDevice;
2021-12-04 15:06:32 -08:00
/**
volts
2022-04-29 16:48:53 -07:00
* offset 834
2021-08-15 12:38:17 -07:00
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint8_t, 10, 1> dwellVoltageCorrVoltBins[DWELL_CURVE_SIZE];
2022-04-24 20:46:16 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 842
2022-04-24 21:01:07 -07:00
*/
imu_type_e imuType;
2021-08-15 12:38:17 -07:00
/**
2021-09-15 05:21:12 -07:00
multiplier
2022-04-29 16:48:53 -07:00
* offset 843
2022-04-24 21:01:07 -07:00
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint8_t, 50, 1> dwellVoltageCorrValues[DWELL_CURVE_SIZE];
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 851
*/
uint8_t alignmentFill_at_851[1];
2021-09-15 05:21:12 -07:00
/**
2021-12-19 22:09:38 -08:00
kg
2022-04-29 16:48:53 -07:00
* offset 852
2021-09-15 05:21:12 -07:00
*/
2021-12-19 22:09:38 -08:00
uint16_t vehicleWeight;
/**
2021-12-19 22:09:38 -08:00
* How far above idle speed do we consider idling?
* For example, if target = 800, this param = 200, then anything below 1000 RPM is considered idle.
RPM
2022-04-29 16:48:53 -07:00
* offset 854
*/
2021-12-19 22:09:38 -08:00
int16_t idlePidRpmUpperLimit;
/**
* Apply nonlinearity correction below a pulse of this duration. Pulses longer than this duration will receive no adjustment.
ms
2022-04-29 16:48:53 -07:00
* offset 856
2021-12-19 22:09:38 -08:00
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint16_t, 1000, 1> applyNonlinearBelowPulse;
2021-12-19 22:09:38 -08:00
/**
2022-04-29 16:48:53 -07:00
* offset 858
2021-12-19 22:09:38 -08:00
*/
2022-04-28 15:06:22 -07:00
Gpio lps25BaroSensorScl;
2021-12-19 22:09:38 -08:00
/**
2022-04-29 16:48:53 -07:00
* offset 860
2021-12-19 22:09:38 -08:00
*/
2022-04-28 15:06:22 -07:00
Gpio lps25BaroSensorSda;
2021-12-19 22:09:38 -08:00
/**
2022-04-29 16:48:53 -07:00
* offset 862
2021-12-19 22:09:38 -08:00
*/
brain_input_pin_e vehicleSpeedSensorInputPin;
/**
* Some vehicles have a switch to indicate that clutch pedal is all the way up
2022-04-29 16:48:53 -07:00
* offset 864
2021-12-19 22:09:38 -08:00
*/
switch_input_pin_e clutchUpPin;
/**
2022-04-29 16:48:53 -07:00
* offset 866
2021-12-19 22:09:38 -08:00
*/
InjectorNonlinearMode injectorNonlinearMode;
/**
2022-04-29 16:48:53 -07:00
* offset 867
2021-12-19 22:09:38 -08:00
*/
pin_input_mode_e clutchUpPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 868
2021-12-19 22:09:38 -08:00
*/
2022-04-28 15:06:22 -07:00
Gpio max31855_cs[EGT_CHANNEL_COUNT];
2021-12-19 22:09:38 -08:00
/**
* Continental/GM flex fuel sensor, 50-150hz type
2022-04-29 16:48:53 -07:00
* offset 884
2021-12-19 22:09:38 -08:00
*/
brain_input_pin_e flexSensorPin;
/**
2022-04-29 16:48:53 -07:00
* offset 886
2021-12-19 22:09:38 -08:00
*/
2022-04-28 15:06:22 -07:00
Gpio test557pin;
2021-12-19 22:09:38 -08:00
/**
2022-04-29 16:48:53 -07:00
* offset 888
2021-12-19 22:09:38 -08:00
*/
pin_output_mode_e stepperDirectionPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 889
2021-12-19 22:09:38 -08:00
*/
spi_device_e mc33972spiDevice;
/**
* Stoichiometric ratio for your secondary fuel. This value is used when the Flex Fuel sensor indicates E100, typically 9.0
:1
2022-04-29 16:48:53 -07:00
* offset 890
2021-12-19 22:09:38 -08:00
*/
scaled_channel<uint8_t, 10, 1> stoichRatioSecondary;
/**
* Maximum allowed ETB position. Some throttles go past fully open, so this allows you to limit it to fully open.
%
2022-04-29 16:48:53 -07:00
* offset 891
2021-12-19 22:09:38 -08:00
*/
uint8_t etbMaximumPosition;
/**
* SD card logging period, in milliseconds
2021-04-26 14:59:44 -07:00
ms
2022-04-29 16:48:53 -07:00
* offset 892
*/
int16_t sdCardPeriodMs;
/**
2022-04-29 16:48:53 -07:00
* offset 894
*/
adc_channel_e idlePositionSensor;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 895
*/
uint8_t alignmentFill_at_895[1];
/**
* offset 896
*/
2022-04-28 15:06:22 -07:00
Gpio debugMapAveraging;
/**
2022-04-29 16:48:53 -07:00
* offset 898
*/
output_pin_e starterRelayDisablePin;
/**
* On some vehicles we can disable starter once engine is already running
2022-04-29 16:48:53 -07:00
* offset 900
*/
pin_output_mode_e starterRelayDisablePinMode;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 901
*/
uint8_t alignmentFill_at_901[1];
/**
* Some Subaru and some Mazda use double-solenoid idle air valve
2022-04-29 16:48:53 -07:00
* offset 902
*/
output_pin_e secondSolenoidPin;
/**
* See also starterControlPin
2022-04-29 16:48:53 -07:00
* offset 904
*/
switch_input_pin_e startStopButtonPin;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 906
*/
uint8_t alignmentFill_at_906[2];
/**
2021-10-04 04:54:20 -07:00
* 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.
2021-04-26 14:59:44 -07:00
count
2022-04-29 16:48:53 -07:00
* offset 908
*/
int mapMinBufferLength;
/**
2021-12-07 16:32:18 -08:00
* 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%.
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 912
*/
int16_t idlePidDeactivationTpsThreshold;
/**
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 914
*/
int16_t stepperParkingExtraSteps;
/**
2021-04-26 14:59:44 -07:00
ADC
2022-04-29 16:48:53 -07:00
* offset 916
*/
uint16_t tps1SecondaryMin;
/**
2021-04-26 14:59:44 -07:00
ADC
2022-04-29 16:48:53 -07:00
* offset 918
*/
uint16_t tps1SecondaryMax;
/**
2021-04-26 14:59:44 -07:00
rpm
2022-04-29 16:48:53 -07:00
* offset 920
*/
int16_t antiLagRpmTreshold;
/**
2021-04-26 14:59:44 -07:00
* Maximum time to crank starter when start/stop button is pressed
Seconds
2022-04-29 16:48:53 -07:00
* offset 922
*/
uint16_t startCrankingDuration;
/**
* This pin is used for debugging - snap a logic analyzer on it and see if it's ever high
2022-04-29 16:48:53 -07:00
* offset 924
*/
2022-04-28 15:06:22 -07:00
Gpio triggerErrorPin;
/**
2022-04-29 16:48:53 -07:00
* offset 926
2022-04-24 20:46:16 -07:00
*/
pin_output_mode_e triggerErrorPinMode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 927
*/
uint8_t alignmentFill_at_927[1];
/**
* offset 928
2022-04-24 20:46:16 -07:00
*/
output_pin_e acRelayPin;
/**
2022-04-29 16:48:53 -07:00
* offset 930
*/
2022-04-24 20:46:16 -07:00
pin_output_mode_e acRelayPinMode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 931
*/
uint8_t alignmentFill_at_931[1];
/**
* offset 932
*/
2021-11-14 11:42:17 -08:00
script_setting_t scriptSetting[SCRIPT_SETTING_COUNT];
2021-08-15 12:38:17 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 964
*/
2022-04-28 15:06:22 -07:00
Gpio spi1mosiPin;
/**
2022-04-29 16:48:53 -07:00
* offset 966
*/
2022-04-28 15:06:22 -07:00
Gpio spi1misoPin;
/**
2022-04-29 16:48:53 -07:00
* offset 968
*/
2022-04-28 15:06:22 -07:00
Gpio spi1sckPin;
/**
2022-04-29 16:48:53 -07:00
* offset 970
*/
2022-04-28 15:06:22 -07:00
Gpio spi2mosiPin;
/**
2022-04-29 16:48:53 -07:00
* offset 972
*/
2022-04-28 15:06:22 -07:00
Gpio spi2misoPin;
/**
2022-04-29 16:48:53 -07:00
* offset 974
*/
2022-04-28 15:06:22 -07:00
Gpio spi2sckPin;
/**
2022-04-29 16:48:53 -07:00
* offset 976
*/
2022-04-28 15:06:22 -07:00
Gpio spi3mosiPin;
/**
2022-04-29 16:48:53 -07:00
* offset 978
*/
2022-04-28 15:06:22 -07:00
Gpio spi3misoPin;
/**
2022-04-29 16:48:53 -07:00
* offset 980
*/
2022-04-28 15:06:22 -07:00
Gpio spi3sckPin;
/**
* Saab Combustion Detection Module knock signal input pin
* also known as Saab Ion Sensing Module
2022-04-29 16:48:53 -07:00
* offset 982
*/
2022-04-28 15:06:22 -07:00
Gpio cdmInputPin;
/**
2022-04-29 16:48:53 -07:00
* offset 984
*/
2022-04-28 15:06:22 -07:00
Gpio joystickCenterPin;
/**
2022-04-29 16:48:53 -07:00
* offset 986
*/
2022-04-28 15:06:22 -07:00
Gpio joystickAPin;
/**
2022-04-29 16:48:53 -07:00
* offset 988
*/
2022-04-28 15:06:22 -07:00
Gpio joystickBPin;
/**
2022-04-29 16:48:53 -07:00
* offset 990
*/
2022-04-28 15:06:22 -07:00
Gpio joystickCPin;
/**
2022-04-29 16:48:53 -07:00
* offset 992
*/
2022-04-28 15:06:22 -07:00
Gpio joystickDPin;
/**
2022-04-29 16:48:53 -07:00
* offset 994
*/
uart_device_e consoleUartDevice;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 995
*/
uint8_t alignmentFill_at_995[1];
/**
2022-04-23 18:03:14 -07:00
* rusEFI console Sensor Sniffer mode
2022-04-29 16:48:53 -07:00
* offset 996
*/
sensor_chart_e sensorChartMode;
/**
2022-04-29 16:48:53 -07:00
* offset 1000
*/
maf_sensor_type_e mafSensorType;
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 0 */
2021-11-19 20:16:43 -08:00
bool clutchUpPinInverted : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 1 */
2021-11-19 20:16:43 -08:00
bool clutchDownPinInverted : 1 {};
/**
* If enabled we use two H-bridges to drive stepper idle air valve
2022-04-29 16:48:53 -07:00
offset 1004 bit 2 */
2021-11-19 20:16:43 -08:00
bool useHbridgesToDriveIdleStepper : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 3 */
2021-11-19 20:16:43 -08:00
bool multisparkEnable : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 4 */
2021-11-19 20:16:43 -08:00
bool enableLaunchRetard : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 5 */
2021-11-19 20:16:43 -08:00
bool unfinishedenableLaunchBoost : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 6 */
2021-11-19 20:16:43 -08:00
bool unfinishedlaunchDisableBySpeed : 1 {};
/**
2021-08-09 13:12:40 -07:00
* Read VSS from OEM CAN bus according to selected CAN vehicle configuration.
2022-04-29 16:48:53 -07:00
offset 1004 bit 7 */
2021-11-19 20:16:43 -08:00
bool enableCanVss : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 8 */
2021-11-19 20:16:43 -08:00
bool enableInnovateLC2 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 9 */
2021-11-19 20:16:43 -08:00
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. Use of this mode is required if you have a narrowband O2 sensor.
2022-04-29 16:48:53 -07:00
offset 1004 bit 10 */
2021-11-19 20:16:43 -08:00
bool stftIgnoreErrorMagnitude : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 11 */
2022-01-18 21:56:03 -08:00
bool tempBooleanForVerySpecialCases : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 12 */
2021-11-19 20:16:43 -08:00
bool enableSoftwareKnock : 1 {};
/**
* enable vvt_details
2022-04-29 16:48:53 -07:00
offset 1004 bit 13 */
2021-11-19 20:16:43 -08:00
bool verboseVVTDecoding : 1 {};
/**
* get invertCamVVTSignal
2022-04-29 16:48:53 -07:00
offset 1004 bit 14 */
2021-11-19 20:16:43 -08:00
bool invertCamVVTSignal : 1 {};
/**
* This property is useful if using rusEFI as TCM or BCM only
* enable consumeObdSensors
2022-04-29 16:48:53 -07:00
offset 1004 bit 15 */
2021-11-19 20:16:43 -08:00
bool consumeObdSensors : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 16 */
2021-11-19 20:16:43 -08:00
bool knockBankCyl1 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 17 */
2021-11-19 20:16:43 -08:00
bool knockBankCyl2 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 18 */
2021-11-19 20:16:43 -08:00
bool knockBankCyl3 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 19 */
2021-11-19 20:16:43 -08:00
bool knockBankCyl4 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 20 */
2021-11-19 20:16:43 -08:00
bool knockBankCyl5 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 21 */
2021-11-19 20:16:43 -08:00
bool knockBankCyl6 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 22 */
2021-11-19 20:16:43 -08:00
bool knockBankCyl7 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 23 */
2021-11-19 20:16:43 -08:00
bool knockBankCyl8 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 24 */
2021-11-19 20:16:43 -08:00
bool knockBankCyl9 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 25 */
2021-11-19 20:16:43 -08:00
bool knockBankCyl10 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 26 */
2021-11-19 20:16:43 -08:00
bool knockBankCyl11 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 27 */
2021-11-19 20:16:43 -08:00
bool knockBankCyl12 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 28 */
2021-11-19 20:16:43 -08:00
bool tcuEnabled : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1004 bit 29 */
2021-12-22 08:08:59 -08:00
bool canBroadcastUseChannelTwo : 1 {};
/**
2022-01-06 17:00:00 -08:00
* If enabled we use four Push-Pull outputs to directly drive stepper idle air valve coilss
2022-04-29 16:48:53 -07:00
offset 1004 bit 30 */
2022-01-06 17:00:00 -08:00
bool useRawOutputToDriveIdleStepper : 1 {};
/**
2022-02-10 07:29:24 -08:00
* Print incoming and outgoing second bus CAN messages in rusEFI console
2022-04-29 16:48:53 -07:00
offset 1004 bit 31 */
2022-02-10 07:29:24 -08:00
bool verboseCan2 : 1 {};
/**
2022-04-29 16:48:53 -07:00
* offset 1008
*/
dc_io etbIo[ETB_COUNT];
/**
* Wastegate control Solenoid
2022-04-29 16:48:53 -07:00
* offset 1024
*/
output_pin_e boostControlPin;
/**
2022-04-29 16:48:53 -07:00
* offset 1026
*/
pin_output_mode_e boostControlPinMode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 1027
*/
uint8_t alignmentFill_at_1027[1];
/**
* offset 1028
*/
switch_input_pin_e antiLagActivatePin;
/**
2022-04-29 16:48:53 -07:00
* offset 1030
*/
switch_input_pin_e launchActivatePin;
/**
2022-04-29 16:48:53 -07:00
* offset 1032
*/
pid_s boostPid;
/**
2022-04-29 16:48:53 -07:00
* offset 1052
*/
boostType_e boostType;
/**
2021-04-26 14:59:44 -07:00
Hz
2022-04-29 16:48:53 -07:00
* offset 1056
*/
int boostPwmFrequency;
/**
2022-04-29 16:48:53 -07:00
* offset 1060
*/
launchActivationMode_e launchActivationMode;
/**
2022-04-29 16:48:53 -07:00
* offset 1064
*/
antiLagActivationMode_e antiLagActivationMode;
/**
* Disabled above this speed
2021-04-26 14:59:44 -07:00
Kph
2022-04-29 16:48:53 -07:00
* offset 1068
*/
2021-11-15 18:53:15 -08:00
int launchSpeedThreshold;
/**
* Range from Launch Rpm for Timing Retard to activate
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 1072
*/
int launchTimingRpmRange;
/**
* Extra Fuel Added
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 1076
*/
int launchFuelAdded;
/**
* Duty Cycle for the Boost Solenoid
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 1080
*/
int launchBoostDuty;
/**
* RPM Range for Hard Cut
2021-04-26 14:59:44 -07:00
rpm
2022-04-29 16:48:53 -07:00
* offset 1084
*/
int hardCutRpmRange;
/**
2021-04-26 14:59:44 -07:00
rpm
2022-04-29 16:48:53 -07:00
* offset 1088
*/
int launchAdvanceRpmRange;
/**
2021-04-26 14:59:44 -07:00
rpm
2022-04-29 16:48:53 -07:00
* offset 1092
*/
int launchTpsTreshold;
/**
2021-04-26 14:59:44 -07:00
rpm
2022-04-29 16:48:53 -07:00
* offset 1096
*/
float launchActivateDelay;
/**
2022-04-29 16:48:53 -07:00
* offset 1100
*/
stft_s stft;
/**
2022-04-29 16:48:53 -07:00
* offset 1124
*/
dc_io stepperDcIo[DC_PER_STEPPER];
/**
* For example, BMW, GM or Chevrolet
* REQUIRED for rusEFI Online
2022-04-29 16:48:53 -07:00
* offset 1140
*/
vehicle_info_t engineMake;
/**
* For example, LS1 or NB2
* REQUIRED for rusEFI Online
2022-04-29 16:48:53 -07:00
* offset 1172
*/
vehicle_info_t engineCode;
/**
* For example, Hunchback or Orange Miata
* Vehicle name has to be unique between your vehicles.
* REQUIRED for rusEFI Online
2022-04-29 16:48:53 -07:00
* offset 1204
*/
vehicle_info_t vehicleName;
/**
2022-04-29 16:48:53 -07:00
* offset 1236
*/
output_pin_e tcu_solenoid[TCU_SOLENOID_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 1248
*/
etb_function_e etbFunctions[ETB_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 1250
*/
spi_device_e drv8860spiDevice;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 1251
*/
uint8_t alignmentFill_at_1251[1];
/**
* offset 1252
*/
2022-04-28 15:06:22 -07:00
Gpio drv8860_cs;
/**
2022-04-29 16:48:53 -07:00
* offset 1254
*/
pin_output_mode_e drv8860_csPinMode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 1255
*/
uint8_t alignmentFill_at_1255[1];
/**
* offset 1256
*/
2022-04-28 15:06:22 -07:00
Gpio drv8860_miso;
/**
2021-04-26 14:59:44 -07:00
volt
2022-04-29 16:48:53 -07:00
* offset 1258
*/
2021-11-05 16:52:02 -07:00
scaled_channel<uint16_t, 1000, 1> fuelLevelBins[FUEL_LEVEL_TABLE_COUNT];
2021-03-19 05:41:10 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 1274
2021-03-19 05:41:10 -07:00
*/
2021-05-20 16:10:25 -07:00
output_pin_e luaOutputPins[LUA_PWM_COUNT];
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 1290
*/
uint8_t alignmentFill_at_1290[2];
2021-06-11 21:19:09 -07:00
/**
2021-07-03 08:33:11 -07:00
* Angle between cam sensor and VVT zero position
* set vvt_offset X
value
2022-04-29 16:48:53 -07:00
* offset 1292
2021-06-11 21:19:09 -07:00
*/
2021-07-03 08:33:11 -07:00
float vvtOffsets[CAM_INPUTS_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 1308
2021-07-03 08:33:11 -07:00
*/
float vvtOffsetsPadding[CAM_INPUTS_COUNT_padding];
/**
2022-04-29 16:48:53 -07:00
* offset 1308
2021-07-03 08:33:11 -07:00
*/
2021-09-13 08:19:35 -07:00
vr_threshold_s vrThreshold[VR_THRESHOLD_COUNT];
2021-07-28 04:49:04 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 1340
2021-07-28 04:49:04 -07:00
*/
2021-09-26 20:24:16 -07:00
gppwm_note_t gpPwmNote[GPPWM_CHANNELS];
/**
2021-04-26 14:59:44 -07:00
ADC
2022-04-29 16:48:53 -07:00
* offset 1404
*/
uint16_t tps2SecondaryMin;
/**
2021-04-26 14:59:44 -07:00
ADC
2022-04-29 16:48:53 -07:00
* offset 1406
*/
uint16_t tps2SecondaryMax;
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 0 */
2022-01-08 16:55:02 -08:00
bool disablePrimaryUart : 1 {};
/**
* Enables lambda sensor closed loop feedback for fuelling.
2022-04-29 16:48:53 -07:00
offset 1408 bit 1 */
2021-11-19 20:16:43 -08:00
bool fuelClosedLoopCorrectionEnabled : 1 {};
/**
2022-04-23 18:03:14 -07:00
* Print details into rusEFI console
* enable verbose_idle
2022-04-29 16:48:53 -07:00
offset 1408 bit 2 */
2021-11-19 20:16:43 -08:00
bool isVerboseIAC : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 3 */
2022-01-08 17:22:51 -08:00
bool boardUseTachPullUp : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 4 */
2022-01-08 17:22:51 -08:00
bool boardUseTempPullUp : 1 {};
/**
* This options enables data for 'engine sniffer' tab in console, which comes at some CPU price
2022-04-29 16:48:53 -07:00
offset 1408 bit 5 */
2021-11-19 20:16:43 -08:00
bool isEngineChartEnabled : 1 {};
/**
* Sometimes we have a performance issue while printing error
2022-04-29 16:48:53 -07:00
offset 1408 bit 6 */
2021-11-19 20:16:43 -08:00
bool silentTriggerError : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 7 */
2021-11-19 20:16:43 -08:00
bool useLinearCltSensor : 1 {};
/**
* enable can_read/disable can_read
2022-04-29 16:48:53 -07:00
offset 1408 bit 8 */
2021-11-19 20:16:43 -08:00
bool canReadEnabled : 1 {};
/**
* enable can_write/disable can_write
2022-04-29 16:48:53 -07:00
offset 1408 bit 9 */
2021-11-19 20:16:43 -08:00
bool canWriteEnabled : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 10 */
2021-11-19 20:16:43 -08:00
bool useLinearIatSensor : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 11 */
2022-03-12 07:09:42 -08:00
bool boardUse2stepPullDown : 1 {};
/**
2021-04-19 20:56:24 -07:00
* Treat milliseconds value as duty cycle value, i.e. 0.5ms would become 50%
2022-04-29 16:48:53 -07:00
offset 1408 bit 12 */
2021-11-19 20:16:43 -08:00
bool tachPulseDurationAsDutyCycle : 1 {};
/**
* This enables smart alternator control and activates the extra alternator settings.
2022-04-29 16:48:53 -07:00
offset 1408 bit 13 */
2021-11-19 20:16:43 -08:00
bool isAlternatorControlEnabled : 1 {};
/**
* This setting flips the signal from the primary engine speed sensor.
2022-04-29 16:48:53 -07:00
offset 1408 bit 14 */
2021-11-19 20:16:43 -08:00
bool invertPrimaryTriggerSignal : 1 {};
/**
* This setting flips the signal from the secondary engine speed sensor.
2022-04-29 16:48:53 -07:00
offset 1408 bit 15 */
2021-11-19 20:16:43 -08:00
bool invertSecondaryTriggerSignal : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 16 */
2021-11-19 20:16:43 -08:00
bool cutFuelOnHardLimit : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 17 */
2021-11-19 20:16:43 -08:00
bool cutSparkOnHardLimit : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 18 */
2021-11-19 20:16:43 -08:00
bool launchFuelCutEnable : 1 {};
/**
* This is the Cut Mode normally used
2022-04-29 16:48:53 -07:00
offset 1408 bit 19 */
2021-11-19 20:16:43 -08:00
bool launchSparkCutEnable : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 20 */
2022-01-08 17:22:51 -08:00
bool boardUseCrankPullUp : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 21 */
2022-03-12 07:09:42 -08:00
bool boardUseCamPullDown : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 22 */
2022-03-13 09:01:27 -07:00
bool boardUseCamVrPullUp : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 23 */
2022-04-03 06:37:31 -07:00
bool boardUseD2PullDown : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 24 */
2022-04-03 06:37:31 -07:00
bool boardUseD3PullDown : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 25 */
2022-04-03 06:37:31 -07:00
bool boardUseD4PullDown : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 26 */
2022-04-03 06:37:31 -07:00
bool boardUseD5PullDown : 1 {};
/**
* Sometimes we just have to shut the engine down. Use carefully!
2022-04-29 16:48:53 -07:00
offset 1408 bit 27 */
2021-11-19 20:16:43 -08:00
bool useFSIO5ForCriticalIssueEngineStop : 1 {};
/**
* Sometimes we have to miss injection on purpose to attract driver's attention
2022-04-29 16:48:53 -07:00
offset 1408 bit 28 */
2021-11-19 20:16:43 -08:00
bool useFSIO4ForSeriousEngineWarning : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 29 */
2022-04-19 17:09:40 -07:00
bool launchActivateInverted : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1408 bit 30 */
2022-04-02 19:32:37 -07:00
bool twoStroke : 1 {};
/**
2022-04-02 18:09:11 -07:00
* Where is your primary skipped wheel located?
2022-04-29 16:48:53 -07:00
offset 1408 bit 31 */
2022-04-02 18:09:11 -07:00
bool skippedWheelOnCam : 1 {};
/**
2022-04-29 16:48:53 -07:00
* offset 1412
*/
adc_channel_e hipOutputChannel;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 1413
*/
uint8_t alignmentFill_at_1413[1];
/**
2021-05-27 05:25:55 -07:00
* A/C button input
2022-04-29 16:48:53 -07:00
* offset 1414
*/
switch_input_pin_e acSwitch;
/**
2022-04-29 16:48:53 -07:00
* offset 1416
*/
adc_channel_e vRefAdcChannel;
/**
* Expected neutral position
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 1417
*/
uint8_t etbNeutralPosition;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 1418
*/
uint8_t alignmentFill_at_1418[2];
/**
* See also idleRpmPid
2022-04-29 16:48:53 -07:00
* offset 1420
*/
idle_mode_e idleMode;
/**
* Enable fuel injection - This is default off for new projects as a safety feature, set to "true" to enable fuel injection and further injector settings.
2022-04-29 16:48:53 -07:00
offset 1424 bit 0 */
2021-11-19 20:16:43 -08:00
bool isInjectionEnabled : 1 {};
/**
* Enable ignition - This is default off for new projects as a safety feature, set to "true" to enable ignition and further ignition settings.
2022-04-29 16:48:53 -07:00
offset 1424 bit 1 */
2021-11-19 20:16:43 -08:00
bool isIgnitionEnabled : 1 {};
/**
* When enabled if TPS is held above 95% no fuel is injected while cranking to clear excess fuel from the cylinders.
2022-04-29 16:48:53 -07:00
offset 1424 bit 2 */
2021-11-19 20:16:43 -08:00
bool isCylinderCleanupEnabled : 1 {};
/**
2022-01-27 22:04:57 -08:00
* Should we use tables to vary tau/beta based on CLT/MAP, or just with fixed values?
2022-04-29 16:48:53 -07:00
offset 1424 bit 3 */
2022-01-27 22:04:57 -08:00
bool complexWallModel : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 4 */
2022-01-19 04:39:51 -08:00
bool alwaysInstantRpm : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 5 */
2021-11-19 20:16:43 -08:00
bool isMapAveragingEnabled : 1 {};
/**
2021-05-31 01:21:59 -07:00
* If enabled, use separate temperature multiplier table for cranking idle position.
* If disabled, use normal running multiplier table applied to the cranking base position.
2022-04-29 16:48:53 -07:00
offset 1424 bit 6 */
2021-11-19 20:16:43 -08:00
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 retard at low idle speeds will prevent stalling and extra advance at high idle speeds can help reduce engine power and slow the idle speed.
2022-04-29 16:48:53 -07:00
offset 1424 bit 7 */
2021-11-19 20:16:43 -08:00
bool useSeparateAdvanceForIdle : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 8 */
2021-11-19 20:16:43 -08:00
bool isWaveAnalyzerEnabled : 1 {};
/**
* This activates a separate fuel table for Idle, this allows fine tuning of the idle fuelling.
2022-04-29 16:48:53 -07:00
offset 1424 bit 9 */
2021-11-19 20:16:43 -08:00
bool useSeparateVeForIdle : 1 {};
/**
* enable trigger_details
2022-04-29 16:48:53 -07:00
offset 1424 bit 10 */
2021-11-19 20:16:43 -08:00
bool verboseTriggerSynchDetails : 1 {};
/**
* Usually if we have no trigger events that means engine is stopped
* Unless we are troubleshooting and spinning the engine by hand - this case a longer
* delay is needed
2022-04-29 16:48:53 -07:00
offset 1424 bit 11 */
2021-11-19 20:16:43 -08:00
bool isManualSpinningMode : 1 {};
/**
* This is needed if your coils are individually wired and you wish to use batch injection.
* enable two_wire_batch_injection
2022-04-29 16:48:53 -07:00
offset 1424 bit 12 */
2021-11-19 20:16:43 -08:00
bool twoWireBatchInjection : 1 {};
/**
* VR sensors are only precise on rising front
* enable trigger_only_front
2022-04-29 16:48:53 -07:00
offset 1424 bit 13 */
2021-11-19 20:16:43 -08:00
bool useOnlyRisingEdgeForTrigger : 1 {};
/**
* This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark).
2022-04-29 16:48:53 -07:00
offset 1424 bit 14 */
2021-11-19 20:16:43 -08:00
bool twoWireBatchIgnition : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 15 */
2021-11-19 20:16:43 -08:00
bool useFixedBaroCorrFromMap : 1 {};
/**
2021-05-31 01:21:59 -07:00
* In Constant mode, timing is automatically tapered to running as RPM increases.
* In Table mode, the "Cranking ignition advance" table is used directly.
2022-04-29 16:48:53 -07:00
offset 1424 bit 16 */
2021-11-19 20:16:43 -08:00
bool useSeparateAdvanceForCranking : 1 {};
/**
* This enables the various ignition corrections during cranking (IAT, CLT, FSIO and PID idle).
2021-05-31 01:21:59 -07:00
* You probably don't need this.
2022-04-29 16:48:53 -07:00
offset 1424 bit 17 */
2021-11-19 20:16:43 -08:00
bool useAdvanceCorrectionsForCranking : 1 {};
/**
2022-04-04 14:49:00 -07:00
* Enable a second cranking table to use for E100 flex fuel, interpolating between the two based on flex fuel sensor.
2022-04-29 16:48:53 -07:00
offset 1424 bit 18 */
2022-04-04 14:49:00 -07:00
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
2022-04-29 16:48:53 -07:00
offset 1424 bit 19 */
2021-11-19 20:16:43 -08:00
bool useIacPidMultTable : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 20 */
2021-11-19 20:16:43 -08:00
bool isBoostControlEnabled : 1 {};
/**
* Interpolates the Ignition Retard from 0 to 100% within the RPM Range
2022-04-29 16:48:53 -07:00
offset 1424 bit 21 */
2021-11-19 20:16:43 -08:00
bool launchSmoothRetard : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 22 */
bool unused1476b20 : 1 {};
/**
offset 1424 bit 23 */
bool unused1476b8 : 1 {};
/**
offset 1424 bit 24 */
2021-11-19 20:16:43 -08:00
bool unused_1484_bit_24 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 25 */
2021-11-19 20:16:43 -08:00
bool unused_1484_bit_25 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 26 */
2021-11-19 20:16:43 -08:00
bool unused_1484_bit_26 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 27 */
2021-11-19 20:16:43 -08:00
bool unused_1484_bit_27 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 28 */
2021-11-19 20:16:43 -08:00
bool unused_1484_bit_28 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 29 */
2021-11-19 20:16:43 -08:00
bool unused_1484_bit_29 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 30 */
2021-11-19 20:16:43 -08:00
bool unused_1484_bit_30 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1424 bit 31 */
2021-11-19 20:16:43 -08:00
bool unused_1484_bit_31 : 1 {};
/**
2021-04-26 14:59:44 -07:00
count
2022-04-29 16:48:53 -07:00
* offset 1428
*/
uint32_t engineChartSize;
/**
2021-07-27 14:37:24 -07:00
mult
2022-04-29 16:48:53 -07:00
* offset 1432
*/
2021-07-27 14:37:24 -07:00
float turboSpeedSensorMultiplier;
/**
2022-04-29 16:48:53 -07:00
* offset 1436
*/
2022-04-28 15:06:22 -07:00
Gpio camInputsDebug[CAM_INPUTS_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 1444
*/
2021-07-13 11:37:37 -07:00
uint8_t camInputsDebugPadding[CAM_INPUTS_COUNT_padding];
/**
2021-06-15 14:32:56 -07:00
* Extra idle target speed when A/C is enabled. Some cars need the extra speed to keep the AC efficient while idling.
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 1444
*/
int16_t acIdleRpmBump;
/**
* set warningPeriod X
2021-04-26 14:59:44 -07:00
seconds
2022-04-29 16:48:53 -07:00
* offset 1446
*/
int16_t warningPeriod;
/**
2021-04-26 14:59:44 -07:00
angle
2022-04-29 16:48:53 -07:00
* offset 1448
*/
float knockDetectionWindowStart;
/**
2021-04-26 14:59:44 -07:00
angle
2022-04-29 16:48:53 -07:00
* offset 1452
*/
float knockDetectionWindowEnd;
/**
2021-04-26 14:59:44 -07:00
ms
2022-04-29 16:48:53 -07:00
* offset 1456
*/
float idleStepperReactionTime;
/**
2021-04-26 14:59:44 -07:00
count
2022-04-29 16:48:53 -07:00
* offset 1460
*/
int idleStepperTotalSteps;
/**
* TODO: finish this #413
2021-04-26 14:59:44 -07:00
sec
2022-04-29 16:48:53 -07:00
* offset 1464
*/
float noAccelAfterHardLimitPeriodSecs;
/**
* At what trigger index should some MAP-related math be executed? This is a performance trick to reduce load on synchronization trigger callback.
2021-04-26 14:59:44 -07:00
index
2022-04-29 16:48:53 -07:00
* offset 1468
*/
int mapAveragingSchedulingAtIndex;
/**
2021-04-26 14:59:44 -07:00
kPa
2022-04-29 16:48:53 -07:00
* offset 1472
*/
float baroCorrPressureBins[BARO_CORR_SIZE];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 1488
*/
float baroCorrRpmBins[BARO_CORR_SIZE];
/**
2021-11-05 19:01:07 -07:00
ratio
2022-04-29 16:48:53 -07:00
* offset 1504
*/
2021-11-05 19:01:07 -07:00
float baroCorrTable[BARO_CORR_SIZE][BARO_CORR_SIZE];
/**
* Cranking fuel correction coefficient based on TPS
2021-04-26 14:59:44 -07:00
Ratio
2022-04-29 16:48:53 -07:00
* offset 1568
*/
float crankingTpsCoef[CRANKING_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 1600
*/
float crankingTpsBins[CRANKING_CURVE_SIZE];
/**
2021-07-13 12:19:10 -07:00
* Duration in ms or duty cycle depending on selected mode
2022-04-29 16:48:53 -07:00
* offset 1632
*/
2021-12-19 23:04:16 -08:00
float tachPulseDuractionMs;
/**
2021-11-06 19:14:13 -07:00
* Length of time the deposited wall fuel takes to dissipate after the start of acceleration.
2021-04-26 14:59:44 -07:00
Seconds
2022-04-29 16:48:53 -07:00
* offset 1636
*/
float wwaeTau;
/**
2022-04-29 16:48:53 -07:00
* offset 1640
*/
pid_s alternatorControl;
/**
2022-04-29 16:48:53 -07:00
* offset 1660
*/
pid_s etb;
/**
2022-04-29 16:48:53 -07:00
* offset 1680
*/
2022-04-28 15:06:22 -07:00
Gpio triggerInputDebugPins[TRIGGER_INPUT_PIN_COUNT];
2021-07-13 11:37:37 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 1686
2021-07-13 11:37:37 -07:00
*/
2021-07-27 14:37:24 -07:00
brain_input_pin_e turboSpeedSensorInputPin;
/**
* Closed throttle#2. todo: extract these two fields into a structure
* See also tps2_1AdcChannel
* set tps2_min X
2021-04-26 14:59:44 -07:00
ADC
2022-04-29 16:48:53 -07:00
* offset 1688
*/
int16_t tps2Min;
/**
* Full throttle#2. tpsMax value as 10 bit ADC value. Not Voltage!
* See also tps1_1AdcChannel
* set tps2_max X
2021-04-26 14:59:44 -07:00
ADC
2022-04-29 16:48:53 -07:00
* offset 1690
*/
int16_t tps2Max;
/**
* See also startStopButtonPin
2022-04-29 16:48:53 -07:00
* offset 1692
*/
output_pin_e starterControlPin;
/**
2022-04-29 16:48:53 -07:00
* offset 1694
*/
pin_input_mode_e startStopButtonMode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 1695
*/
uint8_t alignmentFill_at_1695[1];
/**
* offset 1696
*/
2022-04-28 15:06:22 -07:00
Gpio mc33816_flag0;
/**
2021-04-26 14:59:44 -07:00
Pulse
2022-04-29 16:48:53 -07:00
* offset 1698
*/
uint8_t tachPulsePerRev;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 1699
*/
uint8_t alignmentFill_at_1699[1];
/**
* kPa value which is too low to be true
2021-04-26 14:59:44 -07:00
kPa
2022-04-29 16:48:53 -07:00
* offset 1700
*/
float mapErrorDetectionTooLow;
/**
* kPa value which is too high to be true
2021-04-26 14:59:44 -07:00
kPa
2022-04-29 16:48:53 -07:00
* offset 1704
*/
float mapErrorDetectionTooHigh;
/**
2021-03-28 05:41:23 -07:00
* How long to wait for the spark to fire before recharging the coil for another spark.
2021-04-26 14:59:44 -07:00
ms
2022-04-29 16:48:53 -07:00
* offset 1708
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint16_t, 1000, 1> multisparkSparkDuration;
/**
2021-03-28 05:41:23 -07:00
* This sets the dwell time for subsequent sparks. The main spark's dwell is set by the dwell table.
2021-04-26 14:59:44 -07:00
ms
2022-04-29 16:48:53 -07:00
* offset 1710
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint16_t, 1000, 1> multisparkDwell;
/**
* See cltIdleRpmBins
2022-04-29 16:48:53 -07:00
* offset 1712
*/
pid_s idleRpmPid;
/**
2021-11-06 19:14:13 -07:00
* 0 = No fuel settling on port walls 1 = All the fuel settling on port walls setting this to 0 disables the wall wetting enrichment.
2021-04-26 14:59:44 -07:00
Fraction
2022-04-29 16:48:53 -07:00
* offset 1732
*/
float wwaeBeta;
/**
* blue LED on many rusEFI boards.
* Blue Communication LED which is expected to blink at 50% duty cycle during normal board operation.
* If USB communication cable is connected Blue LED starts to blink faster.
2022-04-29 16:48:53 -07:00
* offset 1736
*/
2022-04-28 15:06:22 -07:00
Gpio communicationLedPin;
/**
* Green LED on many rusEFI boards.
* Off if engine is stopped, blinks if engine is cranking, solid if engine is running.
2022-04-29 16:48:53 -07:00
* offset 1738
*/
2022-04-28 15:06:22 -07:00
Gpio runningLedPin;
/**
* See also EFI_CONSOLE_RX_BRAIN_PIN
2022-04-29 16:48:53 -07:00
* offset 1740
*/
2022-04-28 15:06:22 -07:00
Gpio binarySerialTxPin;
/**
2022-04-29 16:48:53 -07:00
* offset 1742
2022-04-24 20:46:16 -07:00
*/
2022-04-28 15:06:22 -07:00
Gpio binarySerialRxPin;
2022-04-24 20:46:16 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 1744
2022-04-24 20:46:16 -07:00
*/
2022-04-28 15:06:22 -07:00
Gpio auxValves[AUX_DIGITAL_VALVE_COUNT];
2022-04-24 20:46:16 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 1748
*/
2022-04-24 20:46:16 -07:00
switch_input_pin_e tcuUpshiftButtonPin;
/**
2022-04-29 16:48:53 -07:00
* offset 1750
2021-06-12 04:03:20 -07:00
*/
switch_input_pin_e tcuDownshiftButtonPin;
/**
2021-04-26 14:59:44 -07:00
voltage
2022-04-29 16:48:53 -07:00
* offset 1752
*/
float throttlePedalUpVoltage;
/**
* Pedal in the floor
2021-04-26 14:59:44 -07:00
voltage
2022-04-29 16:48:53 -07:00
* offset 1756
*/
float throttlePedalWOTVoltage;
/**
* on ECU start turn fuel pump on to build fuel pressure
2021-04-26 14:59:44 -07:00
seconds
2022-04-29 16:48:53 -07:00
* offset 1760
*/
int16_t startUpFuelPumpDuration;
/**
2021-05-21 12:28:41 -07:00
* If the RPM closer to target than this value, disable closed loop idle correction to prevent oscillation
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 1762
*/
int16_t idlePidRpmDeadZone;
/**
* CLT-based target RPM for automatic idle controller
2021-04-26 14:59:44 -07:00
C
2022-04-29 16:48:53 -07:00
* offset 1764
*/
float cltIdleRpmBins[CLT_CURVE_SIZE];
/**
* See idleRpmPid
2021-12-19 21:40:11 -08:00
RPM
2022-04-29 16:48:53 -07:00
* offset 1828
*/
2021-12-19 21:40:11 -08:00
scaled_channel<uint8_t, 1, 50> cltIdleRpm[CLT_CURVE_SIZE];
/**
* This is the target battery voltage the alternator PID control will attempt to maintain
2021-04-26 14:59:44 -07:00
Volts
2022-04-29 16:48:53 -07:00
* offset 1844
*/
float targetVBatt;
/**
* Turns off alternator output above specified TPS, enabling this reduced parasitic drag on the engine at full load.
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 1848
*/
float alternatorOffAboveTps;
/**
* 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.
2021-04-26 14:59:44 -07:00
cycles
2022-04-29 16:48:53 -07:00
* offset 1852
*/
int16_t afterCrankingIACtaperDuration;
/**
* Extra IAC, in percent between 0 and 100, tapered between zero and idle deactivation TPS value
2021-04-26 14:59:44 -07:00
percent
2022-04-29 16:48:53 -07:00
* offset 1854
*/
int16_t iacByTpsTaper;
/**
2021-11-11 15:37:47 -08:00
* Auxiliary sensor serial, not to be confused with secondary calibration serial
* set_aux_tx_pin X
2022-04-29 16:48:53 -07:00
* offset 1856
*/
2022-04-28 15:06:22 -07:00
Gpio auxSerialTxPin;
/**
2022-04-29 16:48:53 -07:00
* offset 1858
*/
2022-04-28 15:06:22 -07:00
Gpio warningLedPin;
/**
2021-11-11 15:37:47 -08:00
* Auxiliary sensor serial, not to be confused with secondary calibration serial
* set_aux_rx_pin X
2022-04-29 16:48:53 -07:00
* offset 1860
*/
2022-04-28 15:06:22 -07:00
Gpio auxSerialRxPin;
/**
2022-04-29 16:48:53 -07:00
* offset 1862
*/
2022-04-28 15:06:22 -07:00
Gpio LIS302DLCsPin;
/**
2022-01-23 12:42:35 -08:00
* How long to look back for TPS-based acceleration enrichment. Increasing this time will trigger enrichment for longer when a throttle position change occurs.
sec
2022-04-29 16:48:53 -07:00
* offset 1864
*/
2022-01-24 04:38:16 -08:00
scaled_channel<uint8_t, 20, 1> tpsAccelLookback;
2022-01-23 12:42:35 -08:00
/**
2022-01-27 11:27:44 -08:00
* Below this speed, disable DFCO. Use this to prevent jerkiness from fuel enable/disable in low gears.
kph
2022-04-29 16:48:53 -07:00
* offset 1865
2022-01-23 12:42:35 -08:00
*/
2022-01-27 11:27:44 -08:00
uint8_t coastingFuelCutVssLow;
/**
* Above this speed, allow DFCO. Use this to prevent jerkiness from fuel enable/disable in low gears.
kph
2022-04-29 16:48:53 -07:00
* offset 1866
2022-01-27 11:27:44 -08:00
*/
uint8_t coastingFuelCutVssHigh;
/**
2022-01-28 18:41:30 -08:00
* 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.
sec
2022-04-29 16:48:53 -07:00
* offset 1867
2022-01-27 11:27:44 -08:00
*/
2022-01-28 18:41:30 -08:00
scaled_channel<uint8_t, 10, 1> noFuelTrimAfterDfcoTime;
/**
* 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.
2021-04-26 14:59:44 -07:00
roc
2022-04-29 16:48:53 -07:00
* offset 1868
*/
float tpsAccelEnrichmentThreshold;
/**
2022-04-29 16:48:53 -07:00
* offset 1872
*/
2022-03-28 20:07:59 -07:00
brain_input_pin_e auxSpeedSensorInputPin[2];
/**
2022-04-29 16:48:53 -07:00
* offset 1876
2022-03-28 20:07:59 -07:00
*/
2022-04-04 17:36:02 -07:00
uint8_t totalGearsCount;
2022-03-28 20:07:59 -07:00
/**
2022-04-15 07:34:37 -07:00
* Sets what part of injection's is controlled by the injection phase table.
2022-04-29 16:48:53 -07:00
* offset 1877
2022-03-28 20:07:59 -07:00
*/
2022-04-15 07:34:37 -07:00
InjectionTimingMode injectionTimingMode;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 1878
*/
uint8_t alignmentFill_at_1878[2];
/**
* Band rate for primary TTL
2021-04-26 14:59:44 -07:00
BPs
2022-04-29 16:48:53 -07:00
* offset 1880
*/
uint32_t uartConsoleSerialSpeed;
/**
2021-10-30 19:08:31 -07:00
* For decel we simply multiply delta of TPS and tFor decel we do not use table?!
2021-04-26 14:59:44 -07:00
roc
2022-04-29 16:48:53 -07:00
* offset 1884
*/
float tpsDecelEnleanmentThreshold;
/**
2021-10-30 19:08:31 -07:00
* Magic multiplier, we multiply delta of TPS and get fuel squirt duration
2021-04-26 14:59:44 -07:00
coeff
2022-04-29 16:48:53 -07:00
* offset 1888
*/
float tpsDecelEnleanmentMultiplier;
/**
* ExpAverage alpha coefficient
2021-04-26 14:59:44 -07:00
coeff
2022-04-29 16:48:53 -07:00
* offset 1892
*/
float slowAdcAlpha;
/**
* See http://rusefi.com/s/debugmode
*
* set debug_mode X
2022-04-29 16:48:53 -07:00
* offset 1896
*/
debug_mode_e debugMode;
2022-04-30 10:07:03 -07:00
/**
* need 4 byte alignment
units
* offset 1897
*/
uint8_t alignmentFill_at_1897[3];
/**
2021-04-26 14:59:44 -07:00
BPs
2022-04-29 16:48:53 -07:00
* offset 1900
*/
uint32_t auxSerialSpeed;
/**
2021-04-26 14:59:44 -07:00
voltage
2022-04-29 16:48:53 -07:00
* offset 1904
*/
float throttlePedalSecondaryUpVoltage;
/**
* Pedal in the floor
2021-04-26 14:59:44 -07:00
voltage
2022-04-29 16:48:53 -07:00
* offset 1908
*/
float throttlePedalSecondaryWOTVoltage;
/**
2021-11-06 19:14:13 -07:00
* set can_baudrate
2022-04-29 16:48:53 -07:00
* offset 1912
*/
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.
2022-04-29 16:48:53 -07:00
* offset 1913
*/
ve_override_e veOverrideMode;
/**
2022-04-29 16:48:53 -07:00
* offset 1914
*/
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.
2022-04-29 16:48:53 -07:00
* offset 1915
*/
2021-12-26 11:53:27 -08:00
load_override_e afrOverrideMode;
/**
2022-01-02 19:11:01 -08:00
A
2022-04-29 16:48:53 -07:00
* offset 1916
*/
2022-01-02 23:19:26 -08:00
scaled_channel<uint8_t, 10, 1> mc33_hpfp_i_peak;
2022-01-02 19:11:01 -08:00
/**
A
2022-04-29 16:48:53 -07:00
* offset 1917
2022-01-02 19:11:01 -08:00
*/
2022-01-02 23:19:26 -08:00
scaled_channel<uint8_t, 10, 1> mc33_hpfp_i_hold;
2022-01-02 19:11:01 -08:00
/**
* How long to deactivate power when hold current is reached before applying power again
us
2022-04-29 16:48:53 -07:00
* offset 1918
2022-01-02 19:11:01 -08:00
*/
uint8_t mc33_hpfp_i_hold_off;
/**
* Maximum amount of time the solenoid can be active before assuming a programming error
ms
2022-04-29 16:48:53 -07:00
* offset 1919
2022-01-02 19:11:01 -08:00
*/
uint8_t mc33_hpfp_max_hold;
/**
2022-04-29 16:48:53 -07:00
* Enable if DC-motor driver (H-bridge) inverts the signals (eg. RZ7899 on Hellen boards)
offset 1920 bit 0 */
bool stepperDcInvertedPins : 1 {};
/**
offset 1920 bit 1 */
2021-12-24 20:41:09 -08:00
bool unused1740b0 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 2 */
2021-12-24 20:41:09 -08:00
bool unused1740b1 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 3 */
2021-12-24 20:41:09 -08:00
bool unused1740b2 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 4 */
2021-11-19 20:16:43 -08:00
bool unused1127 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 5 */
2021-11-19 20:16:43 -08:00
bool unused1128 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 6 */
2021-11-19 20:16:43 -08:00
bool unused1129 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 7 */
2021-11-19 20:16:43 -08:00
bool unused1130 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 8 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_8 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 9 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_9 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 10 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_10 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 11 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_11 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 12 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_12 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 13 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_13 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 14 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_14 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 15 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_15 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 16 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_16 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 17 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_17 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 18 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_18 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 19 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_19 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 20 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_20 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 21 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_21 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 22 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_22 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 23 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_23 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 24 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_24 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 25 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_25 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 26 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_26 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 27 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_27 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 28 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_28 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 29 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_29 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 30 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_30 : 1 {};
/**
2022-04-29 16:48:53 -07:00
offset 1920 bit 31 */
2022-04-30 10:07:03 -07:00
bool unusedBit_538_31 : 1 {};
/**
2022-01-03 00:26:21 -08:00
ms
2022-04-29 16:48:53 -07:00
* offset 1924
*/
2022-01-03 00:26:21 -08:00
scaled_channel<uint8_t, 1, 5> benchTestOffTime;
/**
count
2022-04-29 16:48:53 -07:00
* offset 1925
2022-01-03 00:26:21 -08:00
*/
uint8_t benchTestCount;
/**
2022-01-03 20:48:36 -08:00
ms
2022-04-29 16:48:53 -07:00
* offset 1926
2022-01-03 00:26:21 -08:00
*/
2022-01-03 20:48:36 -08:00
scaled_channel<uint8_t, 1, 5> benchTestOnTime;
2022-01-03 00:26:21 -08:00
/**
2022-04-29 16:48:53 -07:00
* offset 1927
2022-01-03 00:26:21 -08:00
*/
2022-04-19 07:57:09 -07:00
pin_input_mode_e launchActivatePinMode;
/**
* set_can2_tx_pin X
2022-04-29 16:48:53 -07:00
* offset 1928
*/
2022-04-28 15:06:22 -07:00
Gpio can2TxPin;
/**
* set_can2_rx_pin X
2022-04-29 16:48:53 -07:00
* offset 1930
*/
2022-04-28 15:06:22 -07:00
Gpio can2RxPin;
/**
2022-04-29 16:48:53 -07:00
* offset 1932
*/
pin_output_mode_e starterControlPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 1933
*/
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.
2022-04-29 16:48:53 -07:00
* offset 1934
*/
2021-12-26 11:53:27 -08:00
load_override_e ignOverrideMode;
/**
* Select which fuel pressure sensor measures the pressure of the fuel at your injectors.
2022-04-29 16:48:53 -07:00
* offset 1935
*/
injector_pressure_type_e injectorPressureType;
/**
2022-04-29 16:48:53 -07:00
* offset 1936
*/
output_pin_e hpfpValvePin;
/**
2022-04-29 16:48:53 -07:00
* offset 1938
*/
pin_output_mode_e hpfpValvePinMode;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 1939
*/
uint8_t alignmentFill_at_1939[1];
/**
* MAP value above which fuel is cut in case of overboost.
* Set to 0 to disable overboost cut.
2021-04-26 14:59:44 -07:00
kPa (absolute)
2022-04-29 16:48:53 -07:00
* offset 1940
*/
float boostCutPressure;
/**
2022-01-30 06:01:11 -08:00
kg/h
2022-04-29 16:48:53 -07:00
* offset 1944
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint8_t, 1, 5> tchargeBins[16];
2022-01-30 06:01:11 -08:00
/**
ratio
2022-04-29 16:48:53 -07:00
* offset 1960
2022-01-30 06:01:11 -08:00
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint8_t, 100, 1> tchargeValues[16];
/**
* Fixed timing, useful for TDC testing
2021-04-26 14:59:44 -07:00
deg
2022-04-29 16:48:53 -07:00
* offset 1976
*/
float fixedTiming;
/**
* MAP voltage for low point
2021-04-26 14:59:44 -07:00
v
2022-04-29 16:48:53 -07:00
* offset 1980
*/
float mapLowValueVoltage;
/**
* MAP voltage for low point
2021-04-26 14:59:44 -07:00
v
2022-04-29 16:48:53 -07:00
* offset 1984
*/
float mapHighValueVoltage;
/**
* EGO value correction
2021-04-26 14:59:44 -07:00
value
2022-04-29 16:48:53 -07:00
* offset 1988
*/
float egoValueShift;
/**
2022-04-29 16:48:53 -07:00
* offset 1992
*/
2021-10-28 21:20:12 -07:00
output_pin_e vvtPins[CAM_INPUTS_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 2000
*/
spi_device_e cj125SpiDevice;
/**
2022-04-29 16:48:53 -07:00
* offset 2001
*/
pin_output_mode_e cj125CsPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 2002
*/
pin_output_mode_e sdCardCsPinMode;
/**
* need 4 byte alignment
2021-07-03 08:33:11 -07:00
units
2022-04-29 16:48:53 -07:00
* offset 2003
*/
2022-04-29 16:48:53 -07:00
uint8_t alignmentFill_at_2003[1];
/**
* This is the IAC position during cranking, some engines start better if given more air during cranking to improve cylinder filling.
2021-04-26 14:59:44 -07:00
percent
2022-04-29 16:48:53 -07:00
* offset 2004
*/
int crankingIACposition;
/**
2022-04-29 16:48:53 -07:00
* offset 2008
*/
float tChargeMinRpmMinTps;
/**
2022-04-29 16:48:53 -07:00
* offset 2012
*/
float tChargeMinRpmMaxTps;
/**
2022-04-29 16:48:53 -07:00
* offset 2016
*/
float tChargeMaxRpmMinTps;
/**
2022-04-29 16:48:53 -07:00
* offset 2020
*/
float tChargeMaxRpmMaxTps;
/**
2022-04-29 16:48:53 -07:00
* offset 2024
*/
2021-11-14 07:53:06 -08:00
pwm_freq_t vvtOutputFrequency[CAMS_PER_BANK];
2021-02-18 15:20:11 -08:00
/**
2021-05-31 15:02:57 -07:00
* Additional idle % when fan #1 is active
%
2022-04-29 16:48:53 -07:00
* offset 2028
2021-02-18 15:20:11 -08:00
*/
2021-05-31 15:02:57 -07:00
uint8_t fan1ExtraIdle;
2021-02-18 15:20:11 -08:00
/**
* need 4 byte alignment
2021-07-03 08:33:11 -07:00
units
2022-04-29 16:48:53 -07:00
* offset 2029
2021-02-18 15:20:11 -08:00
*/
2022-04-29 16:48:53 -07:00
uint8_t alignmentFill_at_2029[3];
/**
2021-04-26 14:59:44 -07:00
Hz
2022-04-29 16:48:53 -07:00
* offset 2032
*/
int alternatorPwmFrequency;
/**
* Narrow Band WBO Approximation
2021-04-26 14:59:44 -07:00
V
2022-04-29 16:48:53 -07:00
* offset 2036
*/
float narrowToWideOxygenBins[NARROW_BAND_WIDE_BAND_CONVERSION_SIZE];
/**
2021-04-26 14:59:44 -07:00
ratio
2022-04-29 16:48:53 -07:00
* offset 2068
*/
float narrowToWideOxygen[NARROW_BAND_WIDE_BAND_CONVERSION_SIZE];
/**
* set vvt_mode X
2022-04-29 16:48:53 -07:00
* offset 2100
*/
2021-02-18 15:20:11 -08:00
vvt_mode_e vvtMode[CAMS_PER_BANK];
/**
2022-04-29 16:48:53 -07:00
* offset 2102
2021-02-18 15:20:11 -08:00
*/
uint8_t vvtModePadding[CAMS_PER_BANK_padding];
/**
2021-05-31 15:02:57 -07:00
* Additional idle % when fan #2 is active
%
2022-04-29 16:48:53 -07:00
* offset 2102
*/
2021-05-31 15:02:57 -07:00
uint8_t fan2ExtraIdle;
/**
2021-12-08 14:49:58 -08:00
* Delay to allow fuel pressure to build before firing the priming pulse.
sec
2022-04-29 16:48:53 -07:00
* offset 2103
2021-05-31 15:02:57 -07:00
*/
2021-12-08 14:49:58 -08:00
scaled_channel<uint8_t, 100, 1> primingDelay;
2021-10-19 16:54:00 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 2104
2021-10-19 16:54:00 -07:00
*/
adc_channel_e auxAnalogInputs[AUX_ANALOG_INPUT_COUNT];
2021-07-09 07:09:27 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 2112
2021-07-09 07:09:27 -07:00
*/
output_pin_e trailingCoilPins[MAX_CYLINDER_COUNT];
/**
* CLT-based timing correction
2021-04-26 14:59:44 -07:00
C
2022-04-29 16:48:53 -07:00
* offset 2136
*/
float cltTimingBins[CLT_TIMING_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
degree
2022-04-29 16:48:53 -07:00
* offset 2168
*/
float cltTimingExtra[CLT_TIMING_CURVE_SIZE];
/**
2022-04-29 16:48:53 -07:00
* offset 2200
*/
tle8888_mode_e tle8888mode;
/**
2022-04-29 16:48:53 -07:00
* offset 2201
*/
pin_output_mode_e LIS302DLCsPinMode;
/**
2021-05-21 12:28:41 -07:00
* 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
2022-04-29 16:48:53 -07:00
* offset 2202
*/
injector_compensation_mode_e injectorCompensationMode;
2022-04-24 21:26:26 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 2203
2022-04-24 20:46:16 -07:00
*/
2022-04-24 21:26:26 -07:00
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.
2021-04-26 14:59:44 -07:00
kPa
2022-04-29 16:48:53 -07:00
* offset 2204
*/
float fuelReferencePressure;
/**
* Fuel multiplier (enrichment) immediately after engine start
2021-04-26 14:59:44 -07:00
mult
2022-04-29 16:48:53 -07:00
* offset 2208
*/
float postCrankingFactor;
/**
* Time over which to taper out after start enrichment
2021-04-26 14:59:44 -07:00
seconds
2022-04-29 16:48:53 -07:00
* offset 2212
*/
float postCrankingDurationSec;
/**
2022-04-29 16:48:53 -07:00
* offset 2216
*/
ThermistorConf auxTempSensor1;
/**
2022-04-29 16:48:53 -07:00
* offset 2248
*/
ThermistorConf auxTempSensor2;
2021-08-09 13:40:28 -07:00
/**
Deg
2022-04-29 16:48:53 -07:00
* offset 2280
2021-08-09 13:40:28 -07:00
*/
int16_t knockSamplingDuration;
/**
2021-04-26 14:59:44 -07:00
Hz
2022-04-29 16:48:53 -07:00
* offset 2282
*/
int16_t etbFreq;
/**
2022-04-29 16:48:53 -07:00
* offset 2284
*/
pid_s etbWastegatePid;
/**
2021-10-06 11:01:16 -07:00
* For micro-stepping, make sure that PWM frequency (etbFreq) is high enough
2022-04-29 16:48:53 -07:00
* offset 2304
*/
2021-10-06 11:01:16 -07:00
stepper_num_micro_steps_e stepperNumMicroSteps;
/**
* Use to limit the current when the stepper motor is idle, not moving (100% = no limit)
%
2022-04-29 16:48:53 -07:00
* offset 2305
2021-10-06 11:01:16 -07:00
*/
uint8_t stepperMinDutyCycle;
/**
* Use to limit the max.current through the stepper motor (100% = no limit)
%
2022-04-29 16:48:53 -07:00
* offset 2306
2021-10-06 11:01:16 -07:00
*/
uint8_t stepperMaxDutyCycle;
/**
2022-04-29 16:48:53 -07:00
* offset 2307
2021-10-06 11:01:16 -07:00
*/
2021-12-19 22:09:38 -08:00
spi_device_e sdCardSpiDevice;
/**
* per-cylinder timing correction
2021-05-27 05:25:55 -07:00
deg
2022-04-29 16:48:53 -07:00
* offset 2308
*/
2021-07-06 17:57:01 -07:00
angle_t timing_offset_cylinder[MAX_CYLINDER_COUNT];
/**
2021-04-26 14:59:44 -07:00
seconds
2022-04-29 16:48:53 -07:00
* offset 2356
*/
float idlePidActivationTime;
/**
2022-04-29 16:48:53 -07:00
* offset 2360
*/
pin_mode_e spi1SckMode;
/**
* Modes count be used for 3v<>5v integration using pull-ups/pull-downs etc.
2022-04-29 16:48:53 -07:00
* offset 2361
*/
pin_mode_e spi1MosiMode;
/**
2022-04-29 16:48:53 -07:00
* offset 2362
*/
pin_mode_e spi1MisoMode;
/**
2022-04-29 16:48:53 -07:00
* offset 2363
*/
pin_mode_e spi2SckMode;
/**
2022-04-29 16:48:53 -07:00
* offset 2364
*/
pin_mode_e spi2MosiMode;
/**
2022-04-29 16:48:53 -07:00
* offset 2365
*/
pin_mode_e spi2MisoMode;
/**
2022-04-29 16:48:53 -07:00
* offset 2366
*/
pin_mode_e spi3SckMode;
/**
2022-04-29 16:48:53 -07:00
* offset 2367
*/
pin_mode_e spi3MosiMode;
/**
2022-04-29 16:48:53 -07:00
* offset 2368
2022-04-24 20:46:16 -07:00
*/
pin_mode_e spi3MisoMode;
/**
2022-04-29 16:48:53 -07:00
* offset 2369
*/
pin_output_mode_e stepperEnablePinMode;
/**
* ResetB
2022-04-29 16:48:53 -07:00
* offset 2370
*/
2022-04-28 15:06:22 -07:00
Gpio mc33816_rstb;
/**
2022-04-29 16:48:53 -07:00
* offset 2372
*/
2022-04-28 15:06:22 -07:00
Gpio mc33816_driven;
/**
* Brake pedal switch
2022-04-29 16:48:53 -07:00
* offset 2374
*/
switch_input_pin_e brakePedalPin;
/**
* lambda input
2022-04-29 16:48:53 -07:00
* offset 2376
*/
adc_channel_e cj125ua;
/**
* heater input
2022-04-29 16:48:53 -07:00
* offset 2377
*/
adc_channel_e cj125ur;
/**
2022-04-29 16:48:53 -07:00
* offset 2378
*/
pin_input_mode_e brakePedalPinMode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 2379
*/
uint8_t alignmentFill_at_2379[1];
/**
* offset 2380
*/
2021-02-18 15:20:11 -08:00
pid_s auxPid[CAMS_PER_BANK];
/**
2022-04-29 16:48:53 -07:00
* offset 2420
2021-02-18 15:20:11 -08:00
*/
2021-07-07 20:49:03 -07:00
float injectorCorrectionPolynomial[8];
/**
2021-12-08 14:49:58 -08:00
C
2022-04-29 16:48:53 -07:00
* offset 2452
2021-07-07 20:49:03 -07:00
*/
2021-12-08 14:49:58 -08:00
int8_t primeBins[8];
/**
2022-04-29 16:48:53 -07:00
* offset 2460
*/
linear_sensor_s oilPressure;
/**
2022-04-29 16:48:53 -07:00
* offset 2480
*/
spi_device_e accelerometerSpiDevice;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 2481
*/
uint8_t alignmentFill_at_2481[1];
/**
* offset 2482
*/
2021-06-13 05:09:09 -07:00
output_pin_e fan2Pin;
/**
2021-06-13 05:09:09 -07:00
* Cooling fan turn-on temperature threshold, in Celsius
deg C
2022-04-29 16:48:53 -07:00
* offset 2484
*/
2021-06-13 05:09:09 -07:00
uint8_t fan2OnTemperature;
/**
2021-06-13 05:09:09 -07:00
* Cooling fan turn-off temperature threshold, in Celsius
deg C
2022-04-29 16:48:53 -07:00
* offset 2485
*/
2021-06-13 05:09:09 -07:00
uint8_t fan2OffTemperature;
2022-04-29 16:48:53 -07:00
/**
* need 4 byte alignment
units
* offset 2486
*/
uint8_t alignmentFill_at_2486[2];
/**
2021-04-26 14:59:44 -07:00
x
2022-04-29 16:48:53 -07:00
* offset 2488
*/
2021-11-14 07:39:47 -08:00
float scriptCurve1Bins[SCRIPT_CURVE_16];
/**
2021-04-26 14:59:44 -07:00
y
2022-04-29 16:48:53 -07:00
* offset 2552
*/
2021-11-14 07:39:47 -08:00
float scriptCurve1[SCRIPT_CURVE_16];
/**
2021-04-26 14:59:44 -07:00
x
2022-04-29 16:48:53 -07:00
* offset 2616
*/
2021-11-14 07:39:47 -08:00
float scriptCurve2Bins[SCRIPT_CURVE_16];
/**
2021-04-26 14:59:44 -07:00
y
2022-04-29 16:48:53 -07:00
* offset 2680
*/
2021-11-14 07:39:47 -08:00
float scriptCurve2[SCRIPT_CURVE_16];
/**
2021-04-26 14:59:44 -07:00
x
2022-04-29 16:48:53 -07:00
* offset 2744
*/
2021-11-14 07:39:47 -08:00
float scriptCurve3Bins[SCRIPT_CURVE_8];
/**
2021-04-26 14:59:44 -07:00
y
2022-04-29 16:48:53 -07:00
* offset 2776
*/
2021-11-14 07:39:47 -08:00
float scriptCurve3[SCRIPT_CURVE_8];
/**
2021-04-26 14:59:44 -07:00
x
2022-04-29 16:48:53 -07:00
* offset 2808
*/
2021-11-14 07:39:47 -08:00
float scriptCurve4Bins[SCRIPT_CURVE_8];
/**
2021-04-26 14:59:44 -07:00
y
2022-04-29 16:48:53 -07:00
* offset 2840
*/
2021-11-14 07:39:47 -08:00
float scriptCurve4[SCRIPT_CURVE_8];
/**
2022-04-29 16:48:53 -07:00
* offset 2872
*/
2022-04-28 15:06:22 -07:00
Gpio stepperEnablePin;
/**
2022-04-29 16:48:53 -07:00
* offset 2874
*/
2022-04-28 15:06:22 -07:00
Gpio tle8888_cs;
/**
2022-04-29 16:48:53 -07:00
* offset 2876
*/
pin_output_mode_e tle8888_csPinMode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 2877
*/
uint8_t alignmentFill_at_2877[1];
/**
* offset 2878
*/
2022-04-28 15:06:22 -07:00
Gpio mc33816_cs;
/**
* Optional timing advance table for Cranking (see useSeparateAdvanceForCranking)
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 2880
*/
float crankingAdvanceBins[CRANKING_ADVANCE_CURVE_SIZE];
/**
* Optional timing advance table for Cranking (see useSeparateAdvanceForCranking)
2021-04-26 14:59:44 -07:00
deg
2022-04-29 16:48:53 -07:00
* offset 2896
*/
float crankingAdvance[CRANKING_ADVANCE_CURVE_SIZE];
/**
* todo: more comments
2022-04-29 16:48:53 -07:00
* offset 2912
*/
2022-04-28 15:06:22 -07:00
Gpio servoOutputPins[SERVO_COUNT];
/**
2021-04-12 05:25:48 -07:00
* This sets the RPM above which fuel cut is active.
2021-04-26 14:59:44 -07:00
rpm
2022-04-29 16:48:53 -07:00
* offset 2928
*/
int16_t coastingFuelCutRpmHigh;
/**
2021-04-12 05:25:48 -07:00
* This sets the RPM below which fuel cut is deactivated, this prevents jerking or issues transitioning to idle
2021-04-26 14:59:44 -07:00
rpm
2022-04-29 16:48:53 -07:00
* offset 2930
*/
int16_t coastingFuelCutRpmLow;
/**
2022-01-24 11:33:08 -08:00
* Throttle position below which fuel cut is active. With an electronic throttle enabled, this checks against pedal position.
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 2932
*/
int16_t coastingFuelCutTps;
/**
2021-04-12 05:25:48 -07:00
* Fuel cutoff is disabled when the engine is cold.
2021-04-26 14:59:44 -07:00
C
2022-04-29 16:48:53 -07:00
* offset 2934
*/
int16_t coastingFuelCutClt;
/**
* Increases PID reaction for RPM<target by adding extra percent to PID-error
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 2936
*/
int16_t pidExtraForLowRpm;
/**
* MAP value above which fuel injection is re-enabled.
2021-04-26 14:59:44 -07:00
kPa
2022-04-29 16:48:53 -07:00
* offset 2938
*/
int16_t coastingFuelCutMap;
/**
* CLT-based idle position for coasting (used in Auto-PID Idle mode)
2021-04-26 14:59:44 -07:00
C
2022-04-29 16:48:53 -07:00
* offset 2940
*/
float iacCoastingBins[CLT_CURVE_SIZE];
/**
2021-11-06 19:14:13 -07:00
* CLT-based idle position for coasting (used in Auto-PID Idle mode)
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 3004
*/
float iacCoasting[CLT_CURVE_SIZE];
/**
2022-04-29 16:48:53 -07:00
* offset 3068
*/
linear_sensor_s highPressureFuel;
/**
2022-04-29 16:48:53 -07:00
* offset 3088
*/
linear_sensor_s lowPressureFuel;
/**
2021-02-18 15:20:11 -08:00
* CLT-based target RPM for hard limit depending on CLT like on Lexus LFA
2021-04-26 14:59:44 -07:00
C
2022-04-29 16:48:53 -07:00
* offset 3108
*/
2021-02-18 15:20:11 -08:00
int8_t cltRevLimitRpmBins[CLT_LIMITER_CURVE_SIZE];
/**
* See idleRpmPid
2022-04-29 16:48:53 -07:00
* offset 3112
2021-02-18 15:20:11 -08:00
*/
uint16_t cltRevLimitRpm[CLT_LIMITER_CURVE_SIZE];
2021-06-11 21:19:09 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 3120
2021-06-11 21:19:09 -07:00
*/
2021-11-04 20:03:11 -07:00
gppwm_note_t scriptCurveName[SCRIPT_CURVE_COUNT];
/**
x
2022-04-29 16:48:53 -07:00
* offset 3216
2021-11-04 20:03:11 -07:00
*/
2021-11-14 07:39:47 -08:00
float scriptCurve5Bins[SCRIPT_CURVE_8];
2021-11-04 20:03:11 -07:00
/**
y
2022-04-29 16:48:53 -07:00
* offset 3248
2021-11-04 20:03:11 -07:00
*/
2021-11-14 07:39:47 -08:00
float scriptCurve5[SCRIPT_CURVE_8];
2021-11-04 20:03:11 -07:00
/**
x
2022-04-29 16:48:53 -07:00
* offset 3280
2021-11-04 20:03:11 -07:00
*/
2021-11-14 07:39:47 -08:00
float scriptCurve6Bins[SCRIPT_CURVE_8];
2021-11-04 20:03:11 -07:00
/**
y
2022-04-29 16:48:53 -07:00
* offset 3312
2021-11-04 20:03:11 -07:00
*/
2021-11-14 07:39:47 -08:00
float scriptCurve6[SCRIPT_CURVE_8];
2021-11-04 20:03:11 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 3344
2021-11-04 20:03:11 -07:00
*/
2021-11-07 07:30:54 -08:00
gppwm_note_t scriptTableName[SCRIPT_TABLE_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 3408
2021-11-07 07:30:54 -08:00
*/
2021-11-14 08:51:07 -08:00
gppwm_note_t scriptSettingName[SCRIPT_SETTING_COUNT];
/**
2021-12-14 11:49:48 -08:00
* Heat transfer coefficient at zero flow.
* 0 means the air charge is fully heated to the same temperature as CLT.
* 1 means the air charge gains no heat, and enters the cylinder at the temperature measured by IAT.
2022-04-29 16:48:53 -07:00
* offset 3536
*/
float tChargeAirCoefMin;
/**
2021-12-14 11:49:48 -08:00
* Heat transfer coefficient at high flow, as defined by "max air flow".
* 0 means the air charge is fully heated to the same temperature as CLT.
* 1 means the air charge gains no heat, and enters the cylinder at the temperature measured by IAT.
2022-04-29 16:48:53 -07:00
* offset 3540
*/
float tChargeAirCoefMax;
/**
2021-12-14 11:49:48 -08:00
* High flow point for heat transfer estimation.
* Set this to perhaps 50-75% of your maximum airflow at wide open throttle.
kg/h
2022-04-29 16:48:53 -07:00
* offset 3544
*/
float tChargeAirFlowMax;
/**
2021-12-14 11:49:48 -08:00
* Maximum allowed rate of increase allowed for the estimated charge temperature
deg/sec
2022-04-29 16:48:53 -07:00
* offset 3548
*/
float tChargeAirIncrLimit;
/**
2021-12-14 11:49:48 -08:00
* Maximum allowed rate of decrease allowed for the estimated charge temperature
deg/sec
2022-04-29 16:48:53 -07:00
* offset 3552
*/
float tChargeAirDecrLimit;
/**
2022-04-29 16:48:53 -07:00
* offset 3556
*/
tChargeMode_e tChargeMode;
/**
* target TPS value, 0 to 100%
* TODO: use int8 data date once we template interpolation method
2021-04-26 14:59:44 -07:00
target TPS position
2022-04-29 16:48:53 -07:00
* offset 3560
*/
float etbBiasBins[ETB_BIAS_CURVE_LENGTH];
/**
* PWM bias, 0 to 100%
2021-04-26 14:59:44 -07:00
ETB duty cycle bias
2022-04-29 16:48:53 -07:00
* offset 3592
*/
float etbBiasValues[ETB_BIAS_CURVE_LENGTH];
/**
2022-04-29 16:48:53 -07:00
* offset 3624
*/
float hip9011Gain;
/**
* iTerm min value
2022-04-29 16:48:53 -07:00
* offset 3628
*/
int16_t etb_iTermMin;
/**
* iTerm max value
2022-04-29 16:48:53 -07:00
* offset 3630
*/
int16_t etb_iTermMax;
/**
* See useIdleTimingPidControl
2022-04-29 16:48:53 -07:00
* offset 3632
*/
pid_s idleTimingPid;
/**
* If the RPM closer to target than this value, disable timing correction to prevent oscillation
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 3652
*/
int16_t idleTimingPidDeadZone;
/**
* A delay in cycles between fuel-enrich. portions
2021-04-26 14:59:44 -07:00
cycles
2022-04-29 16:48:53 -07:00
* offset 3654
*/
int16_t tpsAccelFractionPeriod;
/**
* A fraction divisor: 1 or less = entire portion at once, or split into diminishing fractions
2021-04-26 14:59:44 -07:00
coef
2022-04-29 16:48:53 -07:00
* offset 3656
*/
float tpsAccelFractionDivisor;
/**
2022-04-29 16:48:53 -07:00
* offset 3660
*/
spi_device_e tle8888spiDevice;
/**
2022-04-29 16:48:53 -07:00
* offset 3661
*/
spi_device_e mc33816spiDevice;
/**
* iTerm min value
2022-04-29 16:48:53 -07:00
* offset 3662
*/
int16_t idlerpmpid_iTermMin;
/**
2022-04-29 16:48:53 -07:00
* offset 3664
*/
spi_device_e tle6240spiDevice;
/**
* Stoichiometric ratio for your primary fuel. When Flex Fuel is enabled, this value is used when the Flex Fuel sensor indicates E0.
2021-05-21 12:28:41 -07:00
* E0 = 14.7
* E10 = 14.1
* E85 = 9.9
* E100 = 9.0
2021-04-26 14:59:44 -07:00
:1
2022-04-29 16:48:53 -07:00
* offset 3665
*/
2021-11-05 16:52:02 -07:00
scaled_channel<uint8_t, 10, 1> stoichRatioPrimary;
/**
* iTerm max value
2022-04-29 16:48:53 -07:00
* offset 3666
*/
int16_t idlerpmpid_iTermMax;
/**
2021-05-21 12:28:41 -07:00
* This sets the range of the idle control on the ETB. At 100% idle position, the value specified here sets the base ETB position.
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 3668
*/
float etbIdleThrottleRange;
/**
* Select which fuel correction bank this cylinder belongs to. Group cylinders that share the same O2 sensor
2022-04-29 16:48:53 -07:00
* offset 3672
*/
2021-07-06 17:57:01 -07:00
uint8_t cylinderBankSelect[MAX_CYLINDER_COUNT];
/**
2021-12-08 14:49:58 -08:00
mg
2022-04-29 16:48:53 -07:00
* offset 3684
*/
2021-12-08 14:49:58 -08:00
scaled_channel<uint8_t, 1, 5> primeValues[8];
/**
* Trigger comparator center point voltage
2021-04-26 14:59:44 -07:00
V
2022-04-29 16:48:53 -07:00
* offset 3692
*/
uint8_t triggerCompCenterVolt;
/**
* Trigger comparator hysteresis voltage (Min)
2021-04-26 14:59:44 -07:00
V
2022-04-29 16:48:53 -07:00
* offset 3693
*/
uint8_t triggerCompHystMin;
/**
* Trigger comparator hysteresis voltage (Max)
2021-04-26 14:59:44 -07:00
V
2022-04-29 16:48:53 -07:00
* offset 3694
*/
uint8_t triggerCompHystMax;
/**
* VR-sensor saturation RPM
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 3695
*/
2021-12-19 19:56:33 -08:00
scaled_channel<uint8_t, 1, 50> triggerCompSensorSatRpm;
/**
2022-04-29 16:48:53 -07:00
* offset 3696
*/
pid_s idleRpmPid2;
/**
2021-11-05 19:01:07 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 3716
*/
2021-11-05 19:01:07 -07:00
uint8_t iacPidMultTable[IAC_PID_MULT_SIZE][IAC_PID_MULT_SIZE];
/**
2021-04-26 14:59:44 -07:00
Load
2022-04-29 16:48:53 -07:00
* offset 3780
*/
uint8_t iacPidMultLoadBins[IAC_PID_MULT_SIZE];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 3788
*/
2021-12-20 05:20:17 -08:00
scaled_channel<uint8_t, 1, 50> iacPidMultRpmBins[IAC_PID_MULT_SIZE];
/**
* set can_vss X
2022-04-29 16:48:53 -07:00
* offset 3796
*/
can_vss_nbc_e canVssNbcType;
/**
2022-04-29 16:48:53 -07:00
* offset 3800
*/
gppwm_channel gppwm[GPPWM_CHANNELS];
/**
2021-04-26 14:59:44 -07:00
mA
2022-04-29 16:48:53 -07:00
* offset 4168
*/
uint16_t mc33_i_boost;
/**
2021-04-26 14:59:44 -07:00
mA
2022-04-29 16:48:53 -07:00
* offset 4170
*/
uint16_t mc33_i_peak;
/**
2021-04-26 14:59:44 -07:00
mA
2022-04-29 16:48:53 -07:00
* offset 4172
*/
uint16_t mc33_i_hold;
/**
2021-04-26 14:59:44 -07:00
us
2022-04-29 16:48:53 -07:00
* offset 4174
*/
uint16_t mc33_t_max_boost;
/**
2021-04-26 14:59:44 -07:00
us
2022-04-29 16:48:53 -07:00
* offset 4176
*/
uint16_t mc33_t_peak_off;
/**
2021-04-26 14:59:44 -07:00
us
2022-04-29 16:48:53 -07:00
* offset 4178
*/
uint16_t mc33_t_peak_tot;
/**
2021-04-26 14:59:44 -07:00
us
2022-04-29 16:48:53 -07:00
* offset 4180
*/
uint16_t mc33_t_bypass;
/**
2021-04-26 14:59:44 -07:00
us
2022-04-29 16:48:53 -07:00
* offset 4182
*/
uint16_t mc33_t_hold_off;
/**
2021-04-26 14:59:44 -07:00
us
2022-04-29 16:48:53 -07:00
* offset 4184
*/
uint16_t mc33_t_hold_tot;
/**
2022-04-29 16:48:53 -07:00
* offset 4186
*/
2021-06-12 04:28:45 -07:00
pin_input_mode_e tcuUpshiftButtonPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 4187
2021-06-12 04:28:45 -07:00
*/
pin_input_mode_e tcuDownshiftButtonPinMode;
/**
2022-04-29 16:48:53 -07:00
* offset 4188
*/
pin_input_mode_e acSwitchMode;
/**
2022-04-29 16:48:53 -07:00
* offset 4189
*/
pin_output_mode_e tcu_solenoid_mode[TCU_SOLENOID_COUNT];
/**
2022-04-18 05:10:05 -07:00
* Knock sensor output knock detection threshold depending on current RPM.
2021-04-26 14:59:44 -07:00
dB
2022-04-29 16:48:53 -07:00
* offset 4195
*/
2022-04-18 05:10:05 -07:00
scaled_channel<int8_t, 2, 1> knockBaseNoise[ENGINE_NOISE_CURVE_SIZE];
2022-04-24 21:01:07 -07:00
/**
* need 4 byte alignment
units
2022-04-29 16:48:53 -07:00
* offset 4211
2022-04-24 21:01:07 -07:00
*/
2022-04-29 16:48:53 -07:00
uint8_t alignmentFill_at_4211[1];
/**
2021-10-30 07:50:41 -07:00
from
2022-04-29 16:48:53 -07:00
* offset 4212
*/
2021-10-30 07:50:41 -07:00
float triggerGapOverrideFrom[GAP_TRACKING_LENGTH];
2021-05-23 17:00:27 -07:00
/**
2022-04-29 16:48:53 -07:00
* offset 4284
2021-05-23 17:00:27 -07:00
*/
2022-04-28 05:34:00 -07:00
int8_t unused4080[12];
2021-09-29 20:55:33 -07:00
/**
2021-10-30 07:50:41 -07:00
to
2022-04-29 16:48:53 -07:00
* offset 4296
2021-09-29 20:55:33 -07:00
*/
2021-10-30 07:50:41 -07:00
float triggerGapOverrideTo[GAP_TRACKING_LENGTH];
/**
2021-11-05 20:28:22 -07:00
lobes/cam
2022-04-29 16:48:53 -07:00
* offset 4368
2021-10-30 07:50:41 -07:00
*/
2021-11-05 20:28:22 -07:00
uint8_t hpfpCamLobes;
/**
2022-04-29 16:48:53 -07:00
* offset 4369
2021-11-05 20:28:22 -07:00
*/
hpfp_cam_e hpfpCam;
/**
* Crank angle ATDC of first lobe peak
deg
2022-04-29 16:48:53 -07:00
* offset 4370
2021-11-05 20:28:22 -07:00
*/
uint8_t hpfpPeakPos;
/**
* If the requested activation time is below this angle, don't bother running the pump
deg
2022-04-29 16:48:53 -07:00
* offset 4371
2021-11-05 20:28:22 -07:00
*/
uint8_t hpfpMinAngle;
/**
* Size of the pump chamber in cc. Typical Bosch HDP5 has a 9.0mm diameter, typical BMW N* stroke is 4.4mm.
cc
2022-04-29 16:48:53 -07:00
* offset 4372
2021-11-05 20:28:22 -07:00
*/
scaled_channel<uint16_t, 1000, 1> 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)
deg
2022-04-29 16:48:53 -07:00
* offset 4374
2021-11-05 20:28:22 -07:00
*/
uint8_t hpfpActivationAngle;
/**
2022-04-29 16:48:53 -07:00
* offset 4375
2021-11-05 20:28:22 -07:00
*/
2022-04-21 06:14:29 -07:00
uint8_t issFilterReciprocal;
2021-11-05 20:28:22 -07:00
/**
%/kPa
2022-04-29 16:48:53 -07:00
* offset 4376
2021-11-05 20:28:22 -07:00
*/
scaled_channel<uint16_t, 1000, 1> hpfpPidP;
/**
%/kPa/lobe
2022-04-29 16:48:53 -07:00
* offset 4378
2021-11-05 20:28:22 -07:00
*/
scaled_channel<uint16_t, 100000, 1> 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.
kPa/s
2022-04-29 16:48:53 -07:00
* offset 4380
2021-11-05 20:28:22 -07:00
*/
uint16_t hpfpTargetDecay;
/**
%
2022-04-29 16:48:53 -07:00
* offset 4382
2021-11-05 20:28:22 -07:00
*/
scaled_channel<uint8_t, 2, 1> hpfpLobeProfileQuantityBins[HPFP_LOBE_PROFILE_SIZE];
/**
deg
2022-04-29 16:48:53 -07:00
* offset 4398
2021-11-05 20:28:22 -07:00
*/
scaled_channel<uint8_t, 2, 1> hpfpLobeProfileAngle[HPFP_LOBE_PROFILE_SIZE];
/**
volts
2022-04-29 16:48:53 -07:00
* offset 4414
2021-11-05 20:28:22 -07:00
*/
uint8_t hpfpDeadtimeVoltsBins[HPFP_DEADTIME_SIZE];
/**
ms
2022-04-29 16:48:53 -07:00
* offset 4422
2021-11-05 20:28:22 -07:00
*/
scaled_channel<uint16_t, 1000, 1> hpfpDeadtimeMS[HPFP_DEADTIME_SIZE];
/**
kPa
2022-04-29 16:48:53 -07:00
* offset 4438
2021-11-05 20:28:22 -07:00
*/
uint16_t hpfpTarget[HPFP_TARGET_SIZE][HPFP_TARGET_SIZE];
/**
load
2022-04-29 16:48:53 -07:00
* offset 4638
2021-11-05 20:28:22 -07:00
*/
scaled_channel<uint16_t, 10, 1> hpfpTargetLoadBins[HPFP_TARGET_SIZE];
/**
RPM
2022-04-29 16:48:53 -07:00
* offset 4658
2021-11-05 20:28:22 -07:00
*/
scaled_channel<uint8_t, 1, 50> hpfpTargetRpmBins[HPFP_TARGET_SIZE];
/**
%
2022-04-29 16:48:53 -07:00
* offset 4668
2021-11-05 20:28:22 -07:00
*/
int8_t hpfpCompensation[HPFP_COMPENSATION_SIZE][HPFP_COMPENSATION_SIZE];
/**
cc/lobe
2022-04-29 16:48:53 -07:00
* offset 4768
2021-11-05 20:28:22 -07:00
*/
scaled_channel<uint16_t, 1000, 1> hpfpCompensationLoadBins[HPFP_COMPENSATION_SIZE];
/**
RPM
2022-04-29 16:48:53 -07:00
* offset 4788
2021-11-05 20:28:22 -07:00
*/
scaled_channel<uint8_t, 1, 50> hpfpCompensationRpmBins[HPFP_COMPENSATION_SIZE];
2021-12-20 10:59:55 -08:00
/**
2022-04-29 16:48:53 -07:00
* offset 4798
2022-01-06 17:00:00 -08:00
*/
output_pin_e stepper_raw_output[4];
2022-01-13 19:39:21 -08:00
/**
ratio
2022-04-29 16:48:53 -07:00
* offset 4806
2022-01-13 19:39:21 -08:00
*/
scaled_channel<uint16_t, 100, 1> gearRatio[GEARS_COUNT];
2022-01-20 17:45:43 -08:00
/**
* We need to give engine time to build oil pressure without diverting it to VVT
ms
2022-04-29 16:48:53 -07:00
* offset 4822
2022-01-20 17:45:43 -08:00
*/
uint16_t vvtActivationDelayMs;
/**
2022-01-27 22:04:57 -08:00
deg C
2022-04-29 16:48:53 -07:00
* offset 4824
2021-11-05 20:28:22 -07:00
*/
2022-01-27 22:04:57 -08:00
int8_t wwCltBins[WWAE_TABLE_SIZE];
/**
2022-04-29 16:48:53 -07:00
* offset 4832
2022-01-27 22:04:57 -08:00
*/
scaled_channel<uint8_t, 100, 1> wwTauCltValues[WWAE_TABLE_SIZE];
/**
2022-04-29 16:48:53 -07:00
* offset 4840
2022-01-27 22:04:57 -08:00
*/
scaled_channel<uint8_t, 100, 1> wwBetaCltValues[WWAE_TABLE_SIZE];
/**
kPa
2022-04-29 16:48:53 -07:00
* offset 4848
2022-01-27 22:04:57 -08:00
*/
int8_t wwMapBins[WWAE_TABLE_SIZE];
/**
2022-04-29 16:48:53 -07:00
* offset 4856
2022-01-27 22:04:57 -08:00
*/
scaled_channel<uint8_t, 100, 1> wwTauMapValues[WWAE_TABLE_SIZE];
/**
2022-04-29 16:48:53 -07:00
* offset 4864
2022-01-27 22:04:57 -08:00
*/
scaled_channel<uint8_t, 100, 1> wwBetaMapValues[WWAE_TABLE_SIZE];
2021-11-05 20:28:22 -07:00
/**
2022-02-25 17:40:26 -08:00
Nm
2022-04-29 16:48:53 -07:00
* offset 4872
2021-11-05 20:28:22 -07:00
*/
2022-02-25 17:40:26 -08:00
scaled_channel<uint8_t, 1, 10> torqueTable[TORQUE_CURVE_SIZE][TORQUE_CURVE_SIZE];
/**
RPM
2022-04-29 16:48:53 -07:00
* offset 4908
2022-02-25 17:40:26 -08:00
*/
uint16_t torqueRpmBins[TORQUE_CURVE_SIZE];
/**
Load
2022-04-29 16:48:53 -07:00
* offset 4920
2022-02-25 17:40:26 -08:00
*/
uint16_t torqueLoadBins[TORQUE_CURVE_SIZE];
/**
2022-04-29 16:48:53 -07:00
* offset 4932
2022-02-25 17:40:26 -08:00
*/
2022-04-06 14:44:03 -07:00
GearControllerMode gearControllerMode;
/**
2022-04-29 16:48:53 -07:00
* offset 4933
2022-04-06 14:44:03 -07:00
*/
TransmissionControllerMode transmissionControllerMode;
2022-03-20 08:19:43 -07:00
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 4934
*/
uint8_t alignmentFill_at_4934[2];
/**
* offset 4936
2022-03-20 08:19:43 -07:00
*/
linear_sensor_s auxLinear1;
/**
2022-04-29 16:48:53 -07:00
* offset 4956
2022-03-20 08:19:43 -07:00
*/
linear_sensor_s auxLinear2;
/**
2022-04-29 16:48:53 -07:00
* offset 4976
2022-03-20 08:19:43 -07:00
*/
2022-04-12 16:21:41 -07:00
output_pin_e tcu_tcc_onoff_solenoid;
/**
2022-04-29 16:48:53 -07:00
* offset 4978
2022-04-12 16:21:41 -07:00
*/
pin_output_mode_e tcu_tcc_onoff_solenoid_mode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 4979
*/
uint8_t alignmentFill_at_4979[1];
/**
* offset 4980
2022-04-12 16:21:41 -07:00
*/
output_pin_e tcu_tcc_pwm_solenoid;
/**
2022-04-29 16:48:53 -07:00
* offset 4982
2022-04-12 16:21:41 -07:00
*/
pin_output_mode_e tcu_tcc_pwm_solenoid_mode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 4983
*/
uint8_t alignmentFill_at_4983[1];
/**
* offset 4984
2022-04-12 16:21:41 -07:00
*/
2022-04-18 17:15:57 -07:00
pwm_freq_t tcu_tcc_pwm_solenoid_freq;
/**
2022-04-29 16:48:53 -07:00
* offset 4986
2022-04-18 17:15:57 -07:00
*/
output_pin_e tcu_pc_solenoid_pin;
/**
2022-04-29 16:48:53 -07:00
* offset 4988
2022-04-18 17:15:57 -07:00
*/
pin_output_mode_e tcu_pc_solenoid_pin_mode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 4989
*/
uint8_t alignmentFill_at_4989[1];
/**
* offset 4990
2022-04-18 17:15:57 -07:00
*/
pwm_freq_t tcu_pc_solenoid_freq;
/**
2022-04-29 16:48:53 -07:00
* offset 4992
2022-04-18 17:15:57 -07:00
*/
output_pin_e tcu_32_solenoid_pin;
/**
2022-04-29 16:48:53 -07:00
* offset 4994
2022-04-18 17:15:57 -07:00
*/
pin_output_mode_e tcu_32_solenoid_pin_mode;
/**
2022-04-29 16:48:53 -07:00
* need 4 byte alignment
units
* offset 4995
*/
uint8_t alignmentFill_at_4995[1];
/**
* offset 4996
2022-04-18 17:15:57 -07:00
*/
pwm_freq_t tcu_32_solenoid_freq;
/**
units
2022-04-29 16:48:53 -07:00
* offset 4998
2022-04-18 17:15:57 -07:00
*/
2022-04-29 16:48:53 -07:00
uint8_t mainUnusedEnd[250];
2021-12-20 19:04:18 -08:00
};
2022-04-29 16:48:53 -07:00
static_assert(sizeof(engine_configuration_s) == 5248);
2021-12-20 19:04:18 -08:00
// start of cyl_trim_s
struct cyl_trim_s {
/**
* offset 0
*/
scaled_channel<int8_t, 5, 1> table[TRIM_SIZE][TRIM_SIZE];
};
2022-04-17 13:30:07 -07:00
static_assert(sizeof(cyl_trim_s) == 16);
// start of persistent_config_s
struct persistent_config_s {
/**
* offset 0
*/
engine_configuration_s engineConfiguration;
/**
2022-04-29 16:48:53 -07:00
* offset 5248
*/
error_message_t warning_message;
/**
2021-04-26 14:59:44 -07:00
C
2022-04-29 16:48:53 -07:00
* offset 5368
*/
float afterstartCoolantBins[AFTERSTART_HOLD_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
Seconds
2022-04-29 16:48:53 -07:00
* offset 5400
*/
float afterstartHoldTime[AFTERSTART_HOLD_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 5432
*/
float afterstartEnrich[AFTERSTART_ENRICH_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
Seconds
2022-04-29 16:48:53 -07:00
* offset 5464
*/
float afterstartDecayTime[AFTERSTART_DECAY_CURVE_SIZE];
/**
2022-04-29 16:48:53 -07:00
* offset 5496
*/
2021-12-22 05:15:15 -08:00
scaled_channel<uint8_t, 2, 1> boostTableOpenLoop[BOOST_RPM_COUNT][BOOST_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 5560
*/
2021-12-22 05:15:15 -08:00
scaled_channel<uint8_t, 1, 50> boostRpmBins[BOOST_RPM_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 5568
*/
2021-12-22 05:15:15 -08:00
scaled_channel<uint8_t, 1, 2> boostTableClosedLoop[BOOST_RPM_COUNT][BOOST_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 5632
*/
2021-12-22 05:15:15 -08:00
scaled_channel<uint8_t, 1, 1> boostTpsBins[BOOST_LOAD_COUNT];
/**
2021-11-05 19:01:07 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 5640
*/
2021-11-05 19:01:07 -07:00
uint8_t pedalToTpsTable[PEDAL_TO_TPS_SIZE][PEDAL_TO_TPS_SIZE];
/**
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 5704
*/
uint8_t pedalToTpsPedalBins[PEDAL_TO_TPS_SIZE];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 5712
*/
2021-12-22 05:15:15 -08:00
scaled_channel<uint8_t, 1, 50> pedalToTpsRpmBins[PEDAL_TO_TPS_SIZE];
/**
* CLT-based cranking position multiplier for simple manual idle controller
2021-04-26 14:59:44 -07:00
C
2022-04-29 16:48:53 -07:00
* offset 5720
*/
float cltCrankingCorrBins[CLT_CRANKING_CURVE_SIZE];
/**
* CLT-based cranking position multiplier for simple manual idle controller
2021-04-26 14:59:44 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 5752
*/
float cltCrankingCorr[CLT_CRANKING_CURVE_SIZE];
/**
* Optional timing advance table for Idle (see useSeparateAdvanceForIdle)
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 5784
*/
2021-12-19 21:40:11 -08:00
scaled_channel<uint8_t, 1, 50> idleAdvanceBins[IDLE_ADVANCE_CURVE_SIZE];
/**
* Optional timing advance table for Idle (see useSeparateAdvanceForIdle)
2021-04-26 14:59:44 -07:00
deg
2022-04-29 16:48:53 -07:00
* offset 5792
*/
float idleAdvance[IDLE_ADVANCE_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 5824
*/
2022-01-20 11:14:41 -08:00
scaled_channel<uint8_t, 1, 10> idleVeRpmBins[IDLE_VE_SIZE];
/**
load
2022-04-29 16:48:53 -07:00
* offset 5828
2022-01-20 11:14:41 -08:00
*/
scaled_channel<uint8_t, 1, 1> idleVeLoadBins[IDLE_VE_SIZE];
2021-12-19 21:40:11 -08:00
/**
%
2022-04-29 16:48:53 -07:00
* offset 5832
*/
2022-01-20 11:14:41 -08:00
scaled_channel<uint16_t, 10, 1> idleVeTable[IDLE_VE_SIZE][IDLE_VE_SIZE];
/**
2022-04-29 16:48:53 -07:00
* offset 5864
*/
2021-08-16 03:57:59 -07:00
lua_script_t luaScript;
/**
2021-04-26 14:59:44 -07:00
C
2022-04-29 16:48:53 -07:00
* offset 13864
*/
float cltFuelCorrBins[CLT_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
ratio
2022-04-29 16:48:53 -07:00
* offset 13928
*/
float cltFuelCorr[CLT_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
C
2022-04-29 16:48:53 -07:00
* offset 13992
*/
float iatFuelCorrBins[IAT_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
ratio
2022-04-29 16:48:53 -07:00
* offset 14056
*/
float iatFuelCorr[IAT_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
ratio
2022-04-29 16:48:53 -07:00
* offset 14120
*/
float crankingFuelCoef[CRANKING_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
C
2022-04-29 16:48:53 -07:00
* offset 14152
*/
float crankingFuelBins[CRANKING_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
ratio
2022-04-29 16:48:53 -07:00
* offset 14184
*/
float crankingCycleCoef[CRANKING_CURVE_SIZE];
/**
2021-04-26 14:59:44 -07:00
counter
2022-04-29 16:48:53 -07:00
* offset 14216
*/
float crankingCycleBins[CRANKING_CURVE_SIZE];
/**
* CLT-based idle position multiplier for simple manual idle controller
2021-04-26 14:59:44 -07:00
C
2022-04-29 16:48:53 -07:00
* offset 14248
*/
float cltIdleCorrBins[CLT_CURVE_SIZE];
/**
2021-11-06 19:14:13 -07:00
* CLT-based idle position multiplier for simple manual idle controller
2021-04-26 14:59:44 -07:00
ratio
2022-04-29 16:48:53 -07:00
* offset 14312
*/
float cltIdleCorr[CLT_CURVE_SIZE];
/**
* Also known as MAF transfer function.
* kg/hour value.
* By the way 2.081989116 kg/h = 1 ft3/m
2021-04-26 14:59:44 -07:00
kg/hour
2022-04-29 16:48:53 -07:00
* offset 14376
*/
float mafDecoding[MAF_DECODING_COUNT];
/**
2021-04-26 14:59:44 -07:00
V
2022-04-29 16:48:53 -07:00
* offset 15400
*/
float mafDecodingBins[MAF_DECODING_COUNT];
/**
2021-11-05 19:01:07 -07:00
deg
2022-04-29 16:48:53 -07:00
* offset 16424
*/
2021-12-22 05:15:15 -08:00
scaled_channel<int16_t, 10, 1> ignitionIatCorrTable[IGN_RPM_COUNT][IGN_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
Temperature
2022-04-29 16:48:53 -07:00
* offset 16936
*/
float ignitionIatCorrLoadBins[IGN_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 17000
*/
2021-12-20 19:04:18 -08:00
uint16_t ignitionIatCorrRpmBins[IGN_RPM_COUNT];
/**
2021-11-05 19:01:07 -07:00
deg
2022-04-29 16:48:53 -07:00
* offset 17032
*/
2021-12-22 05:15:15 -08:00
int16_t injectionPhase[IGN_RPM_COUNT][IGN_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
Load
2022-04-29 16:48:53 -07:00
* offset 17544
*/
2021-12-20 19:04:18 -08:00
uint16_t injPhaseLoadBins[FUEL_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 17576
*/
2021-12-20 19:04:18 -08:00
uint16_t injPhaseRpmBins[FUEL_RPM_COUNT];
/**
2021-11-05 19:01:07 -07:00
onoff
2022-04-29 16:48:53 -07:00
* offset 17608
*/
2021-11-05 19:01:07 -07:00
uint8_t tcuSolenoidTable[TCU_SOLENOID_COUNT][TCU_GEAR_COUNT];
/**
2021-11-05 19:01:07 -07:00
kPa
2022-04-29 16:48:53 -07:00
* offset 17668
*/
2022-04-28 05:34:00 -07:00
scaled_channel<uint16_t, 100, 1> mapEstimateTable[FUEL_RPM_COUNT][FUEL_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
% TPS
2022-04-29 16:48:53 -07:00
* offset 18180
*/
2021-11-05 16:52:02 -07:00
scaled_channel<uint16_t, 100, 1> mapEstimateTpsBins[FUEL_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 18212
*/
uint16_t mapEstimateRpmBins[FUEL_RPM_COUNT];
/**
2021-11-05 19:01:07 -07:00
value
2022-04-29 16:48:53 -07:00
* offset 18244
*/
2021-11-14 07:53:06 -08:00
uint8_t vvtTable1[SCRIPT_TABLE_8][SCRIPT_TABLE_8];
2021-02-18 15:20:11 -08:00
/**
2021-04-26 14:59:44 -07:00
L
2022-04-29 16:48:53 -07:00
* offset 18308
2021-02-18 15:20:11 -08:00
*/
2021-12-20 19:04:18 -08:00
uint16_t vvtTable1LoadBins[SCRIPT_TABLE_8];
2021-02-18 15:20:11 -08:00
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 18324
2021-02-18 15:20:11 -08:00
*/
2021-12-20 19:04:18 -08:00
uint16_t vvtTable1RpmBins[SCRIPT_TABLE_8];
2021-02-18 15:20:11 -08:00
/**
2021-11-05 19:01:07 -07:00
value
2022-04-29 16:48:53 -07:00
* offset 18340
2021-02-18 15:20:11 -08:00
*/
2021-11-14 07:53:06 -08:00
uint8_t vvtTable2[SCRIPT_TABLE_8][SCRIPT_TABLE_8];
2021-02-18 15:20:11 -08:00
/**
2021-04-26 14:59:44 -07:00
L
2022-04-29 16:48:53 -07:00
* offset 18404
2021-02-18 15:20:11 -08:00
*/
2021-12-20 19:04:18 -08:00
uint16_t vvtTable2LoadBins[SCRIPT_TABLE_8];
2021-02-18 15:20:11 -08:00
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 18420
2021-02-18 15:20:11 -08:00
*/
2021-12-20 19:04:18 -08:00
uint16_t vvtTable2RpmBins[SCRIPT_TABLE_8];
2021-02-18 15:20:11 -08:00
/**
2021-11-05 19:01:07 -07:00
deg
2022-04-29 16:48:53 -07:00
* offset 18436
*/
2021-12-22 05:15:15 -08:00
scaled_channel<int16_t, 10, 1> ignitionTable[IGN_RPM_COUNT][IGN_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
Load
2022-04-29 16:48:53 -07:00
* offset 18948
*/
2021-12-20 19:04:18 -08:00
uint16_t ignitionLoadBins[IGN_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 18980
*/
2021-12-20 19:04:18 -08:00
uint16_t ignitionRpmBins[IGN_RPM_COUNT];
/**
2021-11-05 19:01:07 -07:00
%
2022-04-29 16:48:53 -07:00
* offset 19012
*/
2021-12-22 05:15:15 -08:00
scaled_channel<uint16_t, 10, 1> veTable[FUEL_RPM_COUNT][FUEL_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
kPa
2022-04-29 16:48:53 -07:00
* offset 19524
*/
2021-12-20 19:04:18 -08:00
uint16_t veLoadBins[FUEL_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 19556
*/
2021-12-20 19:04:18 -08:00
uint16_t veRpmBins[FUEL_RPM_COUNT];
/**
2021-11-05 19:01:07 -07:00
lambda
2022-04-29 16:48:53 -07:00
* offset 19588
*/
2021-11-05 19:01:07 -07:00
scaled_channel<uint8_t, 147, 1> lambdaTable[FUEL_RPM_COUNT][FUEL_LOAD_COUNT];
/**
2022-04-29 16:48:53 -07:00
* offset 19844
*/
2021-12-20 19:04:18 -08:00
uint16_t lambdaLoadBins[FUEL_LOAD_COUNT];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 19876
*/
2021-12-20 19:04:18 -08:00
uint16_t lambdaRpmBins[FUEL_RPM_COUNT];
/**
2021-11-05 19:01:07 -07:00
value
2022-04-29 16:48:53 -07:00
* offset 19908
*/
2021-11-05 19:01:07 -07:00
float tpsTpsAccelTable[TPS_TPS_ACCEL_TABLE][TPS_TPS_ACCEL_TABLE];
/**
2021-04-26 14:59:44 -07:00
from
2022-04-29 16:48:53 -07:00
* offset 20164
*/
float tpsTpsAccelFromRpmBins[TPS_TPS_ACCEL_TABLE];
/**
2021-04-26 14:59:44 -07:00
to
2022-04-29 16:48:53 -07:00
* offset 20196
*/
float tpsTpsAccelToRpmBins[TPS_TPS_ACCEL_TABLE];
/**
2021-11-05 19:01:07 -07:00
value
2022-04-29 16:48:53 -07:00
* offset 20228
*/
2021-11-14 07:53:06 -08:00
float scriptTable1[SCRIPT_TABLE_8][SCRIPT_TABLE_8];
/**
2021-04-26 14:59:44 -07:00
L
2022-04-29 16:48:53 -07:00
* offset 20484
*/
2021-12-20 19:04:18 -08:00
uint16_t scriptTable1LoadBins[SCRIPT_TABLE_8];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 20500
*/
2021-12-20 19:04:18 -08:00
uint16_t scriptTable1RpmBins[SCRIPT_TABLE_8];
/**
2021-11-05 19:01:07 -07:00
value
2022-04-29 16:48:53 -07:00
* offset 20516
*/
2021-11-14 07:53:06 -08:00
uint8_t scriptTable2[SCRIPT_TABLE_8][SCRIPT_TABLE_8];
/**
2021-04-26 14:59:44 -07:00
L
2022-04-29 16:48:53 -07:00
* offset 20580
*/
2021-12-20 19:04:18 -08:00
uint16_t scriptTable2LoadBins[SCRIPT_TABLE_8];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 20596
*/
2021-12-20 19:04:18 -08:00
uint16_t scriptTable2RpmBins[SCRIPT_TABLE_8];
/**
2021-11-05 19:01:07 -07:00
value
2022-04-29 16:48:53 -07:00
* offset 20612
*/
2021-11-14 07:53:06 -08:00
uint8_t scriptTable3[SCRIPT_TABLE_8][SCRIPT_TABLE_8];
/**
2021-04-26 14:59:44 -07:00
L
2022-04-29 16:48:53 -07:00
* offset 20676
*/
2021-12-20 19:04:18 -08:00
uint16_t scriptTable3LoadBins[SCRIPT_TABLE_8];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 20692
*/
2021-12-20 19:04:18 -08:00
uint16_t scriptTable3RpmBins[SCRIPT_TABLE_8];
/**
2021-11-05 19:01:07 -07:00
value
2022-04-29 16:48:53 -07:00
* offset 20708
*/
2021-11-14 07:53:06 -08:00
uint8_t scriptTable4[SCRIPT_TABLE_8][SCRIPT_TABLE_8];
/**
2021-04-26 14:59:44 -07:00
L
2022-04-29 16:48:53 -07:00
* offset 20772
*/
2021-12-20 19:04:18 -08:00
uint16_t scriptTable4LoadBins[SCRIPT_TABLE_8];
/**
2021-04-26 14:59:44 -07:00
RPM
2022-04-29 16:48:53 -07:00
* offset 20788
2021-12-20 19:04:18 -08:00
*/
uint16_t scriptTable4RpmBins[SCRIPT_TABLE_8];
/**
2022-04-29 16:48:53 -07:00
* offset 20804
2021-12-20 19:04:18 -08:00
*/
uint16_t ignTrimLoadBins[TRIM_SIZE];
/**
rpm
2022-04-29 16:48:53 -07:00
* offset 20812
2021-12-20 19:04:18 -08:00
*/
uint16_t ignTrimRpmBins[TRIM_SIZE];
/**
2022-04-29 16:48:53 -07:00
* offset 20820
2021-12-20 19:04:18 -08:00
*/
cyl_trim_s ignTrims[12];
/**
2022-04-29 16:48:53 -07:00
* offset 21012
2021-12-20 19:04:18 -08:00
*/
uint16_t fuelTrimLoadBins[TRIM_SIZE];
/**
rpm
2022-04-29 16:48:53 -07:00
* offset 21020
2021-12-20 19:04:18 -08:00
*/
uint16_t fuelTrimRpmBins[TRIM_SIZE];
/**
2022-04-29 16:48:53 -07:00
* offset 21028
*/
2021-12-20 19:04:18 -08:00
cyl_trim_s fuelTrims[12];
2022-02-01 18:45:00 -08:00
/**
ratio
2022-04-29 16:48:53 -07:00
* offset 21220
2022-02-01 18:45:00 -08:00
*/
2022-04-26 16:08:29 -07:00
scaled_channel<uint16_t, 100, 1> crankingFuelCoefE100[CRANKING_CURVE_SIZE];
2022-04-18 17:15:57 -07:00
/**
Airmass
2022-04-29 16:48:53 -07:00
* offset 21236
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcAirmassBins[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21244
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcValsR[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21252
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcValsN[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21260
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcVals1[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21268
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcVals2[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21276
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcVals3[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21284
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcVals4[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21292
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcVals12[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21300
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcVals23[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21308
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcVals34[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21316
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcVals21[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21324
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcVals32[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21332
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_pcVals43[8];
/**
TPS
2022-04-29 16:48:53 -07:00
* offset 21340
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_tccTpsBins[8];
/**
MPH
2022-04-29 16:48:53 -07:00
* offset 21348
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_tccLockSpeed[8];
/**
MPH
2022-04-29 16:48:53 -07:00
* offset 21356
2022-04-18 17:15:57 -07:00
*/
uint8_t tcu_tccUnlockSpeed[8];
2022-04-23 04:41:19 -07:00
/**
KPH
2022-04-29 16:48:53 -07:00
* offset 21364
2022-04-23 04:41:19 -07:00
*/
uint8_t tcu_32SpeedBins[8];
/**
%
2022-04-29 16:48:53 -07:00
* offset 21372
2022-04-23 04:41:19 -07:00
*/
uint8_t tcu_32Vals[8];
};
2022-04-29 16:48:53 -07:00
static_assert(sizeof(persistent_config_s) == 21380);
// end
2022-04-30 10:07:03 -07:00
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on config/boards/subaru_eg33/config/gen_subaru_config.sh integration/rusefi_config.txt Sat Apr 30 17:04:55 UTC 2022