During Tx, temporarily allow cold extrusion
This prevents a FSENSOR DIDNT TRIGGER error and allows the bondtech gears to grab the filament.
This commit is contained in:
parent
45a5e719a2
commit
e39bc3f12d
|
|
@ -255,11 +255,13 @@ bool MMU2::tool_change(char code, uint8_t slot) {
|
|||
} break;
|
||||
|
||||
case 'x': {
|
||||
set_extrude_min_temp(0); // Allow cold extrusion since Tx only loads to the gears not nozzle
|
||||
st_synchronize();
|
||||
logic.ToolChange(slot);
|
||||
manage_response(false, false);
|
||||
extruder = slot;
|
||||
SetActiveExtruder(0);
|
||||
set_extrude_min_temp(EXTRUDE_MINTEMP);
|
||||
} break;
|
||||
|
||||
case 'c': {
|
||||
|
|
|
|||
Loading…
Reference in New Issue