Browse Source

Suppress emergency parser G-code errors

Co-Authored-By: srieche <srieche@users.noreply.github.com>
pull/1/head
Scott Lahteine 6 years ago
parent
commit
2a2e8c314e
  1. 2
      Marlin/src/gcode/gcode.cpp

2
Marlin/src/gcode/gcode.cpp

@ -359,6 +359,8 @@ void GcodeSuite::process_parsed_command(
case 108: M108(); break; // M108: Cancel Waiting
case 112: M112(); break; // M112: Emergency Stop
case 410: M410(); break; // M410: Quickstop - Abort all the planned moves.
#else
case 108: case 112: case 410: break;
#endif
#if ENABLED(HOST_KEEPALIVE_FEATURE)

Loading…
Cancel
Save