diff options
Diffstat (limited to 'klippy/extras/bltouch.py')
-rw-r--r-- | klippy/extras/bltouch.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/klippy/extras/bltouch.py b/klippy/extras/bltouch.py index 03613f08..cf9146fc 100644 --- a/klippy/extras/bltouch.py +++ b/klippy/extras/bltouch.py @@ -174,11 +174,10 @@ class BLTouchEndstopWrapper: for s, mcu_pos in self.start_mcu_pos: if s.get_mcu_position() == mcu_pos: raise homing.EndstopError("BLTouch failed to deploy") - def home_start(self, print_time, sample_time, sample_count, rest_time, - notify=None): + def home_start(self, print_time, sample_time, sample_count, rest_time): rest_time = min(rest_time, ENDSTOP_REST_TIME) - self.mcu_endstop.home_start(print_time, sample_time, sample_count, - rest_time, notify=notify) + return self.mcu_endstop.home_start(print_time, sample_time, + sample_count, rest_time) def get_position_endstop(self): return self.position_endstop cmd_BLTOUCH_DEBUG_help = "Send a command to the bltouch for debugging" |