mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-11-05 21:06:10 +01:00
delta: Make sure to clear limit_xy2 after a homing move
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
@@ -129,6 +129,7 @@ class DeltaKinematics:
|
|||||||
if (end_pos[:2] != self.home_position[:2]
|
if (end_pos[:2] != self.home_position[:2]
|
||||||
or end_z < self.min_z or end_z > self.home_position[2]):
|
or end_z < self.min_z or end_z > self.home_position[2]):
|
||||||
raise homing.EndstopMoveError(end_pos)
|
raise homing.EndstopMoveError(end_pos)
|
||||||
|
limit_xy2 = -1.
|
||||||
if move.axes_d[2]:
|
if move.axes_d[2]:
|
||||||
move.limit_speed(self.max_z_velocity, move.accel)
|
move.limit_speed(self.max_z_velocity, move.accel)
|
||||||
limit_xy2 = -1.
|
limit_xy2 = -1.
|
||||||
|
|||||||
Reference in New Issue
Block a user