diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-05-20 12:52:19 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-05-20 12:52:19 -0400 |
commit | 2ab47cd20c87aa6798f13e0f5180cb90c9cba614 (patch) | |
tree | 433374572e84ab2e6a0901a22b25f557fefa3cec /docs | |
parent | 75a1e9ea21c305c50c1ffe6eb93c42106ff16f3e (diff) | |
download | kutter-2ab47cd20c87aa6798f13e0f5180cb90c9cba614.tar.gz kutter-2ab47cd20c87aa6798f13e0f5180cb90c9cba614.tar.xz kutter-2ab47cd20c87aa6798f13e0f5180cb90c9cba614.zip |
extruder: Fix SET_PRESSURE_ADVANCE so that it works with multiple extruders
Use the new gcode.register_mux_command() so that SET_PRESSURE_ADVANCE
works correctly with multiple extruders.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/G-Codes.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index 429dff74..aa795205 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -84,9 +84,10 @@ The following standard commands are supported: [ACCEL_TO_DECEL=<value>] [JUNCTION_DEVIATION=<value>]`: Modify the printer's velocity limits. Note that one may only set values less than or equal to the limits specified in the config file. -- `SET_PRESSURE_ADVANCE [ADVANCE=<pressure_advance>] +- `SET_PRESSURE_ADVANCE [EXTRUDER=<config_name>] [ADVANCE=<pressure_advance>] [ADVANCE_LOOKAHEAD_TIME=<pressure_advance_lookahead_time>]`: - Set pressure advance parameters. + Set pressure advance parameters. If EXTRUDER is not specified, it + defaults to the active extruder. - `RESTART`: This will cause the host software to reload its config and perform an internal reset. This command will not clear error state from the micro-controller (see FIRMWARE_RESTART) nor will it |