mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-18 23:24:00 +00:00
parent
f1a05d19b0
commit
e44f156535
1 changed files with 7 additions and 5 deletions
|
@ -1849,11 +1849,13 @@ void Temperature::task() {
|
||||||
quickstop_stepper();
|
quickstop_stepper();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (emergency_parser.sd_abort_by_M524) { // abort SD print immediately
|
#if ENABLED(SDSUPPORT)
|
||||||
emergency_parser.sd_abort_by_M524 = false;
|
if (emergency_parser.sd_abort_by_M524) { // abort SD print immediately
|
||||||
card.flag.abort_sd_printing = true;
|
emergency_parser.sd_abort_by_M524 = false;
|
||||||
gcode.process_subcommands_now(F("M524"));
|
card.flag.abort_sd_printing = true;
|
||||||
}
|
gcode.process_subcommands_now(F("M524"));
|
||||||
|
}
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (!updateTemperaturesIfReady()) return; // Will also reset the watchdog if temperatures are ready
|
if (!updateTemperaturesIfReady()) return; // Will also reset the watchdog if temperatures are ready
|
||||||
|
|
Loading…
Reference in a new issue