1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-23 12:04:19 +00:00

Allow M524 between M23 and M24

This commit is contained in:
Scott Lahteine 2020-09-27 16:51:59 -05:00
parent dd118e2f36
commit d2741c8680

View File

@ -34,6 +34,8 @@ void GcodeSuite::M524() {
if (IS_SD_PRINTING())
card.flag.abort_sd_printing = true;
else if (card.isMounted())
card.closefile();
}