Merge branch 'rusefi:master' into master

This commit is contained in:
3eR01ive 2024-05-04 17:09:29 +03:00 committed by GitHub
commit 7f683b40b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
166 changed files with 482 additions and 444 deletions

View File

@ -22,6 +22,7 @@
#define ts_show_ignitionPinMode false
#define ts_show_tps2 false
#define ts_show_speedo_settings false
#define ts_show_ford_toyota_tps_pps false
#define ts_show_bank2_cam1 false
#define ts_show_bank2_cam2 false

View File

@ -19,6 +19,7 @@
#define ts_show_sd_pins false
#define ts_show_ignitionPinMode false
#define ts_show_tps2 false
#define ts_show_ford_toyota_tps_pps false
! bad temporary solution of hardware issue https://github.com/rusefi/rusefi/issues/4821
#define MAX_TPS_PPS_DISCREPANCY 10

View File

@ -20,6 +20,7 @@
#define ts_show_ignitionPinMode false
#define ts_show_tps2 false
#define ts_show_speedo_settings false
#define ts_show_ford_toyota_tps_pps false
#define ts_show_bank2_cam1 false
#define ts_show_bank2_cam2 false

View File

@ -20,6 +20,7 @@
#define ts_show_ignitionPinMode false
#define ts_show_tps2 false
#define ts_show_speedo_settings false
#define ts_show_ford_toyota_tps_pps false
#define ts_show_bank2_cam1 false
#define ts_show_bank2_cam2 false

View File

