1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-07-28 09:53:45 +02:00

More PROGMEM tuning

This commit is contained in:
Asbelos
2020-06-13 15:53:46 +01:00
parent 8538aa1624
commit 506f9e4353
8 changed files with 32 additions and 26 deletions

View File

@@ -9,7 +9,7 @@
#include "EEStore.h"
#include "DIAG.h"
const char VERSION[]="99.666";
const char VERSION[] PROGMEM ="99.666";
int DCCEXParser::stashP[MAX_PARAMS];
bool DCCEXParser::stashBusy;
@@ -178,7 +178,7 @@ void DCCEXParser::parse(Print & stream, const char *com) {
case 's': // <s>
StringFormatter::send(stream,F("<p%d>"),DCCWaveform::mainTrack.getPowerMode()==POWERMODE::ON );
StringFormatter::send(stream,F("<iDCC-Asbelos BASE STATION FOR ARDUINO / %s: V-%s %s/%s>"), BOARD_NAME, VERSION, __DATE__, __TIME__ );
StringFormatter::send(stream,F("<iDCC-Asbelos BASE STATION FOR ARDUINO / %S: V-%S %s/%s>"), BOARD_NAME, VERSION, __DATE__, __TIME__ );
// TODO Send stats of speed reminders table
// TODO send status of turnouts etc etc
return;