Browse Source

M110 is a known command

- The command parser now displays “unknown command” in more cases.
Known commands must be added to the `switch` inside `process_commands`
to suppress the error.
pull/1/head
Scott Lahteine 9 years ago
parent
commit
03d5709b09
  1. 2
      Marlin/Marlin_main.cpp

2
Marlin/Marlin_main.cpp

@ -5392,6 +5392,8 @@ void process_next_command() {
gcode_M109();
break;
case 110: break; // M110: Set line number - don't show "unknown command"
#if HAS_TEMP_BED
case 190: // M190: Wait for bed heater to reach target
gcode_M190();

Loading…
Cancel
Save