|
@@ -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
|
|