0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-22 17:52:57 +00:00

🐛 Mount media early for POWER_LOSS_RECOVERY (#27177)

This commit is contained in:
ellensp 2024-06-16 13:14:46 +12:00 committed by GitHub
parent 013c3bcd82
commit 7bc6261d2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1330,7 +1330,7 @@ void setup() {
#endif
#endif
#if ALL(HAS_MEDIA, SDCARD_EEPROM_EMULATION)
#if HAS_MEDIA && ANY(SDCARD_EEPROM_EMULATION, POWER_LOSS_RECOVERY)
SETUP_RUN(card.mount()); // Mount media with settings before first_load
#endif