Fix issue where tool_change_extruder is not reset after retry
This commit is contained in:
parent
541cd3ae94
commit
f1ed2fc5c7
|
|
@ -340,9 +340,9 @@ bool MMU2::VerifyFilamentEnteredPTFE()
|
||||||
}
|
}
|
||||||
|
|
||||||
void MMU2::ToolChangeCommon(uint8_t slot){
|
void MMU2::ToolChangeCommon(uint8_t slot){
|
||||||
tool_change_extruder = slot;
|
|
||||||
for(;;) { // while not successfully fed into extruder's PTFE tube
|
for(;;) { // while not successfully fed into extruder's PTFE tube
|
||||||
for(;;) {
|
for(;;) {
|
||||||
|
tool_change_extruder = slot;
|
||||||
logic.ToolChange(slot); // let the MMU pull the filament out and push a new one in
|
logic.ToolChange(slot); // let the MMU pull the filament out and push a new one in
|
||||||
if( manage_response(true, true) )
|
if( manage_response(true, true) )
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue