mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-18 20:28:10 -06:00
probe: Verify the toolhead moves at least some distance on a probe
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
31ec098577
commit
a9a0bb87fa
2 changed files with 19 additions and 18 deletions
|
@ -70,8 +70,7 @@ class PrinterProbe:
|
|||
pos = toolhead.get_position()
|
||||
pos[2] = self.z_position
|
||||
try:
|
||||
homing_state.homing_move(
|
||||
pos, [(self.mcu_probe, "probe")], self.speed, probe_pos=True)
|
||||
homing_state.probing_move(pos, self.mcu_probe, self.speed)
|
||||
except homing.EndstopError as e:
|
||||
reason = str(e)
|
||||
if "Timeout during endstop homing" in reason:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue