Merge branch 'master' of https://github.com/rusefi/rusefi into master
This commit is contained in:
commit
6b4794eee1
|
@ -1026,7 +1026,7 @@
|
|||
#define SENT_INPUT_COUNT 1
|
||||
#define show_Frankenso_presets true
|
||||
#define show_test_presets true
|
||||
#define SIGNATURE_HASH snap_61497
|
||||
#define SIGNATURE_HASH snap_59303
|
||||
#define specs_s_size 12
|
||||
#define spi_device_e_auto_enum 0="SPI_NONE",1="SPI_DEVICE_1",2="SPI_DEVICE_2",3="SPI_DEVICE_3",4="SPI_DEVICE_4"
|
||||
#define spi_device_e_SPI_DEVICE_1 1
|
||||
|
@ -1300,7 +1300,7 @@
|
|||
#define ts_show_vbatt true
|
||||
#define ts_show_vr_threshold_2 true
|
||||
#define ts_show_vr_threshold_all true
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.cypress.snap_61497"
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.cypress.snap_59303"
|
||||
#define TS_SINGLE_WRITE_COMMAND 'W'
|
||||
#define TS_SINGLE_WRITE_COMMAND_char W
|
||||
#define TS_TEST_COMMAND 't'
|
||||
|
|
|
@ -1026,7 +1026,7 @@
|
|||
#define SENT_INPUT_COUNT 1
|
||||
#define show_Frankenso_presets true
|
||||
#define show_test_presets true
|
||||
#define SIGNATURE_HASH snap_21237
|
||||
#define SIGNATURE_HASH snap_17771
|
||||
#define specs_s_size 12
|
||||
#define spi_device_e_auto_enum 0="SPI_NONE",1="SPI_DEVICE_1",2="SPI_DEVICE_2",3="SPI_DEVICE_3",4="SPI_DEVICE_4"
|
||||
#define spi_device_e_SPI_DEVICE_1 1
|
||||
|
@ -1300,7 +1300,7 @@
|
|||
#define ts_show_vbatt true
|
||||
#define ts_show_vr_threshold_2 true
|
||||
#define ts_show_vr_threshold_all true
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.kin.snap_21237"
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.kin.snap_17771"
|
||||
#define TS_SINGLE_WRITE_COMMAND 'W'
|
||||
#define TS_SINGLE_WRITE_COMMAND_char W
|
||||
#define TS_TEST_COMMAND 't'
|
||||
|
|
|
@ -992,7 +992,7 @@
|
|||
#define show_Frankenso_presets false
|
||||
#define show_Proteus_presets false
|
||||
#define show_test_presets false
|
||||
#define SIGNATURE_HASH snap_10723
|
||||
#define SIGNATURE_HASH snap_15997
|
||||
#define specs_s_size 12
|
||||
#define spi_device_e_auto_enum 0="SPI_NONE",1="SPI_DEVICE_1",2="SPI_DEVICE_2",3="SPI_DEVICE_3",4="SPI_DEVICE_4"
|
||||
#define spi_device_e_SPI_DEVICE_1 1
|
||||
|
@ -1267,7 +1267,7 @@
|
|||
#define ts_show_vbatt true
|
||||
#define ts_show_vr_threshold_2 true
|
||||
#define ts_show_vr_threshold_all true
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.subaru_eg33_f7.snap_10723"
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.subaru_eg33_f7.snap_15997"
|
||||
#define TS_SINGLE_WRITE_COMMAND 'W'
|
||||
#define TS_SINGLE_WRITE_COMMAND_char W
|
||||
#define TS_TEST_COMMAND 't'
|
||||
|
|
|
@ -433,10 +433,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/tps_accel_state.txt Sun Apr 17 20:27:25 UTC 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/tps_accel_state.txt Mon Jan 02 17:57:24 UTC 2023
|
||||
// by class com.rusefi.output.CHeaderConsumer
|
||||
// begin
|
||||
#pragma once
|
||||
|
@ -32,15 +32,18 @@ struct tps_accel_state_s {
|
|||
offset 20 bit 1 */
|
||||
bool isBelowDecelThreshold : 1 {};
|
||||
/**
|
||||
* Accel: reset time
|
||||
offset 20 bit 2 */
|
||||
bool isTimeToResetAccumulator : 1 {};
|
||||
/**
|
||||
offset 20 bit 3 */
|
||||
bool isFractionalEnrichment : 1 {};
|
||||
/**
|
||||
* Accel: below threshold
|
||||
offset 20 bit 4 */
|
||||
bool belowEpsilon : 1 {};
|
||||
/**
|
||||
* Accel: too short
|
||||
offset 20 bit 5 */
|
||||
bool tooShort : 1 {};
|
||||
/**
|
||||
|
@ -149,4 +152,4 @@ struct tps_accel_state_s {
|
|||
static_assert(sizeof(tps_accel_state_s) == 48);
|
||||
|
||||
// end
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/tps_accel_state.txt Sun Apr 17 20:27:25 UTC 2022
|
||||
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/tps_accel_state.txt Mon Jan 02 17:57:24 UTC 2023
|
||||
|
|
|
@ -1026,7 +1026,7 @@
|
|||
#define SENT_INPUT_COUNT 1
|
||||
#define show_Frankenso_presets true
|
||||
#define show_test_presets true
|
||||
#define SIGNATURE_HASH snap_61497
|
||||
#define SIGNATURE_HASH snap_59303
|
||||
#define specs_s_size 12
|
||||
#define spi_device_e_auto_enum 0="SPI_NONE",1="SPI_DEVICE_1",2="SPI_DEVICE_2",3="SPI_DEVICE_3",4="SPI_DEVICE_4"
|
||||
#define spi_device_e_SPI_DEVICE_1 1
|
||||
|
@ -1300,7 +1300,7 @@
|
|||
#define ts_show_vbatt true
|
||||
#define ts_show_vr_threshold_2 true
|
||||
#define ts_show_vr_threshold_all true
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.all.snap_61497"
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.all.snap_59303"
|
||||
#define TS_SINGLE_WRITE_COMMAND 'W'
|
||||
#define TS_SINGLE_WRITE_COMMAND_char W
|
||||
#define TS_TEST_COMMAND 't'
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_63606
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.48way.snap_63606"
|
||||
#define SIGNATURE_HASH snap_61416
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.48way.snap_61416"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_61497
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.all.snap_61497"
|
||||
#define SIGNATURE_HASH snap_59303
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.all.snap_59303"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_27989
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.alphax-2chan.snap_27989"
|
||||
#define SIGNATURE_HASH snap_31435
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.alphax-2chan.snap_31435"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_57616
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.alphax-4chan.snap_57616"
|
||||
#define SIGNATURE_HASH snap_63118
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.alphax-4chan.snap_63118"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_30570
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.alphax-8chan.snap_30570"
|
||||
#define SIGNATURE_HASH snap_24820
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.alphax-8chan.snap_24820"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_1310
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.atlas.snap_1310"
|
||||
#define SIGNATURE_HASH snap_4736
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.atlas.snap_4736"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_41408
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.core8.snap_41408"
|
||||
#define SIGNATURE_HASH snap_46686
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.core8.snap_46686"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_61497
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.cypress.snap_61497"
|
||||
#define SIGNATURE_HASH snap_59303
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.cypress.snap_59303"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_61497
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.f407-discovery.snap_61497"
|
||||
#define SIGNATURE_HASH snap_59303
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.f407-discovery.snap_59303"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_61497
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.f429-discovery.snap_61497"
|
||||
#define SIGNATURE_HASH snap_59303
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.f429-discovery.snap_59303"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_3325
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.frankenso_na6.snap_3325"
|
||||
#define SIGNATURE_HASH snap_7011
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.frankenso_na6.snap_7011"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_46790
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.harley81.snap_46790"
|
||||
#define SIGNATURE_HASH snap_41304
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.harley81.snap_41304"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_37693
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen-gm-e67.snap_37693"
|
||||
#define SIGNATURE_HASH snap_33955
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen-gm-e67.snap_33955"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_49653
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen-nb1.snap_49653"
|
||||
#define SIGNATURE_HASH snap_54891
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen-nb1.snap_54891"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_3499
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen121nissan.snap_3499"
|
||||
#define SIGNATURE_HASH snap_6709
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen121nissan.snap_6709"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_26404
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen121vag.snap_26404"
|
||||
#define SIGNATURE_HASH snap_28858
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen121vag.snap_28858"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_36098
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen128.snap_36098"
|
||||
#define SIGNATURE_HASH snap_39580
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen128.snap_39580"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_51930
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen154hyundai.snap_51930"
|
||||
#define SIGNATURE_HASH snap_56644
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen154hyundai.snap_56644"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_65202
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen72.snap_65202"
|
||||
#define SIGNATURE_HASH snap_59692
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen72.snap_59692"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_28228
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen81.snap_28228"
|
||||
#define SIGNATURE_HASH snap_31194
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen81.snap_31194"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_58357
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen88bmw.snap_58357"
|
||||
#define SIGNATURE_HASH snap_62571
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellen88bmw.snap_62571"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_16654
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellenNA6.snap_16654"
|
||||
#define SIGNATURE_HASH snap_22160
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellenNA6.snap_22160"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_16849
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellenNA8_96.snap_16849"
|
||||
#define SIGNATURE_HASH snap_22095
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.hellenNA8_96.snap_22095"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on kinetis_gen_config.bat by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_21237
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.kin.snap_21237"
|
||||
#define SIGNATURE_HASH snap_17771
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.kin.snap_17771"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_11522
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.m74_9.snap_11522"
|
||||
#define SIGNATURE_HASH snap_15004
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.m74_9.snap_15004"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_38713
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.mre_f4.snap_38713"
|
||||
#define SIGNATURE_HASH snap_32935
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.mre_f4.snap_32935"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_38713
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.mre_f7.snap_38713"
|
||||
#define SIGNATURE_HASH snap_32935
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.mre_f7.snap_32935"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_10719
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.prometheus_405.snap_10719"
|
||||
#define SIGNATURE_HASH snap_15937
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.prometheus_405.snap_15937"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_10719
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.prometheus_469.snap_10719"
|
||||
#define SIGNATURE_HASH snap_15937
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.prometheus_469.snap_15937"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_15241
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.proteus_f4.snap_15241"
|
||||
#define SIGNATURE_HASH snap_11287
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.proteus_f4.snap_11287"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_15241
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.proteus_f7.snap_15241"
|
||||
#define SIGNATURE_HASH snap_11287
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.proteus_f7.snap_11287"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_15241
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.proteus_h7.snap_15241"
|
||||
#define SIGNATURE_HASH snap_11287
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.proteus_h7.snap_11287"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_64393
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.s105.snap_64393"
|
||||
#define SIGNATURE_HASH snap_60439
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.s105.snap_60439"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on config/boards/subaru_eg33/config/gen_subaru_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_10723
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.subaru_eg33_f7.snap_10723"
|
||||
#define SIGNATURE_HASH snap_15997
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.subaru_eg33_f7.snap_15997"
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
|
||||
//
|
||||
|
||||
#define SIGNATURE_HASH snap_15981
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.tdg-pdm8.snap_15981"
|
||||
#define SIGNATURE_HASH snap_10739
|
||||
#define TS_SIGNATURE "rusEFI 2023.01.02.tdg-pdm8.snap_10739"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.all.snap_61497"
|
||||
signature = "rusEFI 2023.01.02.all.snap_59303"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.all.snap_61497" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.all.snap_59303" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:29 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:58:06 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.48way.snap_63606"
|
||||
signature = "rusEFI 2023.01.02.48way.snap_61416"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.48way.snap_63606" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.48way.snap_61416" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:14 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:51 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.alphax-2chan.snap_27989"
|
||||
signature = "rusEFI 2023.01.02.alphax-2chan.snap_31435"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.alphax-2chan.snap_27989" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.alphax-2chan.snap_31435" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:22:52 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:28 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.alphax-4chan.snap_57616"
|
||||
signature = "rusEFI 2023.01.02.alphax-4chan.snap_63118"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.alphax-4chan.snap_57616" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.alphax-4chan.snap_63118" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:22:53 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:29 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.alphax-8chan.snap_30570"
|
||||
signature = "rusEFI 2023.01.02.alphax-8chan.snap_24820"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.alphax-8chan.snap_30570" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.alphax-8chan.snap_24820" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 16:37:57 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:31 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.atlas.snap_1310"
|
||||
signature = "rusEFI 2023.01.02.atlas.snap_4736"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.atlas.snap_1310" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.atlas.snap_4736" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:27 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:58:04 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.core8.snap_41408"
|
||||
signature = "rusEFI 2023.01.02.core8.snap_46686"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.core8.snap_41408" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.core8.snap_46686" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:13 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:50 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.cypress.snap_61497"
|
||||
signature = "rusEFI 2023.01.02.cypress.snap_59303"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.cypress.snap_61497" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.cypress.snap_59303" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat integration/rusefi_config.txt Mon Jan 02 01:22:50 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat integration/rusefi_config.txt Mon Jan 02 17:57:26 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.f407-discovery.snap_61497"
|
||||
signature = "rusEFI 2023.01.02.f407-discovery.snap_59303"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.f407-discovery.snap_61497" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.f407-discovery.snap_59303" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:24 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:58:02 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.f429-discovery.snap_61497"
|
||||
signature = "rusEFI 2023.01.02.f429-discovery.snap_59303"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.f429-discovery.snap_61497" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.f429-discovery.snap_59303" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:26 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:58:03 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.frankenso_na6.snap_3325"
|
||||
signature = "rusEFI 2023.01.02.frankenso_na6.snap_7011"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.frankenso_na6.snap_3325" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.frankenso_na6.snap_7011" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:17 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:55 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.harley81.snap_46790"
|
||||
signature = "rusEFI 2023.01.02.harley81.snap_41304"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.harley81.snap_46790" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.harley81.snap_41304" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:22:56 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:32 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.hellen-gm-e67.snap_37693"
|
||||
signature = "rusEFI 2023.01.02.hellen-gm-e67.snap_33955"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.hellen-gm-e67.snap_37693" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.hellen-gm-e67.snap_33955" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:07 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:44 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.hellen-nb1.snap_49653"
|
||||
signature = "rusEFI 2023.01.02.hellen-nb1.snap_54891"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.hellen-nb1.snap_49653" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.hellen-nb1.snap_54891" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:06 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:43 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.hellen121nissan.snap_3499"
|
||||
signature = "rusEFI 2023.01.02.hellen121nissan.snap_6709"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.hellen121nissan.snap_3499" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.hellen121nissan.snap_6709" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:22:59 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:37 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.hellen121vag.snap_26404"
|
||||
signature = "rusEFI 2023.01.02.hellen121vag.snap_28858"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.hellen121vag.snap_26404" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.hellen121vag.snap_28858" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:22:58 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:34 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.hellen128.snap_36098"
|
||||
signature = "rusEFI 2023.01.02.hellen128.snap_39580"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.hellen128.snap_36098" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.hellen128.snap_39580" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:22:57 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:33 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.hellen154hyundai.snap_51930"
|
||||
signature = "rusEFI 2023.01.02.hellen154hyundai.snap_56644"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.hellen154hyundai.snap_51930" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.hellen154hyundai.snap_56644" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:01 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:38 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.hellen72.snap_65202"
|
||||
signature = "rusEFI 2023.01.02.hellen72.snap_59692"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.hellen72.snap_65202" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.hellen72.snap_59692" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:03 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:40 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.hellen81.snap_28228"
|
||||
signature = "rusEFI 2023.01.02.hellen81.snap_31194"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.hellen81.snap_28228" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.hellen81.snap_31194" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:04 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:42 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.hellen88bmw.snap_58357"
|
||||
signature = "rusEFI 2023.01.02.hellen88bmw.snap_62571"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.hellen88bmw.snap_58357" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.hellen88bmw.snap_62571" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:02 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:39 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.hellenNA6.snap_16654"
|
||||
signature = "rusEFI 2023.01.02.hellenNA6.snap_22160"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.hellenNA6.snap_16654" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.hellenNA6.snap_22160" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:08 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:45 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.hellenNA8_96.snap_16849"
|
||||
signature = "rusEFI 2023.01.02.hellenNA8_96.snap_22095"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.hellenNA8_96.snap_16849" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.hellenNA8_96.snap_22095" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:09 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:46 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.kin.snap_21237"
|
||||
signature = "rusEFI 2023.01.02.kin.snap_17771"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.kin.snap_21237" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.kin.snap_17771" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Mon Jan 02 01:22:49 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Mon Jan 02 17:57:25 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.m74_9.snap_11522"
|
||||
signature = "rusEFI 2023.01.02.m74_9.snap_15004"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.m74_9.snap_11522" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.m74_9.snap_15004" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:15 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:52 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.mre_f4.snap_38713"
|
||||
signature = "rusEFI 2023.01.02.mre_f4.snap_32935"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.mre_f4.snap_38713" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.mre_f4.snap_32935" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:12 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:49 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.mre_f7.snap_38713"
|
||||
signature = "rusEFI 2023.01.02.mre_f7.snap_32935"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.mre_f7.snap_38713" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.mre_f7.snap_32935" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:10 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:48 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.prometheus_405.snap_10719"
|
||||
signature = "rusEFI 2023.01.02.prometheus_405.snap_15937"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.prometheus_405.snap_10719" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.prometheus_405.snap_15937" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:20 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:57 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.prometheus_469.snap_10719"
|
||||
signature = "rusEFI 2023.01.02.prometheus_469.snap_15937"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.prometheus_469.snap_10719" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.prometheus_469.snap_15937" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:19 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:56 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.proteus_f4.snap_15241"
|
||||
signature = "rusEFI 2023.01.02.proteus_f4.snap_11287"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.proteus_f4.snap_15241" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.proteus_f4.snap_11287" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:22 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:59 UTC 2023
|
||||
|
||||
pageSize = 26896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 26886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.proteus_f7.snap_15241"
|
||||
signature = "rusEFI 2023.01.02.proteus_f7.snap_11287"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.proteus_f7.snap_15241" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.proteus_f7.snap_11287" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:21 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:58 UTC 2023
|
||||
|
||||
pageSize = 26896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 26886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.proteus_h7.snap_15241"
|
||||
signature = "rusEFI 2023.01.02.proteus_h7.snap_11287"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.proteus_h7.snap_15241" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.proteus_h7.snap_11287" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:23 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:58:01 UTC 2023
|
||||
|
||||
pageSize = 26896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 26886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.s105.snap_64393"
|
||||
signature = "rusEFI 2023.01.02.s105.snap_60439"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.s105.snap_64393" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.s105.snap_60439" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 16:18:17 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:53 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.subaru_eg33_f7.snap_10723"
|
||||
signature = "rusEFI 2023.01.02.subaru_eg33_f7.snap_15997"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.subaru_eg33_f7.snap_10723" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.subaru_eg33_f7.snap_15997" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on config/boards/subaru_eg33/config/gen_subaru_config.sh integration/rusefi_config.txt Mon Jan 02 01:22:51 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on config/boards/subaru_eg33/config/gen_subaru_config.sh integration/rusefi_config.txt Mon Jan 02 17:57:27 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2023.01.02.tdg-pdm8.snap_15981"
|
||||
signature = "rusEFI 2023.01.02.tdg-pdm8.snap_10739"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmware version for title bar.
|
||||
signature= "rusEFI 2023.01.02.tdg-pdm8.snap_15981" ; signature is expected to be 7 or more characters.
|
||||
signature= "rusEFI 2023.01.02.tdg-pdm8.snap_10739" ; signature is expected to be 7 or more characters.
|
||||
|
||||
; TS will try to use legacy temp units in some cases, showing "deg F" on a CLT gauge that's actually deg C
|
||||
useLegacyFTempUnits = false
|
||||
|
@ -86,7 +86,7 @@ enable2ndByteCanID = false
|
|||
; name = scalar, type, offset, units, scale, translate, lo, hi, digits
|
||||
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:28 UTC 2023
|
||||
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:58:05 UTC 2023
|
||||
|
||||
pageSize = 22896
|
||||
page = 1
|
||||
|
@ -2175,9 +2175,7 @@ veBlends4_blendValues = array, U08, 22886, [8], "%", 0.5, 0, 0, 100, 1
|
|||
|
||||
|
||||
;
|
||||
; in order to add new TunerStudio gauge you need to chagne two places
|
||||
; 1) add a line here in '[OutputChannels]'
|
||||
; 2) in rusEFI firmware make a change to output_channels.txt
|
||||
; in order to add new TunerStudio data point you need to change one of *.txt files mentioned in LiveData.yaml
|
||||
;
|
||||
[OutputChannels]
|
||||
|
||||
|
@ -4709,10 +4707,10 @@ entry = extraFuel, "extraFuel", float, "%.3f"
|
|||
entry = valueFromTable, "valueFromTable", float, "%.3f"
|
||||
entry = isAboveAccelThreshold, "isAboveAccelThreshold", int, "%d"
|
||||
entry = isBelowDecelThreshold, "isBelowDecelThreshold", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "isTimeToResetAccumulator", int, "%d"
|
||||
entry = isTimeToResetAccumulator, "Accel: reset time", int, "%d"
|
||||
entry = isFractionalEnrichment, "isFractionalEnrichment", int, "%d"
|
||||
entry = belowEpsilon, "belowEpsilon", int, "%d"
|
||||
entry = tooShort, "tooShort", int, "%d"
|
||||
entry = belowEpsilon, "Accel: below threshold", int, "%d"
|
||||
entry = tooShort, "Accel: too short", int, "%d"
|
||||
entry = fractionalInjFuel, "fractionalInjFuel", float, "%.3f"
|
||||
entry = accumulatedValue, "accumulatedValue", float, "%.3f"
|
||||
entry = maxExtraPerCycle, "maxExtraPerCycle", float, "%.3f"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config.generated;
|
||||
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 01:23:31 UTC 2023
|
||||
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Mon Jan 02 17:58:10 UTC 2023
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -1182,7 +1182,7 @@ public class Fields {
|
|||
public static final int TS_RESPONSE_UNDERRUN = 0x80;
|
||||
public static final int TS_RESPONSE_UNRECOGNIZED_COMMAND = 0x83;
|
||||
public static final char TS_SET_LOGGER_SWITCH = 'l';
|
||||
public static final String TS_SIGNATURE = "rusEFI 2023.01.02.all.snap_61497";
|
||||
public static final String TS_SIGNATURE = "rusEFI 2023.01.02.all.snap_59303";
|
||||
public static final char TS_SINGLE_WRITE_COMMAND = 'W';
|
||||
public static final char TS_TEST_COMMAND = 't';
|
||||
public static final int TS_TOTAL_OUTPUT_SIZE = 1292;
|
||||
|
|
Loading…
Reference in New Issue