Suppress emergency parser G-code errors

Co-Authored-By: srieche <srieche@users.noreply.github.com>
This commit is contained in:
Scott Lahteine 2018-08-29 00:58:32 -05:00
parent 7ecb8b4af5
commit 2a2e8c314e

View file

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