Browse Source

During Tx, temporarily allow cold extrusion

This prevents a FSENSOR DIDNT TRIGGER error
and allows the bondtech gears to grab the filament.
Guðni Már Gilbert 2 years ago
parent
commit
e39bc3f12d
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Firmware/mmu2.cpp

+ 2 - 0
Firmware/mmu2.cpp

@@ -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': {