Auto-generated configs and docs

This commit is contained in:
GitHub gen-configs Action 2024-06-23 21:46:02 +00:00
parent d191581824
commit c148f959a8
153 changed files with 612 additions and 403 deletions

View File

@ -120,6 +120,7 @@ entry = rawTps1Primary, "rawTps1Primary", float, "%.3f"
entry = rawClt, "rawClt", float, "%.3f"
entry = rawIat, "rawIat", float, "%.3f"
entry = rawOilPressure, "rawOilPressure", float, "%.3f"
entry = rawAcPressure, "rawAcPressure", float, "%.3f"
entry = fuelClosedLoopBinIdx, "fuelClosedLoopBinIdx", int, "%d"
entry = rawPpsPrimary, "rawPpsPrimary", float, "%.3f"
entry = rawPpsSecondary, "rawPpsSecondary", float, "%.3f"

View File

@ -121,7 +121,8 @@ rawTps1Primary = scalar, S16, 216, "V", 0.001, 0
rawClt = scalar, S16, 218, "V", 0.001, 0
rawIat = scalar, S16, 220, "V", 0.001, 0
rawOilPressure = scalar, S16, 222, "V", 0.001, 0
fuelClosedLoopBinIdx = scalar, U08, 224, "", 1, 0
rawAcPressure = scalar, S16, 224, "V", 0.001, 0
fuelClosedLoopBinIdx = scalar, U08, 226, "", 1, 0
rawPpsPrimary = scalar, F32, 228, "V", 1, 0
rawPpsSecondary = scalar, F32, 232, "V", 1, 0
rawRawPpsPrimary = scalar, F32, 236, "V", 1, 0

View File

