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.
This commit is contained in:
Scott Lahteine 2015-05-26 20:31:18 -07:00
parent 97a48e36e9
commit 03d5709b09

View file

@ -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();