Merge pull request #4689 from 3d-gussner/MK3_PFW-964
PFW-964: Skip filament unload/load after Shipping factory reset
This commit is contained in:
commit
152b290d1d
|
|
@ -3881,6 +3881,7 @@ void lcd_wizard(WizState state)
|
|||
state = S::Failed;
|
||||
} else {
|
||||
raise_z_above(MIN_Z_FOR_SWAP);
|
||||
if(!MMU2::mmu2.Enabled()) {
|
||||
//current filament needs to be unloaded and then new filament should be loaded
|
||||
//start to preheat nozzle for unloading remaining PLA filament
|
||||
setTargetHotend(PLA_PREHEAT_HOTEND_TEMP);
|
||||
|
|
@ -3889,6 +3890,7 @@ void lcd_wizard(WizState state)
|
|||
unload_filament(FILAMENTCHANGE_FINALRETRACT); // unload current filament
|
||||
lcd_wizard_load(); // load filament
|
||||
setTargetHotend(0); //we are finished, cooldown nozzle
|
||||
}
|
||||
state = S::Restore;
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in New Issue