Signatures for 202305 release

This commit is contained in:
Josh Stewart 2023-05-26 17:00:51 +10:00
parent 03f82ae8f0
commit dd41ae5f27
4 changed files with 10 additions and 8 deletions

View File

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

View File

@ -63,8 +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','2','1','0','-','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', '2', '.', '1', '0', '-', 'd', 'e', 'v'};
//constexpr byte codeVersion[] PROGMEM = { 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
//constexpr byte productString[] PROGMEM = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '2', '.', '1', '0', '-', 'd', 'e', 'v'};
constexpr byte codeVersion[] PROGMEM = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','3','0','5'} ; //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', '.', '0', '5'};
constexpr byte testCommsResponse[] PROGMEM = { SERIAL_RC_OK, 255 };
//!@}

View File

@ -284,8 +284,8 @@ void legacySerialCommand(void)
break;
case 'Q': // send code version
//Serial.print(F("speeduino 202207"));
Serial.print(F("speeduino 202210-dev"));
Serial.print(F("speeduino 202305"));
//Serial.print(F("speeduino 202210-dev"));
break;
case 'r': //New format for the optimised OutputChannels
@ -317,8 +317,8 @@ void legacySerialCommand(void)
break;
case 'S': // send code version
//Serial.print(F("Speeduino 2022.07"));
Serial.print(F("Speeduino 2022.10-dev"));
Serial.print(F("Speeduino 2023.05"));
//Serial.print(F("Speeduino 2022.10-dev"));
currentStatus.secl = 0; //This is required in TS3 due to its stricter timings
break;

View File

@ -172,7 +172,7 @@ void writeConfig(uint8_t pageNum)
{
EEPROM_MAX_WRITE_BLOCK = (uint8_t)(15000U / currentStatus.RPM);
EEPROM_MAX_WRITE_BLOCK = max(EEPROM_MAX_WRITE_BLOCK, 1);
EEPROM_MAX_WRITE_BLOCK = min(EEPROM_MAX_WRITE_BLOCK, 20); //Any higher than this will cause comms timeouts on AVR
EEPROM_MAX_WRITE_BLOCK = min(EEPROM_MAX_WRITE_BLOCK, 15); //Any higher than this will cause comms timeouts on AVR
}
#endif