diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-01-11 18:13:21 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-01-16 19:01:15 -0500 |
commit | 02d5f9754fc7f9e493c8bc5a6418e2a9ea9d7ae1 (patch) | |
tree | 08728bbdda7fbf0ac4574e7dfd9902b35677a520 /docs/G-Codes.md | |
parent | eb2a67cb956f96e9ed92d5c070411d7dec08bcfd (diff) | |
download | kutter-02d5f9754fc7f9e493c8bc5a6418e2a9ea9d7ae1.tar.gz kutter-02d5f9754fc7f9e493c8bc5a6418e2a9ea9d7ae1.tar.xz kutter-02d5f9754fc7f9e493c8bc5a6418e2a9ea9d7ae1.zip |
extruder: Support disassociating a stepper from all extruders
Support SYNC_STEPPER_TO_EXTRUDER commands with an EXTRUDER parameter
set to an empty string.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r-- | docs/G-Codes.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index 119f1fbb..6450f0ef 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -186,7 +186,9 @@ The following standard commands are supported: command will cause the given extruder STEPPER (as specified in an [extruder](Config_Reference#extruder) or [extruder stepper](Config_Reference#extruder_stepper) config - section) to become synchronized to the given EXTRUDER. + section) to become synchronized to the given EXTRUDER. If EXTRUDER + is an empty string then the stepper will not be synchronized to an + extruder. - `SET_STEPPER_ENABLE STEPPER=<config_name> ENABLE=[0|1]`: Enable or disable only the given stepper. This is a diagnostic and debugging tool and must be used with care. Disabling an axis motor does not |