This commit is contained in:
Andrey 2022-09-07 15:46:08 -04:00
commit 76d252444f
74 changed files with 167 additions and 153 deletions

View File

@ -2496,7 +2496,7 @@
#define ts_show_vbatt true
#define ts_show_vr_threshold_2 true
#define ts_show_vr_threshold_all true
#define TS_SIGNATURE "rusEFI 2022.09.06.cypress.387675106"
#define TS_SIGNATURE "rusEFI 2022.09.07.cypress.387675106"
#define TS_SINGLE_WRITE_COMMAND 'W'
#define TS_SINGLE_WRITE_COMMAND_char W
#define TS_TEST_COMMAND 't'

View File

@ -2496,7 +2496,7 @@
#define ts_show_vbatt true
#define ts_show_vr_threshold_2 true
#define ts_show_vr_threshold_all true
#define TS_SIGNATURE "rusEFI 2022.09.06.kin.2144129326"
#define TS_SIGNATURE "rusEFI 2022.09.07.kin.2144129326"
#define TS_SINGLE_WRITE_COMMAND 'W'
#define TS_SINGLE_WRITE_COMMAND_char W
#define TS_TEST_COMMAND 't'

View File

@ -2463,7 +2463,7 @@
#define ts_show_vbatt true
#define ts_show_vr_threshold_2 true
#define ts_show_vr_threshold_all true
#define TS_SIGNATURE "rusEFI 2022.09.06.subaru_eg33_f7.1845865016"
#define TS_SIGNATURE "rusEFI 2022.09.07.subaru_eg33_f7.1845865016"
#define TS_SINGLE_WRITE_COMMAND 'W'
#define TS_SINGLE_WRITE_COMMAND_char W
#define TS_TEST_COMMAND 't'

View File

@ -196,23 +196,27 @@ static void SetNextCompositeEntry(efitick_t timestamp) {
return;
}
composite_logger_s* entry = &buffer->buffer[buffer->nextIdx];
size_t idx = buffer->nextIdx;
auto nextIdx = idx + 1;
buffer->nextIdx = nextIdx;
uint32_t nowUs = NT2US(timestamp);
if (idx < efi::size(buffer->buffer)) {
composite_logger_s* entry = &buffer->buffer[idx];
// TS uses big endian, grumble
entry->timestamp = SWAP_UINT32(nowUs);
entry->priLevel = currentTrigger1;
entry->secLevel = currentTrigger2;
entry->trigger = currentTdc;
entry->sync = engine->triggerCentral.triggerState.getShaftSynchronized();
entry->coil = currentCoilState;
entry->injector = currentInjectorState;
uint32_t nowUs = NT2US(timestamp);
buffer->nextIdx++;
// TS uses big endian, grumble
entry->timestamp = SWAP_UINT32(nowUs);
entry->priLevel = currentTrigger1;
entry->secLevel = currentTrigger2;
entry->trigger = currentTdc;
entry->sync = engine->triggerCentral.triggerState.getShaftSynchronized();
entry->coil = currentCoilState;
entry->injector = currentInjectorState;
}
// if the buffer is full...
bool bufferFull = buffer->nextIdx >= efi::size(buffer->buffer);
bool bufferFull = nextIdx >= efi::size(buffer->buffer);
// ... or it's been too long since the last flush
bool bufferTimedOut = buffer->startTime.hasElapsedSec(5);

View File

@ -1,2 +1,2 @@
#pragma once
#define VCS_DATE 20220905
#define VCS_DATE 20220907

View File

@ -2496,7 +2496,7 @@
#define ts_show_vbatt true
#define ts_show_vr_threshold_2 true
#define ts_show_vr_threshold_all true
#define TS_SIGNATURE "rusEFI 2022.09.06.all.387675106"
#define TS_SIGNATURE "rusEFI 2022.09.07.all.387675106"
#define TS_SINGLE_WRITE_COMMAND 'W'
#define TS_SINGLE_WRITE_COMMAND_char W
#define TS_TEST_COMMAND 't'

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3963821
#define TS_SIGNATURE "rusEFI 2022.09.06.48way.3963821"
#define TS_SIGNATURE "rusEFI 2022.09.07.48way.3963821"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 387675106
#define TS_SIGNATURE "rusEFI 2022.09.06.all.387675106"
#define TS_SIGNATURE "rusEFI 2022.09.07.all.387675106"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 621407886
#define TS_SIGNATURE "rusEFI 2022.09.06.alphax-2chan.621407886"
#define TS_SIGNATURE "rusEFI 2022.09.07.alphax-2chan.621407886"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 2617749613
#define TS_SIGNATURE "rusEFI 2022.09.06.alphax-4chan.2617749613"
#define TS_SIGNATURE "rusEFI 2022.09.07.alphax-4chan.2617749613"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 198280901
#define TS_SIGNATURE "rusEFI 2022.09.06.atlas.198280901"
#define TS_SIGNATURE "rusEFI 2022.09.07.atlas.198280901"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3791069723
#define TS_SIGNATURE "rusEFI 2022.09.06.core8.3791069723"
#define TS_SIGNATURE "rusEFI 2022.09.07.core8.3791069723"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 387675106
#define TS_SIGNATURE "rusEFI 2022.09.06.cypress.387675106"
#define TS_SIGNATURE "rusEFI 2022.09.07.cypress.387675106"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 387675106
#define TS_SIGNATURE "rusEFI 2022.09.06.f407-discovery.387675106"
#define TS_SIGNATURE "rusEFI 2022.09.07.f407-discovery.387675106"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 387675106
#define TS_SIGNATURE "rusEFI 2022.09.06.f429-discovery.387675106"
#define TS_SIGNATURE "rusEFI 2022.09.07.f429-discovery.387675106"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1433898790
#define TS_SIGNATURE "rusEFI 2022.09.06.frankenso_na6.1433898790"
#define TS_SIGNATURE "rusEFI 2022.09.07.frankenso_na6.1433898790"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3890640589
#define TS_SIGNATURE "rusEFI 2022.09.06.harley81.3890640589"
#define TS_SIGNATURE "rusEFI 2022.09.07.harley81.3890640589"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 2742875732
#define TS_SIGNATURE "rusEFI 2022.09.06.hellen-gm-e67.2742875732"
#define TS_SIGNATURE "rusEFI 2022.09.07.hellen-gm-e67.2742875732"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3465560622
#define TS_SIGNATURE "rusEFI 2022.09.06.hellen-nb1.3465560622"
#define TS_SIGNATURE "rusEFI 2022.09.07.hellen-nb1.3465560622"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 2680539912
#define TS_SIGNATURE "rusEFI 2022.09.06.hellen121nissan.2680539912"
#define TS_SIGNATURE "rusEFI 2022.09.07.hellen121nissan.2680539912"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1731899544
#define TS_SIGNATURE "rusEFI 2022.09.06.hellen121vag.1731899544"
#define TS_SIGNATURE "rusEFI 2022.09.07.hellen121vag.1731899544"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3924119260
#define TS_SIGNATURE "rusEFI 2022.09.06.hellen128.3924119260"
#define TS_SIGNATURE "rusEFI 2022.09.07.hellen128.3924119260"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 2404647270
#define TS_SIGNATURE "rusEFI 2022.09.06.hellen154hyundai.2404647270"
#define TS_SIGNATURE "rusEFI 2022.09.07.hellen154hyundai.2404647270"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3844365030
#define TS_SIGNATURE "rusEFI 2022.09.06.hellen72.3844365030"
#define TS_SIGNATURE "rusEFI 2022.09.07.hellen72.3844365030"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 900639720
#define TS_SIGNATURE "rusEFI 2022.09.06.hellen81.900639720"
#define TS_SIGNATURE "rusEFI 2022.09.07.hellen81.900639720"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 49176622
#define TS_SIGNATURE "rusEFI 2022.09.06.hellen88bmw.49176622"
#define TS_SIGNATURE "rusEFI 2022.09.07.hellen88bmw.49176622"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3538496864
#define TS_SIGNATURE "rusEFI 2022.09.06.hellenNA6.3538496864"
#define TS_SIGNATURE "rusEFI 2022.09.07.hellenNA6.3538496864"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3071459850
#define TS_SIGNATURE "rusEFI 2022.09.06.hellenNA8_96.3071459850"
#define TS_SIGNATURE "rusEFI 2022.09.07.hellenNA8_96.3071459850"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 2144129326
#define TS_SIGNATURE "rusEFI 2022.09.06.kin.2144129326"
#define TS_SIGNATURE "rusEFI 2022.09.07.kin.2144129326"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3637378836
#define TS_SIGNATURE "rusEFI 2022.09.06.mre_f4.3637378836"
#define TS_SIGNATURE "rusEFI 2022.09.07.mre_f4.3637378836"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3637378836
#define TS_SIGNATURE "rusEFI 2022.09.06.mre_f7.3637378836"
#define TS_SIGNATURE "rusEFI 2022.09.07.mre_f7.3637378836"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1207020036
#define TS_SIGNATURE "rusEFI 2022.09.06.prometheus_405.1207020036"
#define TS_SIGNATURE "rusEFI 2022.09.07.prometheus_405.1207020036"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1207020036
#define TS_SIGNATURE "rusEFI 2022.09.06.prometheus_469.1207020036"
#define TS_SIGNATURE "rusEFI 2022.09.07.prometheus_469.1207020036"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3000415380
#define TS_SIGNATURE "rusEFI 2022.09.06.proteus_f4.3000415380"
#define TS_SIGNATURE "rusEFI 2022.09.07.proteus_f4.3000415380"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3000415380
#define TS_SIGNATURE "rusEFI 2022.09.06.proteus_f7.3000415380"
#define TS_SIGNATURE "rusEFI 2022.09.07.proteus_f7.3000415380"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3000415380
#define TS_SIGNATURE "rusEFI 2022.09.06.proteus_h7.3000415380"
#define TS_SIGNATURE "rusEFI 2022.09.07.proteus_h7.3000415380"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 1845865016
#define TS_SIGNATURE "rusEFI 2022.09.06.subaru_eg33_f7.1845865016"
#define TS_SIGNATURE "rusEFI 2022.09.07.subaru_eg33_f7.1845865016"

