mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-24 07:04:01 -06:00
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>
This commit is contained in:
parent
5bca4e6fa1
commit
1dd952ac65
2 changed files with 39 additions and 0 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue