From a4eed5f3e3762d02443f63bb232db0ac665ca9e8 Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Fri, 23 Feb 2024 15:55:56 +1100 Subject: [PATCH] Signatures for 202402 release --- reference/speeduino.ini | 2 +- speeduino/comms.cpp | 8 ++++---- speeduino/comms_legacy.cpp | 5 ++--- speeduino/updates.cpp | 2 +- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/reference/speeduino.ini b/reference/speeduino.ini index be952d01..ba576653 100644 --- a/reference/speeduino.ini +++ b/reference/speeduino.ini @@ -5,7 +5,7 @@ MTversion = 2.25 queryCommand = "Q" - signature = "speeduino 202311-dev" + signature = "speeduino 202402" versionInfo = "S" ;This info is what is displayed to user [TunerStudio] diff --git a/speeduino/comms.cpp b/speeduino/comms.cpp index 78dfafa7..2447011e 100644 --- a/speeduino/comms.cpp +++ b/speeduino/comms.cpp @@ -63,10 +63,10 @@ void sendCompositeLog(void); */ constexpr byte serialVersion[] PROGMEM = {SERIAL_RC_OK, '0', '0', '2'}; constexpr byte canId[] PROGMEM = {SERIAL_RC_OK, 0}; -constexpr byte codeVersion[] PROGMEM = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','3','1','1','-','d','e','v'} ; //Note no null terminator in array and statu variable at the start -constexpr byte productString[] PROGMEM = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '3', '.', '1', '1', '-', 'd', 'e', 'v'}; -//constexpr byte codeVersion[] PROGMEM = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','3','1','0'} ; //Note no null terminator in array and statu variable at the start -//constexpr byte productString[] PROGMEM = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '3', '.', '1', '0'}; +//constexpr byte codeVersion[] PROGMEM = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','3','1','1','-','d','e','v'} ; //Note no null terminator in array and statu variable at the start +//constexpr byte productString[] PROGMEM = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '3', '.', '1', '1', '-', 'd', 'e', 'v'}; +constexpr byte codeVersion[] PROGMEM = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','4','0','2'} ; //Note no null terminator in array and statu variable at the start +constexpr byte productString[] PROGMEM = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '4', '.', '0', '2'}; constexpr byte testCommsResponse[] PROGMEM = { SERIAL_RC_OK, 255 }; //!@} diff --git a/speeduino/comms_legacy.cpp b/speeduino/comms_legacy.cpp index ea8ef577..f2966caf 100644 --- a/speeduino/comms_legacy.cpp +++ b/speeduino/comms_legacy.cpp @@ -622,7 +622,7 @@ void legacySerialHandler(byte cmd, Stream &targetPort, SerialStatus &targetStatu break; case 'Q': // send code version - targetPort.print(F("speeduino 202311-dev")); + targetPort.print(F("speeduino 202402")); //targetPort.print(F("speeduino 202310")); break; @@ -655,8 +655,7 @@ void legacySerialHandler(byte cmd, Stream &targetPort, SerialStatus &targetStatu break; case 'S': // send code version - targetPort.print(F("Speeduino 2023.11-dev")); - //targetPort.print(F("Speeduino 2023.10")); + targetPort.print(F("Speeduino 2024.02")); break; } } diff --git a/speeduino/updates.cpp b/speeduino/updates.cpp index 8b9253a9..c68d1eb5 100644 --- a/speeduino/updates.cpp +++ b/speeduino/updates.cpp @@ -727,7 +727,7 @@ void doUpdates(void) if(readEEPROMVersion() == 22) { - //202311-dev + //202402 if( configPage10.wmiMode >= WMI_MODE_OPENLOOP ) { multiplyTableValue(wmiMapPage, 2); } //Increased PWM resolution from 0-100 to 0-200 to match VVT