diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-02-21 13:51:27 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-03-04 13:20:35 -0500 |
commit | 6627d036ac7c04877af99f1c996b7947b375af86 (patch) | |
tree | e4332e9d893105daa9da8d0637d8b06aada3aebf /docs/Config_Reference.md | |
parent | 4a8aece6a7f2ae5cbaa2ac283f0a82a0a613ac3d (diff) | |
download | kutter-6627d036ac7c04877af99f1c996b7947b375af86.tar.gz kutter-6627d036ac7c04877af99f1c996b7947b375af86.tar.xz kutter-6627d036ac7c04877af99f1c996b7947b375af86.zip |
extruder: Allow an extruder object to be created without a stepper
This may be useful for dual hotend printers that have only one
stepper.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Config_Reference.md')
-rw-r--r-- | docs/Config_Reference.md | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/docs/Config_Reference.md b/docs/Config_Reference.md index 223b576f..bc66b86a 100644 --- a/docs/Config_Reference.md +++ b/docs/Config_Reference.md @@ -638,10 +638,11 @@ max_accel: 1 ### [extruder] -The extruder section is used to describe both the stepper controlling -the printer extruder and the heater parameters for the nozzle. See the -[pressure advance guide](Pressure_Advance.md) for information on -tuning pressure advance. +The extruder section is used to describe the heater parameters for the +nozzle hotend along with the stepper controlling the extruder. See the +[command reference](G-Codes.md#extruder) for additional information. +See the [pressure advance guide](Pressure_Advance.md) for information +on tuning pressure advance. ``` [extruder] @@ -652,7 +653,10 @@ microsteps: rotation_distance: #full_steps_per_rotation: #gear_ratio: -# See the "stepper" section for a description of the above parameters. +# See the "stepper" section for a description of the above +# parameters. If none of the above parameters are specified then no +# stepper will be associated with the nozzle hotend (though a +# SYNC_EXTRUDER_MOTION command may associate one at run-time). nozzle_diameter: # Diameter of the nozzle orifice (in mm). This parameter must be # provided. |