diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2024-12-19 11:49:16 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-12-19 11:49:16 -0500 |
commit | a2a91654a9025762c1293d291060206616078973 (patch) | |
tree | 4b01486803ba6ac977d7002078a59043fadf71e4 | |
parent | 383b83d788223d4535d40d053c63f52043fb0bc6 (diff) | |
download | kutter-a2a91654a9025762c1293d291060206616078973.tar.gz kutter-a2a91654a9025762c1293d291060206616078973.tar.xz kutter-a2a91654a9025762c1293d291060206616078973.zip |
docs: Document Z_TILT_ADJUST RETRIES and RETRY_TOLERNACE options in G-Codes.md
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | docs/G-Codes.md | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index 94a6e9a9..ee1fdcf5 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -1456,11 +1456,13 @@ The following commands are available when the [z_tilt config section](Config_Reference.md#z_tilt) is enabled. #### Z_TILT_ADJUST -`Z_TILT_ADJUST [HORIZONTAL_MOVE_Z=<value>] [<probe_parameter>=<value>]`: This -command will probe the points specified in the config and then make independent -adjustments to each Z stepper to compensate for tilt. See the PROBE command for -details on the optional probe parameters. The optional `HORIZONTAL_MOVE_Z` -value overrides the `horizontal_move_z` option specified in the config file. +`Z_TILT_ADJUST [RETRIES=<value>] [RETRY_TOLERANCE=<value>] +[HORIZONTAL_MOVE_Z=<value>] [<probe_parameter>=<value>]`: This command +will probe the points specified in the config and then make +independent adjustments to each Z stepper to compensate for tilt. See +the PROBE command for details on the optional probe parameters. The +optional `RETRIES`, `RETRY_TOLERANCE`, and `HORIZONTAL_MOVE_Z` values +override those options specified in the config file. ### [temperature_probe] |