Sfoglia il codice sorgente

🚸 MPCTEMP: Home before cooling (#24434)

Keith Bennett 2 anni fa
parent
commit
fc287b44da
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      Marlin/src/module/temperature.cpp

+ 1
- 1
Marlin/src/module/temperature.cpp Vedi File

@@ -918,13 +918,13 @@ volatile bool Temperature::raw_temps_ready = false;
918 918
     MPC_t &constants = hotend.constants;
919 919
 
920 920
     // Move to center of bed, just above bed height and cool with max fan
921
+    gcode.home_all_axes(true);
921 922
     disable_all_heaters();
922 923
     #if HAS_FAN
923 924
       zero_fan_speeds();
924 925
       set_fan_speed(ANY(MPC_FAN_0_ALL_HOTENDS, MPC_FAN_0_ACTIVE_HOTEND) ? 0 : active_extruder, 255);
925 926
       planner.sync_fan_speeds(fan_speed);
926 927
     #endif
927
-    gcode.home_all_axes(true);
928 928
     const xyz_pos_t tuningpos = MPC_TUNING_POS;
929 929
     do_blocking_move_to(tuningpos);
930 930
 

Loading…
Annulla
Salva