@ -97,8 +97,9 @@ rawTps1Primary("rawTps1Primary", SensorCategory.SENSOR_INPUTS, FieldType.INT16,
rawClt("rawClt", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 218, 0.001, 0.0, 5.0, "V"),
rawIat("rawIat", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 220, 0.001, 0.0, 5.0, "V"),
rawOilPressure("rawOilPressure", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 222, 0.001, 0.0, 5.0, "V"),
fuelClosedLoopBinIdx("fuelClosedLoopBinIdx", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 224, 1.0, 0.0, 0.0, ""),
alignmentFill_at_225("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 225, 1.0, -20.0, 100.0, "units"),
rawAcPressure("rawAcPressure", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 224, 0.001, 0.0, 5.0, "V"),
fuelClosedLoopBinIdx("fuelClosedLoopBinIdx", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 226, 1.0, 0.0, 0.0, ""),
alignmentFill_at_227("need 4 byte alignment", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 227, 1.0, -20.0, 100.0, "units"),
rawPpsPrimary("rawPpsPrimary", SensorCategory.SENSOR_INPUTS, FieldType.INT, 228, 1.0, 0.0, 5.0, "V"),
rawPpsSecondary("rawPpsSecondary", SensorCategory.SENSOR_INPUTS, FieldType.INT, 232, 1.0, 0.0, 5.0, "V"),
rawRawPpsPrimary("rawRawPpsPrimary", SensorCategory.SENSOR_INPUTS, FieldType.INT, 236, 1.0, 0.0, 5.0, "V"),

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition_base-all.jar based on (unknown script) console/binary/output_channels.txt Sat Jun 22 17:16:04 UTC 2024
// this section was generated automatically by rusEFI tool config_definition_base-all.jar based on (unknown script) console/binary/output_channels.txt Sun Jun 23 21:44:26 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -619,15 +619,20 @@ struct output_channels_s {
*/
scaled_channel<int16_t, 1000, 1> rawOilPressure = (int16_t)0;
/**
* units: V
* offset 224
*/
scaled_channel<int16_t, 1000, 1> rawAcPressure = (int16_t)0;
/**
* offset 226
*/
uint8_t fuelClosedLoopBinIdx = (uint8_t)0;
/**
* need 4 byte alignment
* units: units
* offset 225
* offset 227
*/
uint8_t alignmentFill_at_225[3];
uint8_t alignmentFill_at_227[1];
/**
* units: V
* offset 228
@ -1144,10 +1149,10 @@ struct output_channels_s {
bool vvtChannel4 : 1 {};
/**
offset 640 bit 30 */
bool unusedBit_233_30 : 1 {};
bool unusedBit_234_30 : 1 {};
/**
offset 640 bit 31 */
bool unusedBit_233_31 : 1 {};
bool unusedBit_234_31 : 1 {};
/**
* offset 644
*/
@ -1324,4 +1329,4 @@ struct output_channels_s {
static_assert(sizeof(output_channels_s) == 836);
// end
// this section was generated automatically by rusEFI tool config_definition_base-all.jar based on (unknown script) console/binary/output_channels.txt Sat Jun 22 17:16:04 UTC 2024
// this section was generated automatically by rusEFI tool config_definition_base-all.jar based on (unknown script) console/binary/output_channels.txt Sun Jun 23 21:44:26 UTC 2024

View File

@ -96,6 +96,7 @@ static const LogField fields[] = {
{engine->outputChannels.rawClt, "rawClt", "V", 3},
{engine->outputChannels.rawIat, "rawIat", "V", 3},
{engine->outputChannels.rawOilPressure, "rawOilPressure", "V", 3},
{engine->outputChannels.rawAcPressure, "rawAcPressure", "V", 3},
{engine->outputChannels.fuelClosedLoopBinIdx, "fuelClosedLoopBinIdx", "", 0},
{engine->outputChannels.rawPpsPrimary, "rawPpsPrimary", "V", 3},
{engine->outputChannels.rawPpsSecondary, "rawPpsSecondary", "V", 3},

View File

@ -1275,7 +1275,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 461103785
#define SIGNATURE_HASH 3227425962
#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"
@ -1668,7 +1668,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.06.23.alphax-2chan.461103785"
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-2chan.3227425962"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 663154724
#define SIGNATURE_HASH 4238577191
#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"
@ -1669,7 +1669,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.06.23.alphax-4chan.663154724"
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-4chan.4238577191"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 663154724
#define SIGNATURE_HASH 4238577191
#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"
@ -1669,7 +1669,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.06.23.alphax-4chan_f7.663154724"
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-4chan_f7.4238577191"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1275,7 +1275,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 738987734
#define SIGNATURE_HASH 4146688213
#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"
@ -1668,7 +1668,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.06.23.alphax-8chan-revA.738987734"
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-8chan-revA.4146688213"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1275,7 +1275,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 396439686
#define SIGNATURE_HASH 3431222917
#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"
@ -1668,7 +1668,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.06.23.alphax-8chan.396439686"
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-8chan.3431222917"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1275,7 +1275,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 396439686
#define SIGNATURE_HASH 3431222917
#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"
@ -1668,7 +1668,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.06.23.alphax-8chan_f7.396439686"
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-8chan_f7.3431222917"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3905119468
#define SIGNATURE_HASH 2229951090
#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"
@ -1669,7 +1669,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.06.23.alphax-silver.3905119468"
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-silver.2229951090"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2436077031
#define SIGNATURE_HASH 1243016164
#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"
@ -1669,7 +1669,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.06.23.at_start_f435.2436077031"
#define TS_SIGNATURE "rusEFI master.2024.06.23.at_start_f435.1243016164"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3576971689
#define SIGNATURE_HASH 236011434
#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"
@ -1669,7 +1669,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.06.23.atlas.3576971689"
#define TS_SIGNATURE "rusEFI master.2024.06.23.atlas.236011434"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets true
#define SIGNATURE_HASH 895643270
#define SIGNATURE_HASH 3997634693
#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"
@ -1669,7 +1669,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.06.23.f407-discovery.895643270"
#define TS_SIGNATURE "rusEFI master.2024.06.23.f407-discovery.3997634693"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2436077031
#define SIGNATURE_HASH 1243016164
#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"
@ -1669,7 +1669,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.06.23.f429-discovery.2436077031"
#define TS_SIGNATURE "rusEFI master.2024.06.23.f429-discovery.1243016164"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2749666164
#define SIGNATURE_HASH 2025975159
#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"
@ -1669,7 +1669,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.06.23.f469-discovery.2749666164"
#define TS_SIGNATURE "rusEFI master.2024.06.23.f469-discovery.2025975159"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets true
#define SIGNATURE_HASH 3350258172
#define SIGNATURE_HASH 479567871
#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"
@ -1669,7 +1669,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.06.23.frankenso_na6.3350258172"
#define TS_SIGNATURE "rusEFI master.2024.06.23.frankenso_na6.479567871"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2436077031
#define SIGNATURE_HASH 1243016164
#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"
@ -1669,7 +1669,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.06.23.haba208.2436077031"
#define TS_SIGNATURE "rusEFI master.2024.06.23.haba208.1243016164"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 406523235
#define SIGNATURE_HASH 3273552736
#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"
@ -1670,7 +1670,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.06.23.hellen-112-17.406523235"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen-112-17.3273552736"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 1565192799
#define SIGNATURE_HASH 2255457372
#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"
@ -1669,7 +1669,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.06.23.hellen-gm-e67.1565192799"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen-gm-e67.2255457372"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1275,7 +1275,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4104939975
#define SIGNATURE_HASH 797513668
#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"
@ -1670,7 +1670,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.06.23.hellen-honda-k.4104939975"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen-honda-k.797513668"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2016109511
#define SIGNATURE_HASH 2735611332
#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"
@ -1670,7 +1670,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.06.23.hellen-nb1.2016109511"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen-nb1.2735611332"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3565041484
#define SIGNATURE_HASH 257640783
#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"
@ -1670,7 +1670,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.06.23.hellen121nissan.3565041484"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen121nissan.257640783"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2706016257
#define SIGNATURE_HASH 2054157826
#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"
@ -1670,7 +1670,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.06.23.hellen121vag.2706016257"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen121vag.2054157826"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2090974992
#define SIGNATURE_HASH 2810495251
#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"
@ -1670,7 +1670,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.06.23.hellen128.2090974992"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen128.2810495251"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 1657277840
#define SIGNATURE_HASH 3119346579
#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"
@ -1670,7 +1670,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.06.23.hellen154hyundai.1657277840"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen154hyundai.3119346579"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2099186209
#define SIGNATURE_HASH 2788848674
#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"
@ -1670,7 +1670,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.06.23.hellen154hyundai_f7.2099186209"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen154hyundai_f7.2788848674"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 299000187
#define SIGNATURE_HASH 3405193080
#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"
@ -1670,7 +1670,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.06.23.hellen72.299000187"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen72.3405193080"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4104324353
#define SIGNATURE_HASH 797342466
#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"
@ -1669,7 +1669,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.06.23.hellen81.4104324353"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen81.797342466"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3816820802
#define SIGNATURE_HASH 950365761
#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"
@ -1670,7 +1670,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.06.23.hellen88bmw.3816820802"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen88bmw.950365761"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 93746695
#define SIGNATURE_HASH 3736274948
#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"
@ -1670,7 +1670,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.06.23.hellenNA6.93746695"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellenNA6.3736274948"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1278,7 +1278,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4199298249
#define SIGNATURE_HASH 560548554
#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"
@ -1671,7 +1671,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.06.23.hellenNA8_96.4199298249"
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellenNA8_96.560548554"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 629779768
#define SIGNATURE_HASH 4272739131
#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"
@ -1670,7 +1670,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.06.23.m74_9.629779768"
#define TS_SIGNATURE "rusEFI master.2024.06.23.m74_9.4272739131"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets true
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2350180520
#define SIGNATURE_HASH 1462867627
#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"
@ -1670,7 +1670,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.06.23.mre-legacy_f4.2350180520"
#define TS_SIGNATURE "rusEFI master.2024.06.23.mre-legacy_f4.1462867627"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets true
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2350180520
#define SIGNATURE_HASH 1462867627
#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"
@ -1670,7 +1670,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.06.23.mre_f4.2350180520"
#define TS_SIGNATURE "rusEFI master.2024.06.23.mre_f4.1462867627"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_microRusEFI_presets true
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2350180520
#define SIGNATURE_HASH 1462867627
#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"
@ -1670,7 +1670,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.06.23.mre_f7.2350180520"
#define TS_SIGNATURE "rusEFI master.2024.06.23.mre_f7.1462867627"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2436077031
#define SIGNATURE_HASH 1243016164
#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"
@ -1669,7 +1669,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.06.23.nucleo_f413.2436077031"
#define TS_SIGNATURE "rusEFI master.2024.06.23.nucleo_f413.1243016164"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2712098935
#define SIGNATURE_HASH 2055349876
#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"
@ -1669,7 +1669,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.06.23.prometheus_405.2712098935"
#define TS_SIGNATURE "rusEFI master.2024.06.23.prometheus_405.2055349876"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2712098935
#define SIGNATURE_HASH 2055349876
#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"
@ -1669,7 +1669,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.06.23.prometheus_469.2712098935"
#define TS_SIGNATURE "rusEFI master.2024.06.23.prometheus_469.2055349876"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets true
#define show_test_presets false
#define SIGNATURE_HASH 2066231237
#define SIGNATURE_HASH 2685227462
#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"
@ -1669,7 +1669,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.06.23.proteus_f4.2066231237"
#define TS_SIGNATURE "rusEFI master.2024.06.23.proteus_f4.2685227462"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets true
#define show_test_presets false
#define SIGNATURE_HASH 2066231237
#define SIGNATURE_HASH 2685227462
#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"
@ -1669,7 +1669,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.06.23.proteus_f7.2066231237"
#define TS_SIGNATURE "rusEFI master.2024.06.23.proteus_f7.2685227462"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets true
#define show_test_presets false
#define SIGNATURE_HASH 2066231237
#define SIGNATURE_HASH 2685227462
#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"
@ -1669,7 +1669,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.06.23.proteus_h7.2066231237"
#define TS_SIGNATURE "rusEFI master.2024.06.23.proteus_h7.2685227462"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 783815973
#define SIGNATURE_HASH 4120734502
#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"
@ -1670,7 +1670,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.06.23.s105.783815973"
#define TS_SIGNATURE "rusEFI master.2024.06.23.s105.4120734502"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_Proteus_presets false
#define show_small_can_board_presets true
#define show_test_presets false
#define SIGNATURE_HASH 937342917
#define SIGNATURE_HASH 3975924166
#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"
@ -1671,7 +1671,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.06.23.small-can-board.937342917"
#define TS_SIGNATURE "rusEFI master.2024.06.23.small-can-board.3975924166"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2436077031
#define SIGNATURE_HASH 1243016164
#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"
@ -1669,7 +1669,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.06.23.stm32f429_nucleo.2436077031"
#define TS_SIGNATURE "rusEFI master.2024.06.23.stm32f429_nucleo.1243016164"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2436077031
#define SIGNATURE_HASH 1243016164
#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"
@ -1669,7 +1669,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.06.23.stm32f767_nucleo.2436077031"
#define TS_SIGNATURE "rusEFI master.2024.06.23.stm32f767_nucleo.1243016164"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2436077031
#define SIGNATURE_HASH 1243016164
#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"
@ -1669,7 +1669,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.06.23.stm32h743_nucleo.2436077031"
#define TS_SIGNATURE "rusEFI master.2024.06.23.stm32h743_nucleo.1243016164"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3686629844
#define SIGNATURE_HASH 10026967
#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"
@ -1669,7 +1669,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.06.23.subaru_eg33_f7.3686629844"
#define TS_SIGNATURE "rusEFI master.2024.06.23.subaru_eg33_f7.10026967"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2436077031
#define SIGNATURE_HASH 1243016164
#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"
@ -1669,7 +1669,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.06.23.t-b-g.2436077031"
#define TS_SIGNATURE "rusEFI master.2024.06.23.t-b-g.1243016164"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2870880623
#define SIGNATURE_HASH 1882937196
#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"
@ -1669,7 +1669,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.06.23.tdg-pdm8.2870880623"
#define TS_SIGNATURE "rusEFI master.2024.06.23.tdg-pdm8.1882937196"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1277,7 +1277,7 @@
#define show_Proteus_presets false
#define show_test_presets false
#define show_uaefi_presets true
#define SIGNATURE_HASH 3947489500
#define SIGNATURE_HASH 812422879
#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"
@ -1670,7 +1670,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.06.23.uaefi.3947489500"
#define TS_SIGNATURE "rusEFI master.2024.06.23.uaefi.812422879"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1276,7 +1276,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3284417749
#define SIGNATURE_HASH 417415894
#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"
@ -1669,7 +1669,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.06.23.uaefi121.3284417749"
#define TS_SIGNATURE "rusEFI master.2024.06.23.uaefi121.417415894"
#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 461103785
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-2chan.461103785"
#define SIGNATURE_HASH 3227425962
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-2chan.3227425962"

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 663154724
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-4chan.663154724"
#define SIGNATURE_HASH 4238577191
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-4chan.4238577191"

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 663154724
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-4chan_f7.663154724"
#define SIGNATURE_HASH 4238577191
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-4chan_f7.4238577191"

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 738987734
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-8chan-revA.738987734"
#define SIGNATURE_HASH 4146688213
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-8chan-revA.4146688213"

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 396439686
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-8chan.396439686"
#define SIGNATURE_HASH 3431222917
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-8chan.3431222917"

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 396439686
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-8chan_f7.396439686"
#define SIGNATURE_HASH 3431222917
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-8chan_f7.3431222917"

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 3905119468
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-silver.3905119468"
#define SIGNATURE_HASH 2229951090
#define TS_SIGNATURE "rusEFI master.2024.06.23.alphax-silver.2229951090"

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 2436077031
#define TS_SIGNATURE "rusEFI master.2024.06.23.at_start_f435.2436077031"
#define SIGNATURE_HASH 1243016164
#define TS_SIGNATURE "rusEFI master.2024.06.23.at_start_f435.1243016164"

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 3576971689
#define TS_SIGNATURE "rusEFI master.2024.06.23.atlas.3576971689"
#define SIGNATURE_HASH 236011434
#define TS_SIGNATURE "rusEFI master.2024.06.23.atlas.236011434"

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 895643270
#define TS_SIGNATURE "rusEFI master.2024.06.23.f407-discovery.895643270"
#define SIGNATURE_HASH 3997634693
#define TS_SIGNATURE "rusEFI master.2024.06.23.f407-discovery.3997634693"

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 2436077031
#define TS_SIGNATURE "rusEFI master.2024.06.23.f429-discovery.2436077031"
#define SIGNATURE_HASH 1243016164
#define TS_SIGNATURE "rusEFI master.2024.06.23.f429-discovery.1243016164"

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 2749666164
#define TS_SIGNATURE "rusEFI master.2024.06.23.f469-discovery.2749666164"
#define SIGNATURE_HASH 2025975159
#define TS_SIGNATURE "rusEFI master.2024.06.23.f469-discovery.2025975159"

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 3350258172
#define TS_SIGNATURE "rusEFI master.2024.06.23.frankenso_na6.3350258172"
#define SIGNATURE_HASH 479567871
#define TS_SIGNATURE "rusEFI master.2024.06.23.frankenso_na6.479567871"

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 2436077031
#define TS_SIGNATURE "rusEFI master.2024.06.23.haba208.2436077031"
#define SIGNATURE_HASH 1243016164
#define TS_SIGNATURE "rusEFI master.2024.06.23.haba208.1243016164"

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 406523235
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen-112-17.406523235"
#define SIGNATURE_HASH 3273552736
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen-112-17.3273552736"

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 1565192799
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen-gm-e67.1565192799"
#define SIGNATURE_HASH 2255457372
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen-gm-e67.2255457372"

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 4104939975
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen-honda-k.4104939975"
#define SIGNATURE_HASH 797513668
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen-honda-k.797513668"

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 2016109511
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen-nb1.2016109511"
#define SIGNATURE_HASH 2735611332
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen-nb1.2735611332"

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 3565041484
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen121nissan.3565041484"
#define SIGNATURE_HASH 257640783
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen121nissan.257640783"

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 2706016257
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen121vag.2706016257"
#define SIGNATURE_HASH 2054157826
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen121vag.2054157826"

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 2090974992
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen128.2090974992"
#define SIGNATURE_HASH 2810495251
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen128.2810495251"

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 1657277840
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen154hyundai.1657277840"
#define SIGNATURE_HASH 3119346579
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen154hyundai.3119346579"

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 2099186209
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen154hyundai_f7.2099186209"
#define SIGNATURE_HASH 2788848674
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen154hyundai_f7.2788848674"

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 299000187
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen72.299000187"
#define SIGNATURE_HASH 3405193080
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen72.3405193080"

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 4104324353
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen81.4104324353"
#define SIGNATURE_HASH 797342466
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen81.797342466"

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 3816820802
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen88bmw.3816820802"
#define SIGNATURE_HASH 950365761
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellen88bmw.950365761"

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 93746695
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellenNA6.93746695"
#define SIGNATURE_HASH 3736274948
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellenNA6.3736274948"

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 4199298249
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellenNA8_96.4199298249"
#define SIGNATURE_HASH 560548554
#define TS_SIGNATURE "rusEFI master.2024.06.23.hellenNA8_96.560548554"

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 629779768
#define TS_SIGNATURE "rusEFI master.2024.06.23.m74_9.629779768"
#define SIGNATURE_HASH 4272739131
#define TS_SIGNATURE "rusEFI master.2024.06.23.m74_9.4272739131"

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 2350180520
#define TS_SIGNATURE "rusEFI master.2024.06.23.mre-legacy_f4.2350180520"
#define SIGNATURE_HASH 1462867627
#define TS_SIGNATURE "rusEFI master.2024.06.23.mre-legacy_f4.1462867627"

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 2350180520
#define TS_SIGNATURE "rusEFI master.2024.06.23.mre_f4.2350180520"
#define SIGNATURE_HASH 1462867627
#define TS_SIGNATURE "rusEFI master.2024.06.23.mre_f4.1462867627"

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 2350180520
#define TS_SIGNATURE "rusEFI master.2024.06.23.mre_f7.2350180520"
#define SIGNATURE_HASH 1462867627
#define TS_SIGNATURE "rusEFI master.2024.06.23.mre_f7.1462867627"

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 2436077031
#define TS_SIGNATURE "rusEFI master.2024.06.23.nucleo_f413.2436077031"
#define SIGNATURE_HASH 1243016164
#define TS_SIGNATURE "rusEFI master.2024.06.23.nucleo_f413.1243016164"

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 2712098935
#define TS_SIGNATURE "rusEFI master.2024.06.23.prometheus_405.2712098935"
#define SIGNATURE_HASH 2055349876
#define TS_SIGNATURE "rusEFI master.2024.06.23.prometheus_405.2055349876"

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 2712098935
#define TS_SIGNATURE "rusEFI master.2024.06.23.prometheus_469.2712098935"
#define SIGNATURE_HASH 2055349876
#define TS_SIGNATURE "rusEFI master.2024.06.23.prometheus_469.2055349876"

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 2066231237
#define TS_SIGNATURE "rusEFI master.2024.06.23.proteus_f4.2066231237"
#define SIGNATURE_HASH 2685227462
#define TS_SIGNATURE "rusEFI master.2024.06.23.proteus_f4.2685227462"

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 2066231237
#define TS_SIGNATURE "rusEFI master.2024.06.23.proteus_f7.2066231237"
#define SIGNATURE_HASH 2685227462
#define TS_SIGNATURE "rusEFI master.2024.06.23.proteus_f7.2685227462"

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 2066231237
#define TS_SIGNATURE "rusEFI master.2024.06.23.proteus_h7.2066231237"
#define SIGNATURE_HASH 2685227462
#define TS_SIGNATURE "rusEFI master.2024.06.23.proteus_h7.2685227462"

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 783815973
#define TS_SIGNATURE "rusEFI master.2024.06.23.s105.783815973"
#define SIGNATURE_HASH 4120734502
#define TS_SIGNATURE "rusEFI master.2024.06.23.s105.4120734502"

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 937342917
#define TS_SIGNATURE "rusEFI master.2024.06.23.small-can-board.937342917"
#define SIGNATURE_HASH 3975924166
#define TS_SIGNATURE "rusEFI master.2024.06.23.small-can-board.3975924166"

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 2436077031
#define TS_SIGNATURE "rusEFI master.2024.06.23.stm32f429_nucleo.2436077031"
#define SIGNATURE_HASH 1243016164
#define TS_SIGNATURE "rusEFI master.2024.06.23.stm32f429_nucleo.1243016164"

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 2436077031
#define TS_SIGNATURE "rusEFI master.2024.06.23.stm32f767_nucleo.2436077031"
#define SIGNATURE_HASH 1243016164
#define TS_SIGNATURE "rusEFI master.2024.06.23.stm32f767_nucleo.1243016164"

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 2436077031
#define TS_SIGNATURE "rusEFI master.2024.06.23.stm32h743_nucleo.2436077031"
#define SIGNATURE_HASH 1243016164
#define TS_SIGNATURE "rusEFI master.2024.06.23.stm32h743_nucleo.1243016164"

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 3686629844
#define TS_SIGNATURE "rusEFI master.2024.06.23.subaru_eg33_f7.3686629844"
#define SIGNATURE_HASH 10026967
#define TS_SIGNATURE "rusEFI master.2024.06.23.subaru_eg33_f7.10026967"

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 2436077031
#define TS_SIGNATURE "rusEFI master.2024.06.23.t-b-g.2436077031"
#define SIGNATURE_HASH 1243016164
#define TS_SIGNATURE "rusEFI master.2024.06.23.t-b-g.1243016164"

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 2870880623
#define TS_SIGNATURE "rusEFI master.2024.06.23.tdg-pdm8.2870880623"
#define SIGNATURE_HASH 1882937196
#define TS_SIGNATURE "rusEFI master.2024.06.23.tdg-pdm8.1882937196"

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 3947489500
#define TS_SIGNATURE "rusEFI master.2024.06.23.uaefi.3947489500"
#define SIGNATURE_HASH 812422879
#define TS_SIGNATURE "rusEFI master.2024.06.23.uaefi.812422879"

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