Only look for "N" line number as first parameter

This commit is contained in:
Scott Lahteine 2015-10-13 03:58:11 -07:00 committed by Richard Wackerbarth
parent b4af4441c5
commit c0e791dbe9

View File

@ -834,8 +834,10 @@ void get_command() {
fromsd[cmd_queue_index_w] = false;
#endif
char *npos = strchr(command, 'N');
char *apos = strchr(command, '*');
while (*command == ' ') command++; // skip any leading spaces
char* npos = (*command == 'N') ? command : NULL; // Require the N parameter to start the line
char* apos = strchr(command, '*');
if (npos) {
boolean M110 = strstr_P(command, PSTR("M110")) != NULL;