Skip to content

Commit

Permalink
Remove the dwell
Browse files Browse the repository at this point in the history
  • Loading branch information
bwnance committed Nov 7, 2023
1 parent 4f55078 commit 3387c81
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions klippy/extras/homing.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,6 @@ def home_rails(self, rails, forcepos, movepos):
]
self.toolhead.move(retractpos, hi.retract_speed)
if not hi.use_sensorless_homing or needs_rehome:
if hi.use_sensorless_homing:
self.toolhead.dwell(0.5)
# Home again
startpos = [
rp - ad * retract_r for rp, ad in zip(retractpos, axes_d)
Expand All @@ -314,6 +312,7 @@ def home_rails(self, rails, forcepos, movepos):
for endstop in endstops:
# re-querying a tmc endstop seems to reset the state
# otherwise it triggers almost immediately upon second home
# this seems to be an adequate substitute for a 2 second dwell.
endstop[0].query_endstop(print_time)
hmove = HomingMove(self.printer, endstops)
hmove.homing_move(homepos, hi.second_homing_speed)
Expand Down

0 comments on commit 3387c81

Please sign in to comment.