diff options
author | Len Trigg <lenbok@gmail.com> | 2019-06-07 01:10:09 +1200 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-06-06 09:10:09 -0400 |
commit | 5989f7a8a67a0900e1283f9534948f6185424322 (patch) | |
tree | dd8100cb0636a5d4c29a3370d6b82f809abd5077 /config/example-extras.cfg | |
parent | d065787afcc312fd5bee709a9b8cb15647f0ab08 (diff) | |
download | kutter-5989f7a8a67a0900e1283f9534948f6185424322.tar.gz kutter-5989f7a8a67a0900e1283f9534948f6185424322.tar.xz kutter-5989f7a8a67a0900e1283f9534948f6185424322.zip |
firmware_retraction: Implementation of tuneable G10/G11 firmware retraction (#1617)
This supports getting and setting of retraction parameters without
having to restart klippy.
Signed-off-by: Len Trigg <lenbok@gmail.com>
Diffstat (limited to 'config/example-extras.cfg')
-rw-r--r-- | config/example-extras.cfg | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index d3e1f1c7..b0f8cdf3 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -1593,6 +1593,27 @@ #measurement_delay: 100 +# Firmware filament retraction. This enables G10 (retract) and G11 +# (unretract) GCODE commands issued by many slicers. The parameters +# below provide startup defaults, although the values can be adjusted +# via the SET_RETRACTION command, allowing per-filament settings and +# runtime tuning. +#[firmware_retraction] +#retract_length: 0 +# The length of filament (in mm) to retract when G10 is activated, and to +# unretract when G11 is activated (but see unretract_extra_length below). +# The default is 0 mm. +#retract_speed: 20 +# The speed of retraction, in mm/s. The default is 20 mm/s. +#unretract_extra_length: 0 +# The length (in mm) of *additional* filament to add when unretracting. +#unretract_speed: 10 +# The speed of unretraction, in mm/s. The default is 10 mm/s. +#z_hop: 0 +# The amount of lift applied to the Z axis (in mm) on retract and +# restored on unretract. The default is 0 mm. + + # Include file support. One may include additional config file from # the main printer config file. Wildcards may also be used (eg, # "configs/*.cfg"). |