mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-21 21:58:05 -06:00
homing: Remove no longer needed homing time delay code
Now that homing is implemented via "drip moves", it is no longer necessary to round the homing speed and it is no longer necessary to add a delay for cpu processing time. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
43064d197d
commit
dd34768e3a
5 changed files with 11 additions and 44 deletions
|
@ -63,10 +63,7 @@ class PolarKinematics:
|
|||
else:
|
||||
forcepos[axis] += position_max - hi.position_endstop
|
||||
# Perform homing
|
||||
limit_speed = None
|
||||
if axis == 2:
|
||||
limit_speed = self.max_z_velocity
|
||||
homing_state.home_rails([rail], forcepos, homepos, limit_speed)
|
||||
homing_state.home_rails([rail], forcepos, homepos)
|
||||
def home(self, homing_state):
|
||||
# Always home XY together
|
||||
homing_axes = homing_state.get_axes()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue