Signatures for 202201 release

This commit is contained in:
Josh Stewart 2022-01-07 20:55:37 +11:00
parent 300c8699cc
commit 9eb61271cf
3 changed files with 7 additions and 6 deletions

View File

@ -7,7 +7,7 @@
MTversion = 2.25
queryCommand = "Q"
signature = "speeduino 202109-dev"
signature = "speeduino 202201"
versionInfo = "S" ;This info is what is displayed to user
[TunerStudio]

View File

@ -281,7 +281,7 @@ void command()
break;
case 'Q': // send code version
Serial.print(F("speeduino 202109-dev"));
Serial.print(F("speeduino 202201"));
break;
case 'r': //New format for the optimised OutputChannels
@ -313,7 +313,7 @@ void command()
break;
case 'S': // send code version
Serial.print(F("Speeduino 2021.09-dev"));
Serial.print(F("Speeduino 2022.01"));
currentStatus.secl = 0; //This is required in TS3 due to its stricter timings
break;

View File

@ -453,7 +453,8 @@ void processSerialCommand()
case 'Q': // send code version
{
char productString[21] = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','1','0','9','-','d','e','v'} ; //Note no null terminator in array and statu variable at the start
//char productString[] = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','1','0','9','-','d','e','v'} ; //Note no null terminator in array and statu variable at the start
char productString[] = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','2','0','1'} ; //Note no null terminator in array and statu variable at the start
sendSerialPayload(&productString, sizeof(productString));
break;
}
@ -602,8 +603,8 @@ void processSerialCommand()
case 'S': // send code version
{
byte productString[] = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '1', '.', '0', '9', '-', 'd', 'e', 'v'};
//productString = F("Speeduino 2021.09-dev");
//byte productString[] = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '1', '.', '0', '9', '-', 'd', 'e', 'v'};
byte productString[] = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '2', '.', '0', '1'};
sendSerialPayload(&productString, sizeof(productString));
currentStatus.secl = 0; //This is required in TS3 due to its stricter timings
break;