diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-11-29 19:53:16 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-11-29 19:55:25 -0500 |
commit | 6930a7de8d0e9be0a9c098c27ebaa854851ca734 (patch) | |
tree | bb0cc66c6689e016017c5a6e0aad41892ae848dd /klippy/homing.py | |
parent | 6bbb84326dfa25f08818b76713cf9e63b16c3291 (diff) | |
download | kutter-6930a7de8d0e9be0a9c098c27ebaa854851ca734.tar.gz kutter-6930a7de8d0e9be0a9c098c27ebaa854851ca734.tar.xz kutter-6930a7de8d0e9be0a9c098c27ebaa854851ca734.zip |
homing: Base homing cpu delay on estimated number of steps needed
Instead of adding 250ms to each homing operation add a time relative
to the number of estimated steps that are to be generated. This
scales the delay to really large axes without adding a delay for
normal users.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/homing.py')
-rw-r--r-- | klippy/homing.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/klippy/homing.py b/klippy/homing.py index a8ad2e70..abaafa6a 100644 --- a/klippy/homing.py +++ b/klippy/homing.py @@ -5,7 +5,7 @@ # This file may be distributed under the terms of the GNU GPLv3 license. import logging -HOMING_DELAY = 0.250 +HOMING_STEP_DELAY = 0.00000025 ENDSTOP_SAMPLE_TIME = .000015 ENDSTOP_SAMPLE_COUNT = 4 @@ -34,7 +34,13 @@ class Homing: self.toolhead.set_position(self._fill_coord(forcepos)) # Start homing and issue move if not second_home: - self.toolhead.dwell(HOMING_DELAY) + est_move_d = sum([abs(forcepos[i]-movepos[i]) + for i in range(3) if movepos[i] is not None]) + est_steps = sum( + [est_move_d / mcu_stepper.get_step_dist() + for s in steppers + for mcu_endstop, mcu_stepper, name in s.get_endstops()]) + self.toolhead.dwell(est_steps * HOMING_STEP_DELAY, check_stall=False) print_time = self.toolhead.get_last_move_time() endstops = [] for s in steppers: |