aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/bltouch.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-01-29 11:57:08 -0500
committerKevin O'Connor <kevin@koconnor.net>2019-01-31 09:43:35 -0500
commit3b6ddb08a1dd57048813b6a55fabf508e7bdf44f (patch)
treeb9b1f5e5d8ffaf4dd0fd6123433af38b60a4378e /klippy/extras/bltouch.py
parenta5d3d161d318577a53e4f886bb3cf51aa66dade8 (diff)
downloadkutter-3b6ddb08a1dd57048813b6a55fabf508e7bdf44f.tar.gz
kutter-3b6ddb08a1dd57048813b6a55fabf508e7bdf44f.tar.xz
kutter-3b6ddb08a1dd57048813b6a55fabf508e7bdf44f.zip
bltouch: Don't error on startup if the bltouch is in an error state
Stopping the connect sequence can make it difficult to get the bltouch out of an error state. Allow the connect to proceed, ideally if the bltouch stays in an error state it will be detected during the first probe attempt. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/bltouch.py')
-rw-r--r--klippy/extras/bltouch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/bltouch.py b/klippy/extras/bltouch.py
index 390ca74f..e95938e2 100644
--- a/klippy/extras/bltouch.py
+++ b/klippy/extras/bltouch.py
@@ -69,7 +69,7 @@ class BLTouchEndstopWrapper:
try:
self.raise_probe()
except homing.EndstopError as e:
- raise self.printer.config_error(str(e))
+ logging.warning("BLTouch raise probe error: %s", str(e))
def sync_mcu_print_time(self):
curtime = self.printer.get_reactor().monotonic()
est_time = self.mcu_pwm.get_mcu().estimated_print_time(curtime)