Add a delay before moving to z_safe_homing position if using TMC2130 sensorless homing (#9705)
A short delay is needed after homing an axis with TMC 2130 sensorless homing. Otherwise the axis wont move.
This commit is contained in:
parent
1997640e41
commit
971732b9f6
@ -3867,6 +3867,10 @@ inline void gcode_G4() {
|
|||||||
active_extruder_parked = false;
|
active_extruder_parked = false;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ENABLED(SENSORLESS_HOMING)
|
||||||
|
safe_delay(500); // Short delay needed to settle
|
||||||
|
#endif
|
||||||
|
|
||||||
do_blocking_move_to_xy(destination[X_AXIS], destination[Y_AXIS]);
|
do_blocking_move_to_xy(destination[X_AXIS], destination[Y_AXIS]);
|
||||||
HOMEAXIS(Z);
|
HOMEAXIS(Z);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user