View File

@ -3,4 +3,4 @@
//
#define SIGNATURE_HASH 3172187574
#define TS_SIGNATURE "rusEFI 2022.09.06.tdg-pdm8.3172187574"
#define TS_SIGNATURE "rusEFI 2022.09.07.tdg-pdm8.3172187574"

View File

@ -212,13 +212,17 @@ int TriggerDecoderBase::getTotalRevolutionCounter() const {
void PrimaryTriggerDecoder::resetTriggerState() {
TriggerDecoderBase::resetTriggerState();
memset(timeOfLastEvent, 0, sizeof(timeOfLastEvent));
memset(spinningEvents, 0, sizeof(spinningEvents));
spinningEventIndex = 0;
prevInstantRpmValue = 0;
m_instantRpm = 0;
resetHasFullSync();
resetInstantRpm();
}
void PrimaryTriggerDecoder::resetInstantRpm() {
memset(timeOfLastEvent, 0, sizeof(timeOfLastEvent));
memset(spinningEvents, 0, sizeof(spinningEvents));
spinningEventIndex = 0;
}
void PrimaryTriggerDecoder::movePreSynchTimestamps() {
@ -393,6 +397,10 @@ angle_t PrimaryTriggerDecoder::syncEnginePhase(int divider, int remainder, angle
if (totalShift > 0) {
camResyncCounter++;
// Reset instant RPM, since the engine phase has now changed, invalidating the tooth history buffer
// maybe TODO: could/should we rotate the buffer around to re-align it instead? Is that worth it?
resetInstantRpm();
}
return totalShift;

View File

@ -235,6 +235,8 @@ private:
TriggerWaveform const & triggerShape, TriggerFormDetails *triggerFormDetails,
uint32_t index, efitick_t nowNt);
void resetInstantRpm();
float m_instantRpm = 0;
float m_instantRpmRatio = 0;

View File

@ -1,12 +1,12 @@
// This file was generated by Version2Header
// Mon Sep 05 00:27:02 UTC 2022
// Wed Sep 07 00:28:41 UTC 2022
#ifndef GIT_HASH
#define GIT_HASH "5d4f45bff6bfee2136fcda7b199d0b31edea6ef1"
#define GIT_HASH "d2e6ff3da3f0644d5d3301bc87467e2c7ce47db8"
#endif
#ifndef VCS_VERSION
#define VCS_VERSION "46217"
#define VCS_VERSION "46285"
#endif

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.all.387675106"
signature = "rusEFI 2022.09.07.all.387675106"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.all.387675106" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.all.387675106" ; 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 Tue Sep 06 20:37:52 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:51 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.48way.3963821"
signature = "rusEFI 2022.09.07.48way.3963821"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.48way.3963821" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.48way.3963821" ; 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 Tue Sep 06 20:37:31 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:33 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.alphax-2chan.621407886"
signature = "rusEFI 2022.09.07.alphax-2chan.621407886"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.alphax-2chan.621407886" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.alphax-2chan.621407886" ; 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 Tue Sep 06 20:36:58 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:05 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.alphax-4chan.2617749613"
signature = "rusEFI 2022.09.07.alphax-4chan.2617749613"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.alphax-4chan.2617749613" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.alphax-4chan.2617749613" ; 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 Tue Sep 06 20:37:00 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:06 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.atlas.198280901"
signature = "rusEFI 2022.09.07.atlas.198280901"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.atlas.198280901" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.atlas.198280901" ; 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 Tue Sep 06 20:37:48 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:48 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.core8.3791069723"
signature = "rusEFI 2022.09.07.core8.3791069723"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.core8.3791069723" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.core8.3791069723" ; 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 Tue Sep 06 20:37:29 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:31 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.cypress.387675106"
signature = "rusEFI 2022.09.07.cypress.387675106"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.cypress.387675106" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.cypress.387675106" ; 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 Tue Sep 06 20:36:55 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on hellen_cypress_gen_config.bat integration/rusefi_config.txt Tue Sep 06 23:23:02 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.f407-discovery.387675106"
signature = "rusEFI 2022.09.07.f407-discovery.387675106"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.f407-discovery.387675106" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.f407-discovery.387675106" ; 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 Tue Sep 06 20:37:44 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:45 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.f429-discovery.387675106"
signature = "rusEFI 2022.09.07.f429-discovery.387675106"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.f429-discovery.387675106" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.f429-discovery.387675106" ; 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 Tue Sep 06 20:37:46 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:46 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.frankenso_na6.1433898790"
signature = "rusEFI 2022.09.07.frankenso_na6.1433898790"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.frankenso_na6.1433898790" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.frankenso_na6.1433898790" ; 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 Tue Sep 06 20:37:32 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:35 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.harley81.3890640589"
signature = "rusEFI 2022.09.07.harley81.3890640589"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.harley81.3890640589" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.harley81.3890640589" ; 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 Tue Sep 06 20:37:02 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:08 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.hellen-gm-e67.2742875732"
signature = "rusEFI 2022.09.07.hellen-gm-e67.2742875732"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.hellen-gm-e67.2742875732" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.hellen-gm-e67.2742875732" ; 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 Tue Sep 06 20:37:19 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:23 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.hellen-nb1.3465560622"
signature = "rusEFI 2022.09.07.hellen-nb1.3465560622"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.hellen-nb1.3465560622" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.hellen-nb1.3465560622" ; 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 Tue Sep 06 20:37:18 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:21 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.hellen121nissan.2680539912"
signature = "rusEFI 2022.09.07.hellen121nissan.2680539912"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.hellen121nissan.2680539912" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.hellen121nissan.2680539912" ; 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 Tue Sep 06 20:37:08 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:13 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.hellen121vag.1731899544"
signature = "rusEFI 2022.09.07.hellen121vag.1731899544"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.hellen121vag.1731899544" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.hellen121vag.1731899544" ; 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 Tue Sep 06 20:37:06 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:11 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.hellen128.3924119260"
signature = "rusEFI 2022.09.07.hellen128.3924119260"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.hellen128.3924119260" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.hellen128.3924119260" ; 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 Tue Sep 06 20:37:04 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:10 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.hellen154hyundai.2404647270"
signature = "rusEFI 2022.09.07.hellen154hyundai.2404647270"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.hellen154hyundai.2404647270" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.hellen154hyundai.2404647270" ; 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 Tue Sep 06 20:37:10 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:15 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.hellen72.3844365030"
signature = "rusEFI 2022.09.07.hellen72.3844365030"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.hellen72.3844365030" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.hellen72.3844365030" ; 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 Tue Sep 06 20:37:14 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:18 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.hellen81.900639720"
signature = "rusEFI 2022.09.07.hellen81.900639720"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.hellen81.900639720" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.hellen81.900639720" ; 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 Tue Sep 06 20:37:16 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:20 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.hellen88bmw.49176622"
signature = "rusEFI 2022.09.07.hellen88bmw.49176622"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.hellen88bmw.49176622" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.hellen88bmw.49176622" ; 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 Tue Sep 06 20:37:12 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:17 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.hellenNA6.3538496864"
signature = "rusEFI 2022.09.07.hellenNA6.3538496864"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.hellenNA6.3538496864" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.hellenNA6.3538496864" ; 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 Tue Sep 06 20:37:21 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:25 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.hellenNA8_96.3071459850"
signature = "rusEFI 2022.09.07.hellenNA8_96.3071459850"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.hellenNA8_96.3071459850" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.hellenNA8_96.3071459850" ; 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 Tue Sep 06 20:37:23 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:26 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.kin.2144129326"
signature = "rusEFI 2022.09.07.kin.2144129326"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.kin.2144129326" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.kin.2144129326" ; 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 Tue Sep 06 20:36:53 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Tue Sep 06 23:23:00 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.mre_f4.3637378836"
signature = "rusEFI 2022.09.07.mre_f4.3637378836"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.mre_f4.3637378836" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.mre_f4.3637378836" ; 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 Tue Sep 06 20:37:27 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:30 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.mre_f7.3637378836"
signature = "rusEFI 2022.09.07.mre_f7.3637378836"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.mre_f7.3637378836" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.mre_f7.3637378836" ; 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 Tue Sep 06 20:37:25 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:28 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.prometheus_405.1207020036"
signature = "rusEFI 2022.09.07.prometheus_405.1207020036"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.prometheus_405.1207020036" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.prometheus_405.1207020036" ; 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 Tue Sep 06 20:37:36 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:38 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.prometheus_469.1207020036"
signature = "rusEFI 2022.09.07.prometheus_469.1207020036"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.prometheus_469.1207020036" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.prometheus_469.1207020036" ; 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 Tue Sep 06 20:37:34 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:36 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.proteus_f4.3000415380"
signature = "rusEFI 2022.09.07.proteus_f4.3000415380"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.proteus_f4.3000415380" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.proteus_f4.3000415380" ; 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 Tue Sep 06 20:37:40 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:41 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.proteus_f7.3000415380"
signature = "rusEFI 2022.09.07.proteus_f7.3000415380"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.proteus_f7.3000415380" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.proteus_f7.3000415380" ; 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 Tue Sep 06 20:37:38 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:40 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.proteus_h7.3000415380"
signature = "rusEFI 2022.09.07.proteus_h7.3000415380"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.proteus_h7.3000415380" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.proteus_h7.3000415380" ; 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 Tue Sep 06 20:37:42 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:43 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.subaru_eg33_f7.1845865016"
signature = "rusEFI 2022.09.07.subaru_eg33_f7.1845865016"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.subaru_eg33_f7.1845865016" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.subaru_eg33_f7.1845865016" ; 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 Tue Sep 06 20:36:57 UTC 2022
; 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 Tue Sep 06 23:23:03 UTC 2022
pageSize = 21300
page = 1

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI 2022.09.06.tdg-pdm8.3172187574"
signature = "rusEFI 2022.09.07.tdg-pdm8.3172187574"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature = "rusEFI 2022.09.06.tdg-pdm8.3172187574" ; signature is expected to be 7 or more characters.
signature = "rusEFI 2022.09.07.tdg-pdm8.3172187574" ; 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 Tue Sep 06 20:37:50 UTC 2022
; this section was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:50 UTC 2022
pageSize = 21300
page = 1

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 Tue Sep 06 20:37:55 UTC 2022
// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Sep 06 23:23:55 UTC 2022
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -2379,7 +2379,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 2022.09.06.all.387675106";
public static final String TS_SIGNATURE = "rusEFI 2022.09.07.all.387675106";
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 = 1248;