Merge pull request #432 from PavelSindler/invalid_gcodes

invalid / unknown gcodes reported on serial
This commit is contained in:
XPila 2018-01-24 00:12:47 +01:00 committed by GitHub
commit 556205d993
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3851,7 +3851,10 @@ void process_commands()
eeprom_update_byte((unsigned char *)EEPROM_FARM_MODE, farm_mode);
lcd_update(2);
break;
default:
printf("Unknown G code: ");
printf(cmdbuffer + bufindr + CMDHDRSIZE);
printf("\n");
@ -3868,7 +3871,10 @@ void process_commands()
/*for (++strchr_pointer; *strchr_pointer == ' ' || *strchr_pointer == '\t'; ++strchr_pointer);*/
if (*(strchr_pointer+index) < '0' || *(strchr_pointer+index) > '9') {
SERIAL_ECHOLNPGM("Invalid M code");
printf("Invalid M code: ");
printf(cmdbuffer + bufindr + CMDHDRSIZE);
printf("\n");
} else
switch((int)code_value())
{
@ -5948,7 +5954,7 @@ case 404: //M404 Enter the nominal filament width (3mm, 1.75mm ) N<3.0> or disp
if(lcd_commands_type == 0) lcd_commands_type = LCD_COMMAND_LONG_PAUSE_RESUME;
}
break;
#ifdef LIN_ADVANCE
case 900: // M900: Set LIN_ADVANCE options.
gcode_M900();
@ -6169,7 +6175,10 @@ case 404: //M404 Enter the nominal filament width (3mm, 1.75mm ) N<3.0> or disp
gcode_LastN = Stopped_gcode_LastN;
FlushSerialRequestResend();
break;
default: SERIAL_ECHOLNPGM("Invalid M code.");
default:
printf("Unknown M code: ");
printf(cmdbuffer + bufindr + CMDHDRSIZE);
printf("\n");
}
} // end if(code_seen('M')) (end of M codes)