diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-02-12 13:37:55 -0500 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2020-02-15 17:52:44 -0500 |
commit | 1dd952ac65e7cb6010f0e698c820e0538d7c3818 (patch) | |
tree | 8e8d088f15f05751e8a445f8e225a9138bb68112 /klippy/extras/bltouch.py | |
parent | 5bca4e6fa17c0aac325960575fc0901fc60c6da0 (diff) | |
download | kutter-1dd952ac65e7cb6010f0e698c820e0538d7c3818.tar.gz kutter-1dd952ac65e7cb6010f0e698c820e0538d7c3818.tar.xz kutter-1dd952ac65e7cb6010f0e698c820e0538d7c3818.zip |
probe: Add multi_probe_begin() / multi_probe_end() callbacks
Add support for notifying the low-level probing handlers that a
multiple probe sequence is occurring. This is in preparation for the
bltouch code.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/bltouch.py')
-rw-r--r-- | klippy/extras/bltouch.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/klippy/extras/bltouch.py b/klippy/extras/bltouch.py index 47714709..f423d348 100644 --- a/klippy/extras/bltouch.py +++ b/klippy/extras/bltouch.py @@ -137,6 +137,10 @@ class BLTouchEndstopWrapper: # Test was successful self.next_test_time = check_end_time + TEST_TIME self.sync_print_time() + def multi_probe_begin(self): + pass + def multi_probe_end(self): + pass def probe_prepare(self): self.test_sensor() self.sync_print_time() |