Merge pull request #3793 from gudnimg/PFW-1453

PFW-1453 Stop Print: Don't unload if FINDA is not triggered
This commit is contained in:
Guðni Már Gilbert 2022-12-09 12:54:16 +00:00 committed by GitHub
commit 1e39012953
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -5887,14 +5887,14 @@ void print_stop()
fanSpeed = 0;
}
if (MMU2::mmu2.Enabled())
if (MMU2::mmu2.Enabled() && MMU2::mmu2.FindaDetectsFilament())
{
if (isPrintPaused)
{
// Restore temperature saved in ram after pausing print
restore_extruder_temperature_from_ram();
}
MMU2::mmu2.unload(); //M702 C
MMU2::mmu2.unload(); // M702
}
lcd_cooldown(); //turns off heaters and fan; goes to status screen.