diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-11-24 19:59:36 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-12-10 14:24:32 -0500 |
commit | fcee27fc190fbba2b8d1278c1ee2c4dddc50342b (patch) | |
tree | aadd6e2954a2d0c09bb0814feb2d7329ef68e978 /docs/G-Codes.md | |
parent | c06618193d3c58521e45a0c2241278268664030e (diff) | |
download | kutter-fcee27fc190fbba2b8d1278c1ee2c4dddc50342b.tar.gz kutter-fcee27fc190fbba2b8d1278c1ee2c4dddc50342b.tar.xz kutter-fcee27fc190fbba2b8d1278c1ee2c4dddc50342b.zip |
gcode: Remove builtin T0/T1/T2/... command support
The builtin Tn command is not sufficiently flexible to control some
multi-extruder printers. Remove the command and encourage users to
define individual gcode_macros for each Tn instance.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r-- | docs/G-Codes.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index a7d1adcd..4ab3ffc7 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -9,7 +9,6 @@ Klipper supports the following standard G-Code commands: - Move to origin: `G28 [X] [Y] [Z]` - Turn off motors: `M18` or `M84` - Wait for current moves to finish: `M400` -- Select tool: `T<index>` - Use absolute/relative distances for extrusion: `M82`, `M83` - Use absolute/relative coordinates: `G90`, `G91` - Set position: `G92 [X<pos>] [Y<pos>] [Z<pos>] [E<pos>]` @@ -44,7 +43,7 @@ If one requires a less common G-Code command then it may be possible to implement it with a custom Klipper gcode_macro (see [example-extras.cfg](https://github.com/KevinOConnor/klipper/tree/master/config/example-extras.cfg) for details). For example, one might use this to implement: `G12`, -`G29`, `G30`, `G31`, `M42`, `M80`, `M81`, etc. +`G29`, `G30`, `G31`, `M42`, `M80`, `M81`, `T1`, etc. ## G-Code SD card commands |