Move some strings to PROGMEM

This commit is contained in:
Scott Lahteine 2018-01-23 20:51:37 -06:00
parent d8aa40eedf
commit 3ab4736ac9
6 changed files with 11 additions and 11 deletions

View file

@ -276,7 +276,7 @@ void GCodeParser::unknown_command_error() {
SERIAL_ECHO(codenum);
SERIAL_ECHOLNPGM(")");
#if ENABLED(FASTER_GCODE_PARSER)
SERIAL_ECHO(" args: \"");
SERIAL_ECHOPGM(" args: \"");
for (char c = 'A'; c <= 'Z'; ++c)
if (seen(c)) { SERIAL_CHAR(c); SERIAL_CHAR(' '); }
#else