Compare commits

...

5 Commits

Author SHA1 Message Date
DenisMitchell 1743387b97
Merge c83cc32772 into d0e4a0c644 2024-09-03 18:33:18 -03:00
Matthew Kennedy d0e4a0c644 cleanup 2024-09-03 13:34:36 -07:00
Matthew Kennedy e20908704d print friendly pin names for "pins" command 2024-09-03 13:31:49 -07:00
GitHub gen-configs Action 7c54e36d22 Auto-generated configs and docs 2024-09-03 17:08:20 +00:00
DenisMitchell 5ac24ae295
Update README.md - link to developer.md instead of RusEFI forum (#481)
* Update README.md - link to developer.md instead of RusEFI forum

Link to developer.md instead of RusEFI forums; instructions on the RusEFI forums do not appear to apply to FOME at this point.
2024-09-03 12:06:50 -05:00
35 changed files with 76 additions and 75 deletions

View File

@ -61,7 +61,7 @@ Initialize the checkout:
See [firmware/gcc_version_check.c](firmware/gcc_version_check.c) for the recommended version of GCC.
Check out https://rusefi.com/forum/viewtopic.php?f=5&t=9
Refer to [firmware/DEVELOPER.md](firmware/DEVELOPER.md) for details on building FOME firmware.
# Release Notes

View File

@ -127,15 +127,20 @@ static void reportPins() {
int totalPinsUsed = 0;
for (unsigned int i = 0; i < getBrainPinOnchipNum(); i++) {
const char *pin_user = getBrainUsedPin(i);
const char* pinUser = getBrainUsedPin(i);
/* show used pins */
if (pin_user != NULL) {
if (pinUser) {
brain_pin_e brainPin = index_to_brainPin(i);
int pin = getBrainPinIndex(brainPin);
ioportid_t port = getBrainPinPort(brainPin);
efiPrintf("pin %s%d: %s", portname(port), pin, pin_user);
if (const char* friendlyName = getBoardSpecificPinName(brainPin)) {
efiPrintf("pin %s: %s", friendlyName, pinUser);
} else {
int pin = getBrainPinIndex(brainPin);
ioportid_t port = getBrainPinPort(brainPin);
efiPrintf("pin %s%d: %s", portname(port), pin, pinUser);
}
totalPinsUsed++;
}
}
@ -226,11 +231,7 @@ const char *hwPortname(brain_pin_e brainPin) {
return portNameBuffer;
}
void initPinRepository(void) {
/**
* this method cannot use console because this method is invoked before console is initialized
*/
void initPinRepository() {
addConsoleAction(CMD_PINS, reportPins);
#if (BOARD_TLE8888_COUNT > 0)

View File

@ -22,7 +22,7 @@ public:
bool isBrainPinValid(brain_pin_e brainPin);
void initPinRepository(void);
void initPinRepository();
bool brain_pin_is_onchip(brain_pin_e brainPin);
bool brain_pin_is_ext(brain_pin_e brainPin);
void pinDiag2string(char *buffer, size_t size, brain_pin_diag_e pin_diag);

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.alphax-2chan.4155268237"
signature = "rusEFI (FOME) master.2024.09.03.alphax-2chan.4155268237"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.alphax-2chan.4155268237" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.alphax-2chan.4155268237" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.alphax-4chan.2103729900"
signature = "rusEFI (FOME) master.2024.09.03.alphax-4chan.2103729900"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.alphax-4chan.2103729900" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.alphax-4chan.2103729900" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.alphax-8chan.98523157"
signature = "rusEFI (FOME) master.2024.09.03.alphax-8chan.98523157"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.alphax-8chan.98523157" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.alphax-8chan.98523157" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.atlas.2075499366"
signature = "rusEFI (FOME) master.2024.09.03.atlas.2075499366"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.atlas.2075499366" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.atlas.2075499366" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.core48.3450688319"
signature = "rusEFI (FOME) master.2024.09.03.core48.3450688319"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.core48.3450688319" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.core48.3450688319" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.core8.3939784444"
signature = "rusEFI (FOME) master.2024.09.03.core8.3939784444"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.core8.3939784444" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.core8.3939784444" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.f407-discovery.868080170"
signature = "rusEFI (FOME) master.2024.09.03.f407-discovery.868080170"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.f407-discovery.868080170" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.f407-discovery.868080170" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.f429-discovery.3539163978"
signature = "rusEFI (FOME) master.2024.09.03.f429-discovery.3539163978"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.f429-discovery.3539163978" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.f429-discovery.3539163978" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.frankenso_na6.4037131136"
signature = "rusEFI (FOME) master.2024.09.03.frankenso_na6.4037131136"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.frankenso_na6.4037131136" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.frankenso_na6.4037131136" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.harley81.1533436720"
signature = "rusEFI (FOME) master.2024.09.03.harley81.1533436720"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.harley81.1533436720" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.harley81.1533436720" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.hellen-gm-e67.3147462041"
signature = "rusEFI (FOME) master.2024.09.03.hellen-gm-e67.3147462041"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.hellen-gm-e67.3147462041" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.hellen-gm-e67.3147462041" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.hellen-honda-k.537639896"
signature = "rusEFI (FOME) master.2024.09.03.hellen-honda-k.537639896"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.hellen-honda-k.537639896" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.hellen-honda-k.537639896" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.hellen-nb1.634669814"
signature = "rusEFI (FOME) master.2024.09.03.hellen-nb1.634669814"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.hellen-nb1.634669814" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.hellen-nb1.634669814" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.hellen121nissan.1427105468"
signature = "rusEFI (FOME) master.2024.09.03.hellen121nissan.1427105468"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.hellen121nissan.1427105468" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.hellen121nissan.1427105468" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.hellen121vag.4178372975"
signature = "rusEFI (FOME) master.2024.09.03.hellen121vag.4178372975"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.hellen121vag.4178372975" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.hellen121vag.4178372975" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.hellen128.1382103789"
signature = "rusEFI (FOME) master.2024.09.03.hellen128.1382103789"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.hellen128.1382103789" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.hellen128.1382103789" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.hellen154hyundai.3331725836"
signature = "rusEFI (FOME) master.2024.09.03.hellen154hyundai.3331725836"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.hellen154hyundai.3331725836" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.hellen154hyundai.3331725836" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.hellen72.591905533"
signature = "rusEFI (FOME) master.2024.09.03.hellen72.591905533"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.hellen72.591905533" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.hellen72.591905533" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.hellen81.2412623999"
signature = "rusEFI (FOME) master.2024.09.03.hellen81.2412623999"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.hellen81.2412623999" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.hellen81.2412623999" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.hellen88bmw.2314579788"
signature = "rusEFI (FOME) master.2024.09.03.hellen88bmw.2314579788"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.hellen88bmw.2314579788" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.hellen88bmw.2314579788" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.hellenNA6.3726106989"
signature = "rusEFI (FOME) master.2024.09.03.hellenNA6.3726106989"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.hellenNA6.3726106989" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.hellenNA6.3726106989" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.hellenNA8_96.2112318845"
signature = "rusEFI (FOME) master.2024.09.03.hellenNA8_96.2112318845"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.hellenNA8_96.2112318845" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.hellenNA8_96.2112318845" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.mre_f4.897400562"
signature = "rusEFI (FOME) master.2024.09.03.mre_f4.897400562"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.mre_f4.897400562" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.mre_f4.897400562" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.mre_f7.897400562"
signature = "rusEFI (FOME) master.2024.09.03.mre_f7.897400562"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.mre_f7.897400562" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.mre_f7.897400562" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.prometheus_405.3798439642"
signature = "rusEFI (FOME) master.2024.09.03.prometheus_405.3798439642"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.prometheus_405.3798439642" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.prometheus_405.3798439642" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.prometheus_469.3798439642"
signature = "rusEFI (FOME) master.2024.09.03.prometheus_469.3798439642"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.prometheus_469.3798439642" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.prometheus_469.3798439642" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.proteus_f4.1478115895"
signature = "rusEFI (FOME) master.2024.09.03.proteus_f4.1478115895"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.proteus_f4.1478115895" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.proteus_f4.1478115895" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.proteus_f7.1478115895"
signature = "rusEFI (FOME) master.2024.09.03.proteus_f7.1478115895"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.proteus_f7.1478115895" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.proteus_f7.1478115895" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.proteus_h7.1478115895"
signature = "rusEFI (FOME) master.2024.09.03.proteus_h7.1478115895"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.proteus_h7.1478115895" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.proteus_h7.1478115895" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.small-can-board.983518420"
signature = "rusEFI (FOME) master.2024.09.03.small-can-board.983518420"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.small-can-board.983518420" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.small-can-board.983518420" ; 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

View File

@ -33,12 +33,12 @@ enable2ndByteCanID = false
[MegaTune]
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
signature = "rusEFI (FOME) master.2024.09.02.tdg-pdm8.1482520424"
signature = "rusEFI (FOME) master.2024.09.03.tdg-pdm8.1482520424"
[TunerStudio]
queryCommand = "S"
versionInfo = "V" ; firmware version for title bar.
signature= "rusEFI (FOME) master.2024.09.02.tdg-pdm8.1482520424" ; signature is expected to be 7 or more characters.
signature= "rusEFI (FOME) master.2024.09.03.tdg-pdm8.1482520424" ; 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

View File

@ -1206,7 +1206,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.2024.09.02.f407-discovery.868080170";
public static final String TS_SIGNATURE = "rusEFI (FOME) master.2024.09.03.f407-discovery.868080170";
public static final char TS_SINGLE_WRITE_COMMAND = 'W';
public static final int TS_TOTAL_OUTPUT_SIZE = 1288;
public static final String TS_TRIGGER_SCOPE_CHANNEL_1_NAME = "Channel 1";