Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5300,8 +5300,6 @@ void process_next_command() {
case 92: // G92
gcode_G92();
break;

default: code_is_good = false;
}
break;

Expand Down Expand Up @@ -5392,8 +5390,6 @@ 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();
Expand Down Expand Up @@ -5734,14 +5730,14 @@ void process_next_command() {
case 999: // M999: Restart after being Stopped
gcode_M999();
break;

default: code_is_good = false;
}
break;

case 'T':
gcode_T(codenum);
break;

default: code_is_good = false;
}

ExitUnknownCommand:
Expand Down