aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--klippy/extras/bltouch.py7
-rw-r--r--klippy/homing.py6
2 files changed, 12 insertions, 1 deletions
diff --git a/klippy/extras/bltouch.py b/klippy/extras/bltouch.py
index e5a170ce..326d4528 100644
--- a/klippy/extras/bltouch.py
+++ b/klippy/extras/bltouch.py
@@ -38,6 +38,7 @@ class BLTouchEndstopWrapper:
# Setup for sensor test
self.next_test_time = 0.
self.test_sensor_pin = config.getboolean('test_sensor_pin', True)
+ self.start_mcu_pos = []
# Calculate pin move time
pmt = max(config.getfloat('pin_move_time', 0.200), MIN_CMD_TIME)
self.pin_move_time = math.ceil(pmt / SIGNAL_PERIOD) * SIGNAL_PERIOD
@@ -94,6 +95,8 @@ class BLTouchEndstopWrapper:
self.send_cmd(print_time + self.pin_move_time, 'touch_mode')
toolhead.dwell(self.pin_move_time + MIN_CMD_TIME)
self.mcu_endstop.home_prepare()
+ self.start_mcu_pos = [(s, s.get_mcu_position())
+ for s in self.mcu_endstop.get_steppers()]
def home_finalize(self):
toolhead = self.printer.lookup_object('toolhead')
print_time = toolhead.get_last_move_time()
@@ -101,6 +104,10 @@ class BLTouchEndstopWrapper:
self.send_cmd(print_time + MIN_CMD_TIME, 'pin_up')
self.send_cmd(print_time + MIN_CMD_TIME + self.pin_move_time, None)
toolhead.dwell(self.pin_move_time + MIN_CMD_TIME)
+ # Verify the probe actually deployed during the attempt
+ for s, mcu_pos in self.start_mcu_pos:
+ if s.get_mcu_position() == mcu_pos:
+ raise homing.EndstopError("BLTouch failed to deploy")
self.mcu_endstop.home_finalize()
def home_start(self, print_time, sample_time, sample_count, rest_time):
rest_time = min(rest_time, ENDSTOP_REST_TIME)
diff --git a/klippy/homing.py b/klippy/homing.py
index 9e2995fe..ea8967b4 100644
--- a/klippy/homing.py
+++ b/klippy/homing.py
@@ -78,7 +78,11 @@ class Homing:
else:
self.toolhead.set_position(movepos)
for mcu_endstop, name in endstops:
- mcu_endstop.home_finalize()
+ try:
+ mcu_endstop.home_finalize()
+ except EndstopError as e:
+ if error is None:
+ error = str(e)
if error is not None:
raise EndstopError(error)
# Check if some movement occurred