Skip to content

Commit

Permalink
Dev signatures for 202210-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
noisymime committed Jul 27, 2022
1 parent 4518bb6 commit e3b931b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion reference/speeduino.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
MTversion = 2.25

queryCommand = "Q"
signature = "speeduino 202207"
signature = "speeduino 202210-dev"
versionInfo = "S" ;This info is what is displayed to user

[TunerStudio]
Expand Down
8 changes: 4 additions & 4 deletions speeduino/comms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,8 @@ void processSerialCommand()

case 'Q': // send code version
{
//char productString[] = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','2','0','4','-','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','7'} ; //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','1','0','-','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','7'} ; //Note no null terminator in array and statu variable at the start
sendSerialPayload(&productString, sizeof(productString));
break;
}
Expand Down Expand Up @@ -601,8 +601,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', '2', '.', '0', '4', '-', 'd', 'e', 'v'};
byte productString[] = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '2', '0', '7'};
byte productString[] = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '2', '.', '1', '0', '-', 'd', 'e', 'v'};
//byte productString[] = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '2', '0', '7'};
sendSerialPayload(&productString, sizeof(productString));
currentStatus.secl = 0; //This is required in TS3 due to its stricter timings
break;
Expand Down
6 changes: 4 additions & 2 deletions speeduino/comms_legacy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,8 @@ void legacySerialCommand()
break;

case 'Q': // send code version
Serial.print(F("speeduino 202207"));
//Serial.print(F("speeduino 202207"));
Serial.print(F("speeduino 202210-dev"));
break;

case 'r': //New format for the optimised OutputChannels
Expand Down Expand Up @@ -352,7 +353,8 @@ void legacySerialCommand()
break;

case 'S': // send code version
Serial.print(F("Speeduino 2022.07"));
//Serial.print(F("Speeduino 2022.07"));
Serial.print(F("Speeduino 2022.10-dev"));
currentStatus.secl = 0; //This is required in TS3 due to its stricter timings
break;

Expand Down

0 comments on commit e3b931b

Please sign in to comment.