1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-27 22:08:02 +00:00

Use SERIAL_PROTOCOLLNPGM in G28

This commit is contained in:
Scott Lahteine 2016-08-19 04:30:09 -05:00
parent d309a9647d
commit 044f800be9

View File

@ -3502,7 +3502,7 @@ inline void gcode_G28() {
int verbose_level = code_seen('V') ? code_value_int() : 1; int verbose_level = code_seen('V') ? code_value_int() : 1;
if (verbose_level < 0 || verbose_level > 4) { if (verbose_level < 0 || verbose_level > 4) {
SERIAL_ECHOLNPGM("?(V)erbose Level is implausible (0-4)."); SERIAL_PROTOCOLLNPGM("?(V)erbose Level is implausible (0-4).");
return; return;
} }