This commit is contained in:
Matthew Kennedy 2023-03-09 10:51:12 -08:00
commit b2010b6b8e
82 changed files with 214 additions and 245 deletions

View File

@ -412,7 +412,6 @@
#define GAUGE_NAME_BOOST_OUTPUT "Boost Output"
#define GAUGE_NAME_BOOST_TARGET "Boost Target"
#define GAUGE_NAME_CLT "CLT"
#define GAUGE_NAME_CPU_TEMP "CPU Temperature"
#define GAUGE_NAME_CURRENT_GEAR "Current Gear"
#define GAUGE_NAME_DEBUG_F1 "debug f1"
#define GAUGE_NAME_DEBUG_F2 "debug f2: iTerm"
@ -489,7 +488,6 @@
#define GAUGE_NAME_MAF "MAF"
#define GAUGE_NAME_MAP "MAP"
#define GAUGE_NAME_OIL_PRESSURE "Oil Pressure"
#define GAUGE_NAME_OIL_PRESSURE_UNITS "kPa"
#define GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH "Fuel pressure raw (high)"
#define GAUGE_NAME_RAW_FUEL_PRESSURE_LOW "Fuel pressure raw (low)"
#define GAUGE_NAME_RPM "RPM"
@ -995,7 +993,7 @@
#define show_Frankenso_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2512295414
#define SIGNATURE_HASH 69411060
#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
@ -1263,7 +1261,7 @@
#define ts_show_vbatt true
#define ts_show_vr_threshold_2 true
#define ts_show_vr_threshold_all true
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.subaru_eg33_f7.2512295414"
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.subaru_eg33_f7.69411060"
#define TS_SINGLE_WRITE_COMMAND 'W'
#define TS_SINGLE_WRITE_COMMAND_char W
#define TS_TEST_COMMAND 't'

View File

