mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-11-18 03:00:54 +01: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:
committed by
KevinOConnor
parent
43064d197d
commit
dd34768e3a
@@ -60,10 +60,7 @@ class CoreXYKinematics:
|
||||
else:
|
||||
forcepos[axis] += 1.5 * (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 motor_off(self, print_time):
|
||||
self.limits = [(1.0, -1.0)] * 3
|
||||
for rail in self.rails:
|
||||
|
||||
Reference in New Issue
Block a user