diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 896898b6..b3981dd7 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -64,6 +64,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: mode: "COMMIT" + fromTag: "202501" - name: Create Release uses: softprops/action-gh-release@v2 diff --git a/reference/speeduino.ini b/reference/speeduino.ini index 741be33a..33f613b1 100644 --- a/reference/speeduino.ini +++ b/reference/speeduino.ini @@ -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] diff --git a/speeduino/comms.cpp b/speeduino/comms.cpp index 02dfeb44..9a6cdb68 100644 --- a/speeduino/comms.cpp +++ b/speeduino/comms.cpp @@ -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 }; /// @} diff --git a/speeduino/comms_legacy.cpp b/speeduino/comms_legacy.cpp index b6daa87f..5dc68524 100644 --- a/speeduino/comms_legacy.cpp +++ b/speeduino/comms_legacy.cpp @@ -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; } } diff --git a/speeduino/updates.cpp b/speeduino/updates.cpp index 434a5644..81fbbad1 100644 --- a/speeduino/updates.cpp +++ b/speeduino/updates.cpp @@ -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) ) {