for discusion

2.0.x
Bob-the-Kuhn 8 years ago
parent e2c3695e11
commit ebda4663c3

@ -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