diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-11-05 16:21:06 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-11-21 13:18:19 -0500 |
commit | 6d0c55b6c1adcef3d6d64d613a486f1f99e0c6e0 (patch) | |
tree | 2cbd09210bdd1fb906c02ce713472e0c448c025e /docs/G-Codes.md | |
parent | da06e185fbcf120a73458018116af38576689496 (diff) | |
download | kutter-6d0c55b6c1adcef3d6d64d613a486f1f99e0c6e0.tar.gz kutter-6d0c55b6c1adcef3d6d64d613a486f1f99e0c6e0.tar.xz kutter-6d0c55b6c1adcef3d6d64d613a486f1f99e0c6e0.zip |
extruder: Initial support for "smoothed pressure advance"
Support averaging the extruder position over a time range to "smooth
out" the velocity changes that occur during pressure advance.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r-- | docs/G-Codes.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index 7cd4b02b..ad5481b1 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -156,9 +156,9 @@ The following standard commands are supported: Sets the target temperature for a heater. If a target temperature is not supplied, the target is 0. - `SET_PRESSURE_ADVANCE [EXTRUDER=<config_name>] [ADVANCE=<pressure_advance>] - [ADVANCE_LOOKAHEAD_TIME=<pressure_advance_lookahead_time>]`: - Set pressure advance parameters. If EXTRUDER is not specified, it - defaults to the active extruder. + [SMOOTH_TIME=<pressure_advance_smooth_time>]`: Set pressure advance + parameters. If EXTRUDER is not specified, it defaults to the active + extruder. - `STEPPER_BUZZ STEPPER=<config_name>`: Move the given stepper forward one mm and then backward one mm, repeated 10 times. This is a diagnostic tool to help verify stepper connectivity. |