Signatures for 202405-dev

This commit is contained in:
Josh Stewart 2024-02-26 19:59:16 +00:00
parent a4eed5f3e3
commit 5bef8d4bf7
3 changed files with 8 additions and 8 deletions

View File

@ -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]

View File

@ -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 };
//!@}

View File

@ -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;
}
}