Skip filament unload/load after Shipping factory reset
when MMU is enabled. With MMU enabled no filament should be loaded while idle.
This commit is contained in:
parent
eaeb722adb
commit
9a56f1e4c1
|
|
@ -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