From a501f430eb80351cee18a69ffd765a43fbefd09d Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Thu, 15 Sep 2016 02:53:46 -0500 Subject: [PATCH] Enable M0/M1 with Emergency Parser --- Marlin/Marlin_main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 64e9cbabbb..01fd4f69e3 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -352,7 +352,7 @@ static bool relative_mode = false; volatile bool wait_for_heatup = true; #if ENABLED(EMERGENCY_PARSER) && DISABLED(ULTIPANEL) - wait_for_user = false; + volatile bool wait_for_user = false; #endif const char errormagic[] PROGMEM = "Error:"; @@ -7010,7 +7010,7 @@ void process_next_command() { break; case 'M': switch (codenum) { - #if ENABLED(ULTIPANEL) + #if ENABLED(ULTIPANEL) || ENABLED(EMERGENCY_PARSER) case 0: // M0 - Unconditional stop - Wait for user button press on LCD case 1: // M1 - Conditional stop - Wait for user button press on LCD gcode_M0_M1();