diff --git a/CVReader.ino b/CVReader.ino index d1c0b6e..645c3de 100644 --- a/CVReader.ino +++ b/CVReader.ino @@ -14,7 +14,7 @@ #ifdef ARDUINO_AVR_UNO #include - SoftwareSerial Serial1(15,16); // YOU must get thee pins correct to use Wifi on a UNO + SoftwareSerial Serial1(15,16); // YOU must get these pins correct to use Wifi on a UNO #define WIFI_BAUD 9600 #else #define WIFI_BAUD 115200 diff --git a/DCCEXParser.cpp b/DCCEXParser.cpp index 583b9c6..7ff0a3c 100644 --- a/DCCEXParser.cpp +++ b/DCCEXParser.cpp @@ -28,7 +28,7 @@ #include "EEStore.h" #include "DIAG.h" -const char VERSION[] PROGMEM ="99.666"; +const char VERSION[] PROGMEM ="0.1.9"; // These keywords are used in the <1> command. The number is what you get if you use the keyword as a parameter. // To discover new keyword numbers , use the <$ YOURKEYWORD> command @@ -251,7 +251,7 @@ void DCCEXParser::parse(Print * stream, byte *com, bool blocking) { case 's': // StringFormatter::send(stream,F(""),DCCWaveform::mainTrack.getPowerMode()==POWERMODE::ON ); - StringFormatter::send(stream,F(""), BOARD_NAME, VERSION, __DATE__, __TIME__ ); + StringFormatter::send(stream,F(""), VERSION, __DATE__, __TIME__ ); // TODO Send stats of speed reminders table // TODO send status of turnouts etc etc return; diff --git a/DCCEXParser.h b/DCCEXParser.h index 4968f18..4711e9c 100644 --- a/DCCEXParser.h +++ b/DCCEXParser.h @@ -59,5 +59,4 @@ struct DCCEXParser }; -#define BOARD_NAME F("not yet configured") #endif