Browse Source

Allow "M110 N123" without a checksum

pull/1/head
Scott Lahteine 9 years ago
committed by Richard Wackerbarth
parent
commit
f6ca5a8da8
  1. 2
      Marlin/Marlin_main.cpp

2
Marlin/Marlin_main.cpp

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

Loading…
Cancel
Save