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/Config_Changes.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/Config_Changes.md')
-rw-r--r-- | docs/Config_Changes.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/Config_Changes.md b/docs/Config_Changes.md index 0e479ce9..51f8e3de 100644 --- a/docs/Config_Changes.md +++ b/docs/Config_Changes.md @@ -6,6 +6,12 @@ All dates in this document are approximate. # Changes +20191210: The builtin T0, T1, T2, ... commands have been removed. The +extruder activate_gcode and deactivate_gcode config options have been +removed. If these commands (and scripts) are needed then define +individual [gcode_macro T0] style macros that call the +ACTIVATE_EXTRUDER command. + 20191210: Support for the M206 command has been removed. Replace with calls to SET_GCODE_OFFSET. If support for M206 is needed, add a [gcode_macro M206] config section that calls SET_GCODE_OFFSET. (For |