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 /docs/G-Codes.md | |
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 'docs/G-Codes.md')
-rw-r--r-- | docs/G-Codes.md | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index dcaa2b20..29e89a6b 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -147,8 +147,9 @@ enabled: The following commands are available when the "delta_calibrate" config section is enabled: -- `DELTA_CALIBRATE`: This command will probe seven points on the bed - and recommend updated endstop positions, tower angles, and radius. +- `DELTA_CALIBRATE [METHOD=manual]`: This command will probe seven + points on the bed and recommend updated endstop positions, tower + angles, and radius. - `NEXT`: If manual bed probing is enabled, then one can use this command to move to the next probing point during a DELTA_CALIBRATE operation. @@ -159,8 +160,9 @@ section is enabled: The following commands are available when the "bed_tilt" config section is enabled: -- `BED_TILT_CALIBRATE`: This command will probe the points specified - in the config and then recommend updated x and y tilt adjustments. +- `BED_TILT_CALIBRATE [METHOD=manual]`: This command will probe the + points specified in the config and then recommend updated x and y + tilt adjustments. - `NEXT`: If manual bed probing is enabled, then one can use this command to move to the next probing point during a BED_TILT_CALIBRATE operation. @@ -169,9 +171,13 @@ section is enabled: The following commands are available when the "bed_mesh" config section is enabled: -- `BED_MESH_CALIBRATE`: This command probes the bed using generated - points specified by the parameters in the config. After probing, - a mesh is generated and z-movement is adjusted according to the mesh. +- `BED_MESH_CALIBRATE [METHOD=manual]`: This command probes the bed + using generated points specified by the parameters in the + config. After probing, a mesh is generated and z-movement is + adjusted according to the mesh. + - `NEXT`: If manual bed probing is enabled, then one can use this + command to move to the next probing point during a + BED_MESH_CALIBRATE operation. - `BED_MESH_OUTPUT`: This command outputs the current probed z values and current mesh values to the terminal. - `BED_MESH_MAP`: This command probes the bed in a similar fashion |