diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-09-26 15:57:22 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2018-10-01 11:12:30 -0400 |
commit | a9a0bb87fa472c470d5cbd4ffc78e1acb29a04c1 (patch) | |
tree | 50c31491411cb009e44d7e92faa614364a821f89 /klippy/extras | |
parent | 31ec0985770e420eadc5ba9d7eb56a2c4ab40c60 (diff) | |
download | kutter-a9a0bb87fa472c470d5cbd4ffc78e1acb29a04c1.tar.gz kutter-a9a0bb87fa472c470d5cbd4ffc78e1acb29a04c1.tar.xz kutter-a9a0bb87fa472c470d5cbd4ffc78e1acb29a04c1.zip |
probe: Verify the toolhead moves at least some distance on a probe
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras')
-rw-r--r-- | klippy/extras/probe.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/klippy/extras/probe.py b/klippy/extras/probe.py index df5f9268..5b503610 100644 --- a/klippy/extras/probe.py +++ b/klippy/extras/probe.py @@ -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: |