Browse Source

Always look for PLR file, but more quickly

vanilla_fb_2.0.x
Scott Lahteine 4 years ago
parent
commit
9bff67bc74
  1. 4
      Marlin/src/feature/power_loss_recovery.cpp

4
Marlin/src/feature/power_loss_recovery.cpp

@ -100,15 +100,13 @@ void PrintJobRecovery::changed() {
* If a saved state exists send 'M1000 S' to initiate job recovery. * If a saved state exists send 'M1000 S' to initiate job recovery.
*/ */
void PrintJobRecovery::check() { void PrintJobRecovery::check() {
if (enabled) { //if (!card.isMounted()) card.mount();
if (!card.isMounted()) card.mount();
if (card.isMounted()) { if (card.isMounted()) {
load(); load();
if (!valid()) return purge(); if (!valid()) return purge();
queue.inject_P(PSTR("M1000 S")); queue.inject_P(PSTR("M1000 S"));
} }
} }
}
/** /**
* Delete the recovery file and clear the recovery data * Delete the recovery file and clear the recovery data

Loading…
Cancel
Save