Fix: SD pause broken with PARK_HEAD_ON_PAUSE (#17754)

This commit is contained in:
Marcio T 2020-04-27 21:43:42 -06:00 committed by GitHub
parent 01c646a892
commit 919e53a5d4
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,17 +82,17 @@ void GcodeSuite::M24() {
*/
void GcodeSuite::M25() {
// Set initial pause flag to prevent more commands from landing in the queue while we try to pause
#if ENABLED(SDSUPPORT)
if (IS_SD_PRINTING()) card.pauseSDPrint();
#endif
#if ENABLED(PARK_HEAD_ON_PAUSE)
M125();
#else
// Set initial pause flag to prevent more commands from landing in the queue while we try to pause
#if ENABLED(SDSUPPORT)
if (IS_SD_PRINTING()) card.pauseSDPrint();
#endif
#if ENABLED(POWER_LOSS_RECOVERY)
if (recovery.enabled) recovery.save(true);
#endif