aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/homing.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/homing.py')
-rw-r--r--klippy/homing.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/klippy/homing.py b/klippy/homing.py
index 30e62f2d..9e2995fe 100644
--- a/klippy/homing.py
+++ b/klippy/homing.py
@@ -6,6 +6,7 @@
import logging, math
HOMING_STEP_DELAY = 0.00000025
+HOMING_START_DELAY = 0.001
ENDSTOP_SAMPLE_TIME = .000015
ENDSTOP_SAMPLE_COUNT = 4
@@ -55,6 +56,7 @@ class Homing:
mcu_endstop.home_start(
print_time, ENDSTOP_SAMPLE_TIME, ENDSTOP_SAMPLE_COUNT,
min_step_dist / speed)
+ self.toolhead.dwell(HOMING_START_DELAY, check_stall=False)
# Issue move
error = None
try: