Skip to content

Commit

Permalink
Treat rapid_scan probe method as automatic (#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvuk authored Feb 16, 2025
1 parent 86e72fa commit 01edde4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions klippy/extras/probe.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,12 @@ def start_probe(self, gcmd):
# Lookup objects
probe = self.printer.lookup_object("probe", None)
method = gcmd.get("METHOD", "automatic").lower()
if method == "rapid_scan":
gcmd.respond_info(
"METHOD=rapid_scan not supported, using automatic"
)
method = "automatic"

self.results = []

def_move_z = self.default_horizontal_move_z
Expand Down

0 comments on commit 01edde4

Please sign in to comment.