Skip to content

Commit

Permalink
Signatures for 202402 release
Browse files Browse the repository at this point in the history
  • Loading branch information
noisymime committed Feb 23, 2024
1 parent 7879d6a commit a4eed5f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion reference/speeduino.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
MTversion = 2.25

queryCommand = "Q"
signature = "speeduino 202311-dev"
signature = "speeduino 202402"
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 @@ -63,10 +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','3','1','1','-','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', '3', '.', '1', '1', '-', 'd', 'e', 'v'};
//constexpr byte codeVersion[] PROGMEM = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','3','1','0'} ; //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', '.', '1', '0'};
//constexpr byte codeVersion[] PROGMEM = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','3','1','1','-','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', '3', '.', '1', '1', '-', 'd', 'e', 'v'};
constexpr byte codeVersion[] PROGMEM = { SERIAL_RC_OK, 's','p','e','e','d','u','i','n','o',' ','2','0','2','4','0','2'} ; //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', '4', '.', '0', '2'};
constexpr byte testCommsResponse[] PROGMEM = { SERIAL_RC_OK, 255 };
//!@}

Expand Down
5 changes: 2 additions & 3 deletions speeduino/comms_legacy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ void legacySerialHandler(byte cmd, Stream &targetPort, SerialStatus &targetStatu
break;

case 'Q': // send code version
targetPort.print(F("speeduino 202311-dev"));
targetPort.print(F("speeduino 202402"));
//targetPort.print(F("speeduino 202310"));
break;

Expand Down Expand Up @@ -655,8 +655,7 @@ void legacySerialHandler(byte cmd, Stream &targetPort, SerialStatus &targetStatu
break;

case 'S': // send code version
targetPort.print(F("Speeduino 2023.11-dev"));
//targetPort.print(F("Speeduino 2023.10"));
targetPort.print(F("Speeduino 2024.02"));
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion speeduino/updates.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ void doUpdates(void)

if(readEEPROMVersion() == 22)
{
//202311-dev
//202402

if( configPage10.wmiMode >= WMI_MODE_OPENLOOP ) { multiplyTableValue(wmiMapPage, 2); } //Increased PWM resolution from 0-100 to 0-200 to match VVT

Expand Down

0 comments on commit a4eed5f

Please sign in to comment.