diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-01-29 19:45:40 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-02-10 13:24:21 -0500 |
commit | 2af8c5aa8620019bb0fa4ada415f219a9e09b1db (patch) | |
tree | 72046278ef2b149f880a2b89e94375c49a122825 /docs/G-Codes.md | |
parent | 9ec97424844c76bbc0c5604e15aa195282b6c955 (diff) | |
download | kutter-2af8c5aa8620019bb0fa4ada415f219a9e09b1db.tar.gz kutter-2af8c5aa8620019bb0fa4ada415f219a9e09b1db.tar.xz kutter-2af8c5aa8620019bb0fa4ada415f219a9e09b1db.zip |
extruder: Add new SYNC_EXTRUDER_MOTION command
This command is a rename of SYNC_STEPPER_TO_EXTRUDER. This change is
in preparation for the removal of SYNC_STEPPER_TO_EXTRUDER.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r-- | docs/G-Codes.md | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index d52294e2..2ff7b7bf 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -311,6 +311,16 @@ result in excessive pressure between extruder and hot end. Do proper calibration with filament before use. If 'DISTANCE' value is not included command will return current rotation distance. +#### SYNC_EXTRUDER_MOTION +`SYNC_EXTRUDER_MOTION EXTRUDER=<name> MOTION_QUEUE=<name>`: This +command will cause the stepper specified by EXTRUDER (as defined in an +[extruder](Config_Reference#extruder) or +[extruder_stepper](Config_Reference#extruder_stepper) config section) +to become synchronized to the movement of an extruder specified by +MOTION_QUEUE (as defined in an [extruder](Config_Reference#extruder) +config section). If MOTION_QUEUE is an empty string then the stepper +will be desynchronized from all extruder movement. + #### SET_EXTRUDER_STEP_DISTANCE `SET_EXTRUDER_STEP_DISTANCE EXTRUDER=<config_name> [DISTANCE=<distance>]`: Set a new value for the provided extruder's @@ -322,7 +332,7 @@ calibration with filament before use. If 'DISTANCE' value is not included command will return current step distance. #### SYNC_STEPPER_TO_EXTRUDER -`SYNC_STEPPER_TO_EXTRUDER STEPPER=<name> [EXTRUDER=<name>]`: This +`SYNC_STEPPER_TO_EXTRUDER STEPPER=<name> EXTRUDER=<name>`: This command will cause the given extruder STEPPER (as specified in an [extruder](Config_Reference#extruder) or [extruder stepper](Config_Reference#extruder_stepper) config section) |