Signatures for 202504-dev

This commit is contained in:
Josh Stewart 2025-01-09 14:10:45 +11:00
parent 29bdaa32fc
commit 784c2ed0bc
5 changed files with 19 additions and 8 deletions

View File

@ -64,6 +64,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
mode: "COMMIT"
fromTag: "202501"
- name: Create Release
uses: softprops/action-gh-release@v2

View File

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

View File

@ -66,10 +66,10 @@ static constexpr uint8_t SEND_OUTPUT_CHANNELS = 48U; //!< Code for the "send out
/// @{
static constexpr byte serialVersion[] PROGMEM = {SERIAL_RC_OK, '0', '0', '2'};
static constexpr byte canId[] PROGMEM = {SERIAL_RC_OK, 0};
//static 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 status variable at the start
//static 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'};
static constexpr byte codeVersion[] PROGMEM = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','5','0','1'} ; //Note no null terminator in array and status variable at the start
static constexpr byte productString[] PROGMEM = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '5', '.', '0', '1'};
static constexpr byte codeVersion[] PROGMEM = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','5','0','4','-','d','e','v'} ; //Note no null terminator in array and status variable at the start
static constexpr byte productString[] PROGMEM = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '5', '.', '0', '4', '-', 'd', 'e', 'v'};
//static constexpr byte codeVersion[] PROGMEM = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','5','0','1'} ; //Note no null terminator in array and status variable at the start
//static constexpr byte productString[] PROGMEM = { SERIAL_RC_OK, 'S', 'p', 'e', 'e', 'd', 'u', 'i', 'n', 'o', ' ', '2', '0', '2', '5', '.', '0', '1'};
static constexpr byte testCommsResponse[] PROGMEM = { SERIAL_RC_OK, 255 };
/// @}

View File

@ -643,7 +643,7 @@ void legacySerialHandler(byte cmd, Stream &targetPort, SerialStatus &targetStatu
break;
case 'Q': // send code version
targetPort.print(F("speeduino 202501"));
targetPort.print(F("speeduino 202504-dev"));
break;
case 'r': //New format for the optimised OutputChannels
@ -675,7 +675,7 @@ void legacySerialHandler(byte cmd, Stream &targetPort, SerialStatus &targetStatu
break;
case 'S': // send code version
targetPort.print(F("Speeduino 2025.01"));
targetPort.print(F("Speeduino 2025.04-dev"));
break;
}
}

View File

@ -18,7 +18,7 @@
void doUpdates(void)
{
#define CURRENT_DATA_VERSION 24
#define CURRENT_DATA_VERSION 25
//Only the latest update for small flash devices must be retained
#ifndef SMALL_FLASH_MODE
@ -788,6 +788,16 @@ void doUpdates(void)
storeEEPROMVersion(24);
}
if(readEEPROMVersion() == 24)
{
//202504
writeAllConfig();
storeEEPROMVersion(25);
}
//Final check is always for 255 and 0 (Brand new arduino)
if( (readEEPROMVersion() == 0) || (readEEPROMVersion() == 255) )
{