From 5bef8d4bf71e0cd1e038a50f699a047c08daf138 Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Mon, 26 Feb 2024 19:59:16 +0000 Subject: [PATCH] Signatures for 202405-dev --- reference/speeduino.ini | 2 +- speeduino/comms.cpp | 8 ++++---- speeduino/comms_legacy.cpp | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/reference/speeduino.ini b/reference/speeduino.ini index ba576653..470ab400 100644 --- a/reference/speeduino.ini +++ b/reference/speeduino.ini @@ -5,7 +5,7 @@ MTversion = 2.25 queryCommand = "Q" - signature = "speeduino 202402" + signature = "speeduino 202405-dev" versionInfo = "S" ;This info is what is displayed to user [TunerStudio] diff --git a/speeduino/comms.cpp b/speeduino/comms.cpp index 2447011e..7f9ebdd8 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','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 codeVersion[] PROGMEM = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','4','0','5','-','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', '4', '.', '0', '5', '-', '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 f2966caf..ec406576 100644 --- a/speeduino/comms_legacy.cpp +++ b/speeduino/comms_legacy.cpp @@ -622,8 +622,8 @@ void legacySerialHandler(byte cmd, Stream &targetPort, SerialStatus &targetStatu break; case 'Q': // send code version - targetPort.print(F("speeduino 202402")); - //targetPort.print(F("speeduino 202310")); + //targetPort.print(F("speeduino 202402")); + targetPort.print(F("speeduino 202405-dev")); break; case 'r': //New format for the optimised OutputChannels @@ -655,7 +655,7 @@ void legacySerialHandler(byte cmd, Stream &targetPort, SerialStatus &targetStatu break; case 'S': // send code version - targetPort.print(F("Speeduino 2024.02")); + targetPort.print(F("Speeduino 2024.05-dev")); break; } }