@ -25,7 +25,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -2,7 +2,7 @@ RPMValue("RPM", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 4, 1.0, 0.0, 8000
rpmAcceleration("dRPM", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 6, 1.0, 0.0, 5.0, "RPM/s"),
speedToRpmRatio("Gearbox Ratio", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 8, 0.01, 0.0, 0.0, "value"),
vehicleSpeedKph("Vehicle Speed", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 10, 1.0, 0.0, 0.0, "kph"),
internalMcuTemperature("CPU Temperature", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 11, 1.0, 0.0, 0.0, "deg C"),
internalMcuTemperature("ECU temperature", SensorCategory.SENSOR_INPUTS, FieldType.INT8, 11, 1.0, 0.0, 0.0, "deg C"),
coolant("CLT", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 12, 0.01, 0.0, 0.0, "deg C"),
intake("IAT", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 14, 0.01, 0.0, 0.0, "deg C"),
auxTemp1("auxTemp1", SensorCategory.SENSOR_INPUTS, FieldType.INT16, 16, 0.01, 0.0, 0.0, "deg C"),

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Thu Mar 02 19:53:03 UTC 2023
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Thu Mar 09 18:39:43 UTC 2023
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -156,7 +156,7 @@ struct output_channels_s {
*/
uint8_t vehicleSpeedKph = (uint8_t)0;
/**
* @@GAUGE_NAME_CPU_TEMP@@
* @@GAUGE_NAME_ECU_TEMPERATURE@@
deg C
* offset 11
*/
@ -1384,4 +1384,4 @@ struct output_channels_s {
static_assert(sizeof(output_channels_s) == 780);
// end
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Thu Mar 02 19:53:03 UTC 2023
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Thu Mar 09 18:39:43 UTC 2023

View File

@ -4,7 +4,7 @@ static constexpr LogField fields[] = {
{engine->outputChannels.rpmAcceleration, "dRPM", "RPM/s", 2},
{engine->outputChannels.speedToRpmRatio, "Gearbox Ratio", "value", 2},
{engine->outputChannels.vehicleSpeedKph, "Vehicle Speed", "kph", 1},
{engine->outputChannels.internalMcuTemperature, "CPU Temperature", "deg C", 0},
{engine->outputChannels.internalMcuTemperature, "ECU temperature", "deg C", 0},
{engine->outputChannels.coolant, "CLT", "deg C", 1},
{engine->outputChannels.intake, "IAT", "deg C", 1},
{engine->outputChannels.auxTemp1, "auxTemp1", "deg C", 1},

View File

@ -418,7 +418,6 @@
#define GAUGE_NAME_BOOST_OUTPUT "Boost Output"
#define GAUGE_NAME_BOOST_TARGET "Boost Target"
#define GAUGE_NAME_CLT "CLT"
#define GAUGE_NAME_CPU_TEMP "CPU Temperature"
#define GAUGE_NAME_CURRENT_GEAR "Current Gear"
#define GAUGE_NAME_DEBUG_F1 "debug f1"
#define GAUGE_NAME_DEBUG_F2 "debug f2: iTerm"
@ -495,7 +494,6 @@
#define GAUGE_NAME_MAF "MAF"
#define GAUGE_NAME_MAP "MAP"
#define GAUGE_NAME_OIL_PRESSURE "Oil Pressure"
#define GAUGE_NAME_OIL_PRESSURE_UNITS "kPa"
#define GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH "Fuel pressure raw (high)"
#define GAUGE_NAME_RAW_FUEL_PRESSURE_LOW "Fuel pressure raw (low)"
#define GAUGE_NAME_RPM "RPM"
@ -1045,7 +1043,7 @@
#define SentEtbType_NONE 0
#define show_Frankenso_presets true
#define show_test_presets true
#define SIGNATURE_HASH 2027593183
#define SIGNATURE_HASH 3913754845
#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
@ -1312,7 +1310,7 @@
#define ts_show_vbatt true
#define ts_show_vr_threshold_2 true
#define ts_show_vr_threshold_all true
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.f407-discovery.2027593183"
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.f407-discovery.3913754845"
#define TS_SINGLE_WRITE_COMMAND 'W'
#define TS_SINGLE_WRITE_COMMAND_char W
#define TS_TEST_COMMAND 't'

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1414466499
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.48way.1414466499"
#define SIGNATURE_HASH 3318922945
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.48way.3318922945"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 902464702
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.alphax-2chan.902464702"
#define SIGNATURE_HASH 2757177788
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.alphax-2chan.2757177788"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3204613855
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.alphax-4chan.3204613855"
#define SIGNATURE_HASH 782185437
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.alphax-4chan.782185437"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3350822950
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.alphax-8chan.3350822950"
#define SIGNATURE_HASH 1445213476
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.alphax-8chan.1445213476"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 207582814
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.atlas.207582814"
#define SIGNATURE_HASH 2646786908
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.atlas.2646786908"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 682790607
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.core8.682790607"
#define SIGNATURE_HASH 3106880461
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.core8.3106880461"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2027593183
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.f407-discovery.2027593183"
#define SIGNATURE_HASH 3913754845
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.f407-discovery.3913754845"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 278233977
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.f429-discovery.278233977"
#define SIGNATURE_HASH 2164799099
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.f429-discovery.2164799099"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 851927987
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.frankenso_na6.851927987"
#define SIGNATURE_HASH 2740639409
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.frankenso_na6.2740639409"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2566961923
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.harley81.2566961923"
#define SIGNATURE_HASH 144510465
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.harley81.144510465"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2046602666
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.hellen-gm-e67.2046602666"
#define SIGNATURE_HASH 3898677416
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.hellen-gm-e67.3898677416"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3798819819
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.hellen-honda-k.3798819819"
#define SIGNATURE_HASH 1945163497
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.hellen-honda-k.1945163497"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3887239877
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.hellen-nb1.3887239877"
#define SIGNATURE_HASH 1982801863
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.hellen-nb1.1982801863"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2540256911
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.hellen121nissan.2540256911"
#define SIGNATURE_HASH 116689805
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.hellen121nissan.116689805"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 996815196
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.hellen121vag.996815196"
#define SIGNATURE_HASH 2868347998
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.hellen121vag.2868347998"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2416435934
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.hellen128.2416435934"
#define SIGNATURE_HASH 26892252
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.hellen128.26892252"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 82887231
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.hellen154hyundai.82887231"
#define SIGNATURE_HASH 2506979133
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.hellen154hyundai.2506979133"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3777043150
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.hellen72.3777043150"
#define SIGNATURE_HASH 1891413964
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.hellen72.1891413964"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1303076940
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.hellen81.1303076940"
#define SIGNATURE_HASH 3694581070
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.hellen81.3694581070"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1267955583
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.hellen88bmw.1267955583"
#define SIGNATURE_HASH 3658400381
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.hellen88bmw.3658400381"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 52806398
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.hellenNA6.52806398"
#define SIGNATURE_HASH 2461562876
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.hellenNA6.2461562876"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3212948814
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.hellenNA8_96.3212948814"
#define SIGNATURE_HASH 773587020
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.hellenNA8_96.773587020"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 873976346
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.mre_f4.873976346"
#define SIGNATURE_HASH 2777311000
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.mre_f4.2777311000"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 873976346
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.mre_f7.873976346"
#define SIGNATURE_HASH 2777311000
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.mre_f7.2777311000"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 536956649
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.prometheus_405.536956649"
#define SIGNATURE_HASH 2979855339
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.prometheus_405.2979855339"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 536956649
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.prometheus_469.536956649"
#define SIGNATURE_HASH 2979855339
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.prometheus_469.2979855339"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1930102388
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.proteus_f4.1930102388"
#define SIGNATURE_HASH 3801527158
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.proteus_f4.3801527158"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1930102388
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.proteus_f7.1930102388"
#define SIGNATURE_HASH 3801527158
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.proteus_f7.3801527158"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1930102388
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.proteus_h7.1930102388"
#define SIGNATURE_HASH 3801527158
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.proteus_h7.3801527158"

View File

@ -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 2512295414
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.subaru_eg33_f7.2512295414"
#define SIGNATURE_HASH 69411060
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.subaru_eg33_f7.69411060"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2587602779
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.08.tdg-pdm8.2587602779"
#define SIGNATURE_HASH 195435097
#define TS_SIGNATURE "rusEFI (FOME) master.2023.03.09.tdg-pdm8.195435097"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.f407-discovery.2027593183"
signature = "rusEFI (FOME) master.2023.03.09.f407-discovery.3913754845"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.f407-discovery.2027593183" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.f407-discovery.3913754845" ; 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 Wed Mar 08 21:34:44 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:51 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.48way.1414466499"
signature = "rusEFI (FOME) master.2023.03.09.48way.3318922945"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.48way.1414466499" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.48way.3318922945" ; 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 Wed Mar 08 21:34:31 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:39 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.alphax-2chan.902464702"
signature = "rusEFI (FOME) master.2023.03.09.alphax-2chan.2757177788"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.alphax-2chan.902464702" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.alphax-2chan.2757177788" ; 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 Wed Mar 08 21:33:51 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:39:49 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.alphax-4chan.3204613855"
signature = "rusEFI (FOME) master.2023.03.09.alphax-4chan.782185437"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.alphax-4chan.3204613855" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.alphax-4chan.782185437" ; 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 Wed Mar 08 21:33:55 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:39:53 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.alphax-8chan.3350822950"
signature = "rusEFI (FOME) master.2023.03.09.alphax-8chan.1445213476"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.alphax-8chan.3350822950" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.alphax-8chan.1445213476" ; 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 Wed Mar 08 21:33:59 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:39:57 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.atlas.207582814"
signature = "rusEFI (FOME) master.2023.03.09.atlas.2646786908"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.atlas.207582814" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.atlas.2646786908" ; 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 Wed Mar 08 21:34:42 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:49 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.core8.682790607"
signature = "rusEFI (FOME) master.2023.03.09.core8.3106880461"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.core8.682790607" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.core8.3106880461" ; 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 Wed Mar 08 21:34:30 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:38 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.f407-discovery.2027593183"
signature = "rusEFI (FOME) master.2023.03.09.f407-discovery.3913754845"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.f407-discovery.2027593183" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.f407-discovery.3913754845" ; 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 Wed Mar 08 21:34:39 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:47 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.f429-discovery.278233977"
signature = "rusEFI (FOME) master.2023.03.09.f429-discovery.2164799099"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.f429-discovery.278233977" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.f429-discovery.2164799099" ; 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 Wed Mar 08 21:34:41 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:48 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.frankenso_na6.851927987"
signature = "rusEFI (FOME) master.2023.03.09.frankenso_na6.2740639409"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.frankenso_na6.851927987" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.frankenso_na6.2740639409" ; 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 Wed Mar 08 21:34:32 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:40 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.harley81.2566961923"
signature = "rusEFI (FOME) master.2023.03.09.harley81.144510465"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.harley81.2566961923" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.harley81.144510465" ; 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 Wed Mar 08 21:34:04 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:02 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.hellen-gm-e67.2046602666"
signature = "rusEFI (FOME) master.2023.03.09.hellen-gm-e67.3898677416"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.hellen-gm-e67.2046602666" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.hellen-gm-e67.3898677416" ; 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 Wed Mar 08 21:34:24 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:32 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.hellen-honda-k.3798819819"
signature = "rusEFI (FOME) master.2023.03.09.hellen-honda-k.1945163497"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.hellen-honda-k.3798819819" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.hellen-honda-k.1945163497" ; 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 Wed Mar 08 21:34:16 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:23 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.hellen-nb1.3887239877"
signature = "rusEFI (FOME) master.2023.03.09.hellen-nb1.1982801863"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.hellen-nb1.3887239877" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.hellen-nb1.1982801863" ; 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 Wed Mar 08 21:34:23 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:31 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.hellen121nissan.2540256911"
signature = "rusEFI (FOME) master.2023.03.09.hellen121nissan.116689805"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.hellen121nissan.2540256911" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.hellen121nissan.116689805" ; 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 Wed Mar 08 21:34:15 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:19 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.hellen121vag.996815196"
signature = "rusEFI (FOME) master.2023.03.09.hellen121vag.2868347998"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.hellen121vag.996815196" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.hellen121vag.2868347998" ; 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 Wed Mar 08 21:34:13 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:13 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.hellen128.2416435934"
signature = "rusEFI (FOME) master.2023.03.09.hellen128.26892252"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.hellen128.2416435934" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.hellen128.26892252" ; 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 Wed Mar 08 21:34:09 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:06 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.hellen154hyundai.82887231"
signature = "rusEFI (FOME) master.2023.03.09.hellen154hyundai.2506979133"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.hellen154hyundai.82887231" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.hellen154hyundai.2506979133" ; 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 Wed Mar 08 21:34:18 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:26 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.hellen72.3777043150"
signature = "rusEFI (FOME) master.2023.03.09.hellen72.1891413964"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.hellen72.3777043150" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.hellen72.1891413964" ; 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 Wed Mar 08 21:34:20 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:28 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.hellen81.1303076940"
signature = "rusEFI (FOME) master.2023.03.09.hellen81.3694581070"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.hellen81.1303076940" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.hellen81.3694581070" ; 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 Wed Mar 08 21:34:22 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:30 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.hellen88bmw.1267955583"
signature = "rusEFI (FOME) master.2023.03.09.hellen88bmw.3658400381"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.hellen88bmw.1267955583" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.hellen88bmw.3658400381" ; 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 Wed Mar 08 21:34:19 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:27 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.hellenNA6.52806398"
signature = "rusEFI (FOME) master.2023.03.09.hellenNA6.2461562876"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.hellenNA6.52806398" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.hellenNA6.2461562876" ; 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 Wed Mar 08 21:34:25 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:34 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.hellenNA8_96.3212948814"
signature = "rusEFI (FOME) master.2023.03.09.hellenNA8_96.773587020"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.hellenNA8_96.3212948814" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.hellenNA8_96.773587020" ; 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 Wed Mar 08 21:34:27 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:35 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.mre_f4.873976346"
signature = "rusEFI (FOME) master.2023.03.09.mre_f4.2777311000"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.mre_f4.873976346" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.mre_f4.2777311000" ; 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 Wed Mar 08 21:34:29 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:37 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.mre_f7.873976346"
signature = "rusEFI (FOME) master.2023.03.09.mre_f7.2777311000"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.mre_f7.873976346" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.mre_f7.2777311000" ; 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 Wed Mar 08 21:34:28 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:36 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.prometheus_405.536956649"
signature = "rusEFI (FOME) master.2023.03.09.prometheus_405.2979855339"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.prometheus_405.536956649" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.prometheus_405.2979855339" ; 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 Wed Mar 08 21:34:35 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:43 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.prometheus_469.536956649"
signature = "rusEFI (FOME) master.2023.03.09.prometheus_469.2979855339"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.prometheus_469.536956649" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.prometheus_469.2979855339" ; 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 Wed Mar 08 21:34:33 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:42 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.proteus_f4.1930102388"
signature = "rusEFI (FOME) master.2023.03.09.proteus_f4.3801527158"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.proteus_f4.1930102388" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.proteus_f4.3801527158" ; 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 Wed Mar 08 21:34:37 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:45 UTC 2023
pageSize = 26060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.proteus_f7.1930102388"
signature = "rusEFI (FOME) master.2023.03.09.proteus_f7.3801527158"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.proteus_f7.1930102388" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.proteus_f7.3801527158" ; 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 Wed Mar 08 21:34:36 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:44 UTC 2023
pageSize = 26060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.proteus_h7.1930102388"
signature = "rusEFI (FOME) master.2023.03.09.proteus_h7.3801527158"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.proteus_h7.1930102388" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.proteus_h7.3801527158" ; 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 Wed Mar 08 21:34:38 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:46 UTC 2023
pageSize = 26060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.subaru_eg33_f7.2512295414"
signature = "rusEFI (FOME) master.2023.03.09.subaru_eg33_f7.69411060"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.subaru_eg33_f7.2512295414" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.subaru_eg33_f7.69411060" ; 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 Wed Mar 08 21:33:48 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 Thu Mar 09 18:39:45 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2023.03.08.tdg-pdm8.2587602779"
signature = "rusEFI (FOME) master.2023.03.09.tdg-pdm8.195435097"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2023.03.08.tdg-pdm8.2587602779" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2023.03.09.tdg-pdm8.195435097" ; 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 Wed Mar 08 21:34:43 UTC 2023
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:50 UTC 2023
pageSize = 22060
page = 1
@ -4259,7 +4259,7 @@ entry = RPMValue, "RPM", int, "%d"
entry = rpmAcceleration, "dRPM", int, "%d"
entry = speedToRpmRatio, "Gearbox Ratio", float, "%.3f"
entry = vehicleSpeedKph, "Vehicle Speed", int, "%d"
entry = internalMcuTemperature, "CPU Temperature", int, "%d"
entry = internalMcuTemperature, "ECU temperature", int, "%d"
entry = coolant, "CLT", float, "%.3f"
entry = intake, "IAT", float, "%.3f"
entry = auxTemp1, "auxTemp1", float, "%.3f"

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/ac_control.txt Thu Mar 02 19:53:04 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/ac_control.txt Thu Mar 09 18:39:44 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -36,7 +36,6 @@ public class AcControl {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -113,7 +112,6 @@ public class AcControl {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/antilag_system_state.txt Thu Mar 02 19:53:04 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/antilag_system_state.txt Thu Mar 09 18:39:44 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -36,7 +36,6 @@ public class AntilagSystem {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -113,7 +112,6 @@ public class AntilagSystem {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/boost_control.txt Thu Mar 02 19:53:04 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/boost_control.txt Thu Mar 09 18:39:44 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -36,7 +36,6 @@ public class BoostControl {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -113,7 +112,6 @@ public class BoostControl {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/dc_motors.txt Thu Mar 02 19:53:04 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/dc_motors.txt Thu Mar 09 18:39:44 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -36,7 +36,6 @@ public class DcMotors {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -113,7 +112,6 @@ public class DcMotors {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/electronic_throttle.txt Thu Mar 02 19:53:04 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/electronic_throttle.txt Thu Mar 09 18:39:44 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -36,7 +36,6 @@ public class ElectronicThrottle {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -113,7 +112,6 @@ public class ElectronicThrottle {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/engine_state.txt Thu Mar 02 19:53:04 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/engine_state.txt Thu Mar 09 18:39:44 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -36,7 +36,6 @@ public class EngineState {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -113,7 +112,6 @@ public class EngineState {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";

View File

@ -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 Wed Mar 08 21:34:45 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Thu Mar 09 18:40:52 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -402,7 +402,6 @@ public class Fields {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -479,7 +478,6 @@ public class Fields {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";
@ -992,7 +990,6 @@ public class Fields {
public static final int SentEtbType_FORD_TYPE_1 = 2;
public static final int SentEtbType_GM_TYPE_1 = 1;
public static final int SentEtbType_NONE = 0;
public static final int SIGNATURE_HASH = 2027593183;
public static final int specs_s_size = 12;
public static final int spi_device_e_SPI_DEVICE_1 = 1;
public static final int spi_device_e_SPI_DEVICE_2 = 2;
@ -1198,7 +1195,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 (FOME) master.2023.03.08.f407-discovery.2027593183";
public static final String TS_SIGNATURE = "rusEFI (FOME) master.2023.03.09.f407-discovery.3913754845";
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 = 1356;

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/fuel/fuel_computer.txt Thu Mar 02 19:53:04 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/fuel/fuel_computer.txt Thu Mar 09 18:39:44 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -36,7 +36,6 @@ public class FuelComputer {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -113,7 +112,6 @@ public class FuelComputer {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/ignition_state.txt Thu Mar 02 19:53:04 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/algo/ignition_state.txt Thu Mar 09 18:39:44 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -36,7 +36,6 @@ public class IgnitionState {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -113,7 +112,6 @@ public class IgnitionState {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/sensors//sent_state.txt Thu Mar 02 19:53:04 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/sensors//sent_state.txt Thu Mar 09 18:39:44 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -36,7 +36,6 @@ public class SentState {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -113,7 +112,6 @@ public class SentState {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/trigger/trigger_state.txt Thu Mar 02 19:53:04 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/trigger/trigger_state.txt Thu Mar 09 18:39:44 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -36,7 +36,6 @@ public class TriggerState {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -113,7 +112,6 @@ public class TriggerState {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/trigger/trigger_state_primary.txt Thu Mar 02 19:53:04 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/trigger/trigger_state_primary.txt Thu Mar 09 18:39:44 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -36,7 +36,6 @@ public class TriggerStatePrimary {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -113,7 +112,6 @@ public class TriggerStatePrimary {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Thu Mar 02 19:53:03 UTC 2023
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) console/binary/output_channels.txt Thu Mar 09 18:39:43 UTC 2023
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -36,7 +36,6 @@ public class TsOutputs {
public static final String GAUGE_NAME_BOOST_OUTPUT = "Boost Output";
public static final String GAUGE_NAME_BOOST_TARGET = "Boost Target";
public static final String GAUGE_NAME_CLT = "CLT";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String GAUGE_NAME_CURRENT_GEAR = "Current Gear";
public static final String GAUGE_NAME_DEBUG_F1 = "debug f1";
public static final String GAUGE_NAME_DEBUG_F2 = "debug f2: iTerm";
@ -113,7 +112,6 @@ public class TsOutputs {
public static final String GAUGE_NAME_MAF = "MAF";
public static final String GAUGE_NAME_MAP = "MAP";
public static final String GAUGE_NAME_OIL_PRESSURE = "Oil Pressure";
public static final String GAUGE_NAME_OIL_PRESSURE_UNITS = "kPa";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_HIGH = "Fuel pressure raw (high)";
public static final String GAUGE_NAME_RAW_FUEL_PRESSURE_LOW = "Fuel pressure raw (low)";
public static final String GAUGE_NAME_RPM = "RPM";