|
@@ -358,7 +358,7 @@ inline void get_serial_commands() {
|
358
|
358
|
}
|
359
|
359
|
|
360
|
360
|
#if DISABLED(EMERGENCY_PARSER)
|
361
|
|
- // If command was e-stop process now
|
|
361
|
+ // Process critical commands early
|
362
|
362
|
if (strcmp(command, "M108") == 0) {
|
363
|
363
|
wait_for_heatup = false;
|
364
|
364
|
#if ENABLED(ULTIPANEL)
|
|
@@ -366,7 +366,7 @@ inline void get_serial_commands() {
|
366
|
366
|
#endif
|
367
|
367
|
}
|
368
|
368
|
if (strcmp(command, "M112") == 0) kill(PSTR(MSG_KILLED));
|
369
|
|
- if (strcmp(command, "M410") == 0) { quickstop_stepper(); }
|
|
369
|
+ if (strcmp(command, "M410") == 0) quickstop_stepper();
|
370
|
370
|
#endif
|
371
|
371
|
|
372
|
372
|
#if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
|