@ -117,12 +117,12 @@ void setAltPFactor(float p) {
}
void AlternatorController::onConfigurationChange(engine_configuration_s const * previousConfiguration) {
shouldResetPid = !alternatorPid.isSame(&previousConfiguration->alternatorControl);
shouldResetPid = !previousConfiguration || !alternatorPid.isSame(&previousConfiguration->alternatorControl);
}
void initAlternatorCtrl() {
addConsoleAction("altinfo", showAltInfo);
engine->module<AlternatorController>()->init();
if (!isBrainPinValid(engineConfiguration->alternatorControlPin))

View File

@ -17,8 +17,8 @@
#error "Unexpected OS ACCESS HERE"
#endif
static boostOpenLoop_Map3D_t boostMapOpen{"bo"};
static boostOpenLoop_Map3D_t boostMapClosed{"bc"};
static Map3D<BOOST_RPM_COUNT, BOOST_LOAD_COUNT, uint8_t, uint8_t, uint8_t> boostMapOpen{"bo"};
static Map3D<BOOST_RPM_COUNT, BOOST_LOAD_COUNT, uint8_t, uint8_t, uint8_t> boostMapClosed{"bc"};
static SimplePwm boostPwmControl("boost");
void BoostController::init(IPwm* pwm, const ValueProvider3D* openLoopMap, const ValueProvider3D* closedLoopTargetMap, pid_s* pidParams) {
@ -39,7 +39,7 @@ void BoostController::resetLua() {
}
void BoostController::onConfigurationChange(engine_configuration_s const * previousConfig) {
if (!m_pid.isSame(&previousConfig->boostPid)) {
if (!previousConfig || !m_pid.isSame(&previousConfig->boostPid)) {
m_shouldResetPid = true;
}
}

View File

@ -7,12 +7,14 @@ static GppwmChannel channels[GPPWM_CHANNELS];
static OutputPin pins[GPPWM_CHANNELS];
static SimplePwm outputs[GPPWM_CHANNELS];
typedef Map3D<GPPWM_RPM_COUNT, GPPWM_LOAD_COUNT, uint8_t, int16_t, int16_t> gppwm_Map3D_t;
static gppwm_Map3D_t table1{"gppwm1"};
static gppwm_Map3D_t table2{"gppwm2"};
static gppwm_Map3D_t table3{"gppwm3"};
static gppwm_Map3D_t table4{"gppwm4"};
static gppwm_Map3D_t* tables[] = {
static gppwm_Map3D_t* const tables[] = {
&table1,
&table2,
&table3,

View File

@ -399,7 +399,7 @@ void IdleController::onSlowCallback() {
void IdleController::onConfigurationChange(engine_configuration_s const * previousConfiguration) {
#if ! EFI_UNIT_TEST
shouldResetPid = !getIdlePid()->isSame(&previousConfiguration->idleRpmPid);
shouldResetPid = !previousConfiguration || !getIdlePid()->isSame(&previousConfiguration->idleRpmPid);
mustResetPid = shouldResetPid;
#endif
}

View File

@ -43,7 +43,7 @@ void VvtController::onFastCallback() {
}
void VvtController::onConfigurationChange(engine_configuration_s const * previousConfig) {
if (!m_pid.isSame(&previousConfig->auxPid[m_cam])) {
if (!previousConfig || !m_pid.isSame(&previousConfig->auxPid[m_cam])) {
m_pid.reset();
}
}

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3214829951
#define SIGNATURE_HASH 1941101659
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-2chan.3214829951"
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-2chan.1941101659"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1259,7 +1259,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3845944369
#define SIGNATURE_HASH 688963861
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1590,6 +1590,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1644,7 +1645,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-4chan.3845944369"
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-4chan.688963861"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1259,7 +1259,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3845944369
#define SIGNATURE_HASH 688963861
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1590,6 +1590,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1644,7 +1645,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-4chan_f7.3845944369"
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-4chan_f7.688963861"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2930277916
#define SIGNATURE_HASH 1652869944
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-8chan-revA.2930277916"
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-8chan-revA.1652869944"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2500149324
#define SIGNATURE_HASH 1495922024
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-8chan.2500149324"
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-8chan.1495922024"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2500149324
#define SIGNATURE_HASH 1495922024
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-8chan_f7.2500149324"
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-8chan_f7.1495922024"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4181980555
#define SIGNATURE_HASH 896483503
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.at_start_f435.4181980555"
#define TS_SIGNATURE "rusEFI master.2024.05.04.at_start_f435.896483503"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3175358917
#define SIGNATURE_HASH 1902679265
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.atlas.3175358917"
#define TS_SIGNATURE "rusEFI master.2024.05.04.atlas.1902679265"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets true
#define SIGNATURE_HASH 1561464554
#define SIGNATURE_HASH 2436807630
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.f407-discovery.1561464554"
#define TS_SIGNATURE "rusEFI master.2024.05.04.f407-discovery.2436807630"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4181980555
#define SIGNATURE_HASH 896483503
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.f429-discovery.4181980555"
#define TS_SIGNATURE "rusEFI master.2024.05.04.f429-discovery.896483503"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3415536408
#define SIGNATURE_HASH 129517116
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.f469-discovery.3415536408"
#define TS_SIGNATURE "rusEFI master.2024.05.04.f469-discovery.129517116"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets true
#define SIGNATURE_HASH 2948628880
#define SIGNATURE_HASH 1676424372
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.frankenso_na6.2948628880"
#define TS_SIGNATURE "rusEFI master.2024.05.04.frankenso_na6.1676424372"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4181980555
#define SIGNATURE_HASH 896483503
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.haba208.4181980555"
#define TS_SIGNATURE "rusEFI master.2024.05.04.haba208.896483503"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 1883991311
#define SIGNATURE_HASH 3160922155
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-112-17.1883991311"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-112-17.3160922155"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 893030963
#define SIGNATURE_HASH 4178978583
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-gm-e67.893030963"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-gm-e67.4178978583"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2240869274
#define SIGNATURE_HASH 3319698031
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1591,6 +1591,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps false
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1645,7 +1646,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-honda-k.2240869274"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-honda-k.3319698031"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 274400171
#define SIGNATURE_HASH 3698833039
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-nb1.274400171"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-nb1.3698833039"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 435163392
#define SIGNATURE_HASH 1881334276
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps false
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen121nissan.435163392"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen121nissan.1881334276"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3376081005
#define SIGNATURE_HASH 85351753
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen121vag.3376081005"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen121vag.85351753"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 349298556
#define SIGNATURE_HASH 3640486488
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen128.349298556"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen128.3640486488"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3862924142
#define SIGNATURE_HASH 3331643608
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps false
#define ts_show_fuel_pump false
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen154hyundai.3862924142"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen154hyundai.3331643608"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3493375721
#define SIGNATURE_HASH 4036230495
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps false
#define ts_show_fuel_pump false
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen154hyundai_f7.3493375721"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen154hyundai_f7.4036230495"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2040660247
#define SIGNATURE_HASH 3046028339
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen72.2040660247"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen72.3046028339"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2631099757
#define SIGNATURE_HASH 1358942281
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen81.2631099757"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen81.1358942281"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2347790382
#define SIGNATURE_HASH 1205650698
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output false
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen88bmw.2347790382"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen88bmw.1205650698"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 1843795563
#define SIGNATURE_HASH 2714411855
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellenNA6.1843795563"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellenNA6.2714411855"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1259,7 +1259,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2453427365
#define SIGNATURE_HASH 1578164609
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1590,6 +1590,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1644,7 +1645,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellenNA8_96.2453427365"
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellenNA8_96.1578164609"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 1308216660
#define SIGNATURE_HASH 2178250864
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.m74_9.1308216660"
#define TS_SIGNATURE "rusEFI master.2024.05.04.m74_9.2178250864"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets true
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3071970725
#define SIGNATURE_HASH 2067150977
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.mre_f4.3071970725"
#define TS_SIGNATURE "rusEFI master.2024.05.04.mre_f4.2067150977"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_microRusEFI_presets true
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3071970725
#define SIGNATURE_HASH 2067150977
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.mre_f7.3071970725"
#define TS_SIGNATURE "rusEFI master.2024.05.04.mre_f7.2067150977"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4181980555
#define SIGNATURE_HASH 896483503
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.nucleo_f413.4181980555"
#define TS_SIGNATURE "rusEFI master.2024.05.04.nucleo_f413.896483503"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3386325019
#define SIGNATURE_HASH 100371775
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.prometheus_405.3386325019"
#define TS_SIGNATURE "rusEFI master.2024.05.04.prometheus_405.100371775"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3386325019
#define SIGNATURE_HASH 100371775
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.prometheus_469.3386325019"
#define TS_SIGNATURE "rusEFI master.2024.05.04.prometheus_469.100371775"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets true
#define show_test_presets false
#define SIGNATURE_HASH 324554665
#define SIGNATURE_HASH 3748985485
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.proteus_f4.324554665"
#define TS_SIGNATURE "rusEFI master.2024.05.04.proteus_f4.3748985485"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets true
#define show_test_presets false
#define SIGNATURE_HASH 324554665
#define SIGNATURE_HASH 3748985485
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.proteus_f7.324554665"
#define TS_SIGNATURE "rusEFI master.2024.05.04.proteus_f7.3748985485"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets true
#define show_test_presets false
#define SIGNATURE_HASH 324554665
#define SIGNATURE_HASH 3748985485
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.proteus_h7.324554665"
#define TS_SIGNATURE "rusEFI master.2024.05.04.proteus_h7.3748985485"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 1187542345
#define SIGNATURE_HASH 2330247277
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.s105.1187542345"
#define TS_SIGNATURE "rusEFI master.2024.05.04.s105.2330247277"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_Proteus_presets false
#define show_small_can_board_presets true
#define show_test_presets false
#define SIGNATURE_HASH 1605293993
#define SIGNATURE_HASH 2474795661
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1590,6 +1590,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1644,7 +1645,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.small-can-board.1605293993"
#define TS_SIGNATURE "rusEFI master.2024.05.04.small-can-board.2474795661"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4181980555
#define SIGNATURE_HASH 896483503
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.stm32f429_nucleo.4181980555"
#define TS_SIGNATURE "rusEFI master.2024.05.04.stm32f429_nucleo.896483503"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4181980555
#define SIGNATURE_HASH 896483503
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.stm32f767_nucleo.4181980555"
#define TS_SIGNATURE "rusEFI master.2024.05.04.stm32f767_nucleo.896483503"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4181980555
#define SIGNATURE_HASH 896483503
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.stm32h743_nucleo.4181980555"
#define TS_SIGNATURE "rusEFI master.2024.05.04.stm32h743_nucleo.896483503"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3016614328
#define SIGNATURE_HASH 2145473692
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.subaru_eg33_f7.3016614328"
#define TS_SIGNATURE "rusEFI master.2024.05.04.subaru_eg33_f7.2145473692"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4181980555
#define SIGNATURE_HASH 896483503
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.t-b-g.4181980555"
#define TS_SIGNATURE "rusEFI master.2024.05.04.t-b-g.896483503"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1257,7 +1257,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3278784771
#define SIGNATURE_HASH 256048167
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1588,6 +1588,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1642,7 +1643,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.tdg-pdm8.3278784771"
#define TS_SIGNATURE "rusEFI master.2024.05.04.tdg-pdm8.256048167"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1258,7 +1258,7 @@
#define show_Proteus_presets false
#define show_test_presets false
#define show_uaefi_presets true
#define SIGNATURE_HASH 2201585840
#define SIGNATURE_HASH 1326792084
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1589,6 +1589,7 @@
#define ts_show_fancy_options true
#define ts_show_firing_order true
#define ts_show_forced_induction true
#define ts_show_ford_toyota_tps_pps true
#define ts_show_fuel_pump true
#define ts_show_fuel_relay_pin true
#define ts_show_fuel_strategy true
@ -1643,7 +1644,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.05.04.uaefi.2201585840"
#define TS_SIGNATURE "rusEFI master.2024.05.04.uaefi.1326792084"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3214829951
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-2chan.3214829951"
#define SIGNATURE_HASH 1941101659
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-2chan.1941101659"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3845944369
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-4chan.3845944369"
#define SIGNATURE_HASH 688963861
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-4chan.688963861"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3845944369
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-4chan_f7.3845944369"
#define SIGNATURE_HASH 688963861
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-4chan_f7.688963861"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2930277916
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-8chan-revA.2930277916"
#define SIGNATURE_HASH 1652869944
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-8chan-revA.1652869944"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2500149324
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-8chan.2500149324"
#define SIGNATURE_HASH 1495922024
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-8chan.1495922024"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2500149324
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-8chan_f7.2500149324"
#define SIGNATURE_HASH 1495922024
#define TS_SIGNATURE "rusEFI master.2024.05.04.alphax-8chan_f7.1495922024"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 4181980555
#define TS_SIGNATURE "rusEFI master.2024.05.04.at_start_f435.4181980555"
#define SIGNATURE_HASH 896483503
#define TS_SIGNATURE "rusEFI master.2024.05.04.at_start_f435.896483503"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3175358917
#define TS_SIGNATURE "rusEFI master.2024.05.04.atlas.3175358917"
#define SIGNATURE_HASH 1902679265
#define TS_SIGNATURE "rusEFI master.2024.05.04.atlas.1902679265"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1561464554
#define TS_SIGNATURE "rusEFI master.2024.05.04.f407-discovery.1561464554"
#define SIGNATURE_HASH 2436807630
#define TS_SIGNATURE "rusEFI master.2024.05.04.f407-discovery.2436807630"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 4181980555
#define TS_SIGNATURE "rusEFI master.2024.05.04.f429-discovery.4181980555"
#define SIGNATURE_HASH 896483503
#define TS_SIGNATURE "rusEFI master.2024.05.04.f429-discovery.896483503"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3415536408
#define TS_SIGNATURE "rusEFI master.2024.05.04.f469-discovery.3415536408"
#define SIGNATURE_HASH 129517116
#define TS_SIGNATURE "rusEFI master.2024.05.04.f469-discovery.129517116"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2948628880
#define TS_SIGNATURE "rusEFI master.2024.05.04.frankenso_na6.2948628880"
#define SIGNATURE_HASH 1676424372
#define TS_SIGNATURE "rusEFI master.2024.05.04.frankenso_na6.1676424372"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 4181980555
#define TS_SIGNATURE "rusEFI master.2024.05.04.haba208.4181980555"
#define SIGNATURE_HASH 896483503
#define TS_SIGNATURE "rusEFI master.2024.05.04.haba208.896483503"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1883991311
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-112-17.1883991311"
#define SIGNATURE_HASH 3160922155
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-112-17.3160922155"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 893030963
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-gm-e67.893030963"
#define SIGNATURE_HASH 4178978583
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-gm-e67.4178978583"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2240869274
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-honda-k.2240869274"
#define SIGNATURE_HASH 3319698031
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-honda-k.3319698031"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 274400171
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-nb1.274400171"
#define SIGNATURE_HASH 3698833039
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen-nb1.3698833039"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 435163392
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen121nissan.435163392"
#define SIGNATURE_HASH 1881334276
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen121nissan.1881334276"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3376081005
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen121vag.3376081005"
#define SIGNATURE_HASH 85351753
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen121vag.85351753"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 349298556
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen128.349298556"
#define SIGNATURE_HASH 3640486488
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen128.3640486488"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3862924142
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen154hyundai.3862924142"
#define SIGNATURE_HASH 3331643608
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen154hyundai.3331643608"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3493375721
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen154hyundai_f7.3493375721"
#define SIGNATURE_HASH 4036230495
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen154hyundai_f7.4036230495"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2040660247
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen72.2040660247"
#define SIGNATURE_HASH 3046028339
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen72.3046028339"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2631099757
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen81.2631099757"
#define SIGNATURE_HASH 1358942281
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen81.1358942281"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2347790382
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen88bmw.2347790382"
#define SIGNATURE_HASH 1205650698
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellen88bmw.1205650698"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1843795563
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellenNA6.1843795563"
#define SIGNATURE_HASH 2714411855
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellenNA6.2714411855"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2453427365
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellenNA8_96.2453427365"
#define SIGNATURE_HASH 1578164609
#define TS_SIGNATURE "rusEFI master.2024.05.04.hellenNA8_96.1578164609"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1308216660
#define TS_SIGNATURE "rusEFI master.2024.05.04.m74_9.1308216660"
#define SIGNATURE_HASH 2178250864
#define TS_SIGNATURE "rusEFI master.2024.05.04.m74_9.2178250864"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3071970725
#define TS_SIGNATURE "rusEFI master.2024.05.04.mre_f4.3071970725"
#define SIGNATURE_HASH 2067150977
#define TS_SIGNATURE "rusEFI master.2024.05.04.mre_f4.2067150977"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3071970725
#define TS_SIGNATURE "rusEFI master.2024.05.04.mre_f7.3071970725"
#define SIGNATURE_HASH 2067150977
#define TS_SIGNATURE "rusEFI master.2024.05.04.mre_f7.2067150977"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 4181980555
#define TS_SIGNATURE "rusEFI master.2024.05.04.nucleo_f413.4181980555"
#define SIGNATURE_HASH 896483503
#define TS_SIGNATURE "rusEFI master.2024.05.04.nucleo_f413.896483503"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3386325019
#define TS_SIGNATURE "rusEFI master.2024.05.04.prometheus_405.3386325019"
#define SIGNATURE_HASH 100371775
#define TS_SIGNATURE "rusEFI master.2024.05.04.prometheus_405.100371775"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3386325019
#define TS_SIGNATURE "rusEFI master.2024.05.04.prometheus_469.3386325019"
#define SIGNATURE_HASH 100371775
#define TS_SIGNATURE "rusEFI master.2024.05.04.prometheus_469.100371775"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 324554665
#define TS_SIGNATURE "rusEFI master.2024.05.04.proteus_f4.324554665"
#define SIGNATURE_HASH 3748985485
#define TS_SIGNATURE "rusEFI master.2024.05.04.proteus_f4.3748985485"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 324554665
#define TS_SIGNATURE "rusEFI master.2024.05.04.proteus_f7.324554665"
#define SIGNATURE_HASH 3748985485
#define TS_SIGNATURE "rusEFI master.2024.05.04.proteus_f7.3748985485"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 324554665
#define TS_SIGNATURE "rusEFI master.2024.05.04.proteus_h7.324554665"
#define SIGNATURE_HASH 3748985485
#define TS_SIGNATURE "rusEFI master.2024.05.04.proteus_h7.3748985485"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1187542345
#define TS_SIGNATURE "rusEFI master.2024.05.04.s105.1187542345"
#define SIGNATURE_HASH 2330247277
#define TS_SIGNATURE "rusEFI master.2024.05.04.s105.2330247277"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1605293993
#define TS_SIGNATURE "rusEFI master.2024.05.04.small-can-board.1605293993"
#define SIGNATURE_HASH 2474795661
#define TS_SIGNATURE "rusEFI master.2024.05.04.small-can-board.2474795661"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 4181980555
#define TS_SIGNATURE "rusEFI master.2024.05.04.stm32f429_nucleo.4181980555"
#define SIGNATURE_HASH 896483503
#define TS_SIGNATURE "rusEFI master.2024.05.04.stm32f429_nucleo.896483503"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 4181980555
#define TS_SIGNATURE "rusEFI master.2024.05.04.stm32f767_nucleo.4181980555"
#define SIGNATURE_HASH 896483503
#define TS_SIGNATURE "rusEFI master.2024.05.04.stm32f767_nucleo.896483503"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 4181980555
#define TS_SIGNATURE "rusEFI master.2024.05.04.stm32h743_nucleo.4181980555"
#define SIGNATURE_HASH 896483503
#define TS_SIGNATURE "rusEFI master.2024.05.04.stm32h743_nucleo.896483503"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3016614328
#define TS_SIGNATURE "rusEFI master.2024.05.04.subaru_eg33_f7.3016614328"
#define SIGNATURE_HASH 2145473692
#define TS_SIGNATURE "rusEFI master.2024.05.04.subaru_eg33_f7.2145473692"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 4181980555
#define TS_SIGNATURE "rusEFI master.2024.05.04.t-b-g.4181980555"
#define SIGNATURE_HASH 896483503
#define TS_SIGNATURE "rusEFI master.2024.05.04.t-b-g.896483503"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3278784771
#define TS_SIGNATURE "rusEFI master.2024.05.04.tdg-pdm8.3278784771"
#define SIGNATURE_HASH 256048167
#define TS_SIGNATURE "rusEFI master.2024.05.04.tdg-pdm8.256048167"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2201585840
#define TS_SIGNATURE "rusEFI master.2024.05.04.uaefi.2201585840"
#define SIGNATURE_HASH 1326792084
#define TS_SIGNATURE "rusEFI master.2024.05.04.uaefi.1326792084"

View File

@ -2405,6 +2405,7 @@ end_struct
! some board files override this value using prepend file
#define ts_show_ign_key_switch false
#define ts_show_ford_toyota_tps_pps true
#define ts_show_ign_key_analog_input false
#define ts_show_output_diag false
#define ts_show_top_level_can_menu true

Some files were not shown because too many files have changed in this diff Show More