Merge pull request #4832 from thinkyhead/rc_fix_M0_M1
Enable M0/M1 with Emergency Parser
This commit is contained in:
		@@ -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();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user