mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-23 20:18:52 +00:00
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:
parent
97a48e36e9
commit
03d5709b09
@ -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…
Reference in New Issue
Block a user