diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-09-26 13:07:18 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2018-10-01 11:12:30 -0400 |
commit | 33887b8c396c5933cf6bd3ad653eec32834f2c9f (patch) | |
tree | c37b0c049088529b123dfadb64a8f13af1cdc564 /klippy/extras/quad_gantry_level.py | |
parent | 0e9b8abde2940eb17aad0337cb0dd55f6fadffb9 (diff) | |
download | kutter-33887b8c396c5933cf6bd3ad653eec32834f2c9f.tar.gz kutter-33887b8c396c5933cf6bd3ad653eec32834f2c9f.tar.xz kutter-33887b8c396c5933cf6bd3ad653eec32834f2c9f.zip |
probe: Support manual probing at runtime
Don't require the config file to specify manual probing. Instead,
allow the user to select manual probing on each ProbePointsHelper
invocation.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/quad_gantry_level.py')
-rw-r--r-- | klippy/extras/quad_gantry_level.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/quad_gantry_level.py b/klippy/extras/quad_gantry_level.py index 9eb1810c..b9f91f1f 100644 --- a/klippy/extras/quad_gantry_level.py +++ b/klippy/extras/quad_gantry_level.py @@ -38,7 +38,7 @@ class QuadGantryLevel: self.z_steppers = z_steppers cmd_QUAD_GANTRY_LEVEL_help = "Conform a moving, twistable gantry to the shape of a stationary bed" def cmd_QUAD_GANTRY_LEVEL(self, params): - self.probe_helper.start_probe() + self.probe_helper.start_probe(params) def probe_finalize(self, offsets, positions): logging.info("quad_gantry_level Calculating gantry geometry with: %s", positions) p1 = [positions[0][0] + offsets[0],positions[0][2]] |