Signatures for interim release 202202

This commit is contained in:
Josh Stewart 2022-01-09 16:26:30 +11:00
parent 9eb61271cf
commit 9121b45995
4 changed files with 5 additions and 6 deletions

View File

@ -7,7 +7,7 @@
MTversion = 2.25
queryCommand = "Q"
signature = "speeduino 202201"
signature = "speeduino 202202"
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 202201"));
Serial.print(F("speeduino 202202"));
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 2022.01"));
Serial.print(F("Speeduino 2022.02"));
currentStatus.secl = 0; //This is required in TS3 due to its stricter timings
break;

View File

@ -454,7 +454,7 @@ void processSerialCommand()
case 'Q': // send code version
{
//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
char productString[] = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','2','0','2'} ; //Note no null terminator in array and statu variable at the start
sendSerialPayload(&productString, sizeof(productString));
break;
}
@ -604,7 +604,7 @@ 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'};
byte productString[] = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '2', '.', '0', '1'};
byte productString[] = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '2', '0', '2'};
sendSerialPayload(&productString, sizeof(productString));
currentStatus.secl = 0; //This is required in TS3 due to its stricter timings
break;

View File

@ -82,7 +82,6 @@ struct write_location {
bool can_write() const
{
//return true;
return (counter<=EEPROM_MAX_WRITE_BLOCK);
}
};