Fix serial output for MBL, M303

This commit is contained in:
Scott Lahteine
2016-08-10 18:49:25 -07:00
parent 58c8e6cef2
commit b63d70b186
4 changed files with 25 additions and 28 deletions

View File

@@ -71,6 +71,7 @@
#define SERIAL_PROTOCOLLNPGM(x) do{ serialprintPGM(PSTR(x "\n")); }while(0)
#define SERIAL_PROTOCOLPAIR(name, value) SERIAL_ECHOPAIR(name, value)
#define SERIAL_PROTOCOLLNPAIR(name, value) do{ SERIAL_ECHOPAIR(name, value); SERIAL_EOL; }while(0)
extern const char errormagic[] PROGMEM;
extern const char echomagic[] PROGMEM;