Browse Source

for discusion

pull/1/head
Bob-the-Kuhn 8 years ago
parent
commit
ebda4663c3
  1. 4
      Marlin/gcode.cpp

4
Marlin/gcode.cpp

@ -220,9 +220,11 @@ void GCodeParser::parse(char *p) {
#endif
}
while (*p && *p != ' ') p++; // Skip over the parameter
if (!WITHIN(*p, 'A', 'Z')) {
while (*p && NUMERIC(*p)) p++; // Skip over the parameter
while (*p == ' ') p++; // Skip over all spaces
}
}
}
void GCodeParser::unknown_command_error() {

Loading…
Cancel
Save