0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-31 06:02:16 +00:00

Allow "M110 N123" without a checksum

This commit is contained in:
Scott Lahteine 2015-06-25 16:29:17 -07:00 committed by Richard Wackerbarth
parent aaad65ff5d
commit f6ca5a8da8

View file

@ -817,7 +817,7 @@ void get_command() {
}
// if no errors, continue parsing
}
else {
else if (npos == command) {
gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM));
return;
}