Browse Source

for discusion

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

6
Marlin/gcode.cpp

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

Loading…
Cancel
Save