Browse Source

Suppress emergency parser G-code errors

Co-Authored-By: srieche <srieche@users.noreply.github.com>
Scott Lahteine 7 years ago
parent
commit
2a2e8c314e
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      Marlin/src/gcode/gcode.cpp

+ 2
- 0
Marlin/src/gcode/gcode.cpp View File

359
         case 108: M108(); break;                                  // M108: Cancel Waiting
359
         case 108: M108(); break;                                  // M108: Cancel Waiting
360
         case 112: M112(); break;                                  // M112: Emergency Stop
360
         case 112: M112(); break;                                  // M112: Emergency Stop
361
         case 410: M410(); break;                                  // M410: Quickstop - Abort all the planned moves.
361
         case 410: M410(); break;                                  // M410: Quickstop - Abort all the planned moves.
362
+      #else
363
+        case 108: case 112: case 410: break;
362
       #endif
364
       #endif
363
 
365
 
364
       #if ENABLED(HOST_KEEPALIVE_FEATURE)
366
       #if ENABLED(HOST_KEEPALIVE_FEATURE)

Loading…
Cancel
Save