Browse Source

Allow "M110 N123" without a checksum

Scott Lahteine 10 years ago
parent
commit
f6ca5a8da8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

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

Loading…
Cancel
Save