aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Config_Changes.md
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-11-24 21:10:51 -0500
committerKevin O'Connor <kevin@koconnor.net>2019-12-10 14:23:10 -0500
commitab2d302b7edfe22c7bf40392e1a29fb4dcbb154d (patch)
treebab97d759f94026ae14ef93873c1f74585c17c30 /docs/Config_Changes.md
parentd1f4f188101651f9b41b8b2bd4b9f088a1e3514a (diff)
downloadkutter-ab2d302b7edfe22c7bf40392e1a29fb4dcbb154d.tar.gz
kutter-ab2d302b7edfe22c7bf40392e1a29fb4dcbb154d.tar.xz
kutter-ab2d302b7edfe22c7bf40392e1a29fb4dcbb154d.zip
gcode: Remove support for the M206 command
The M206 command isn't particularly standardized and isn't issued by default from 3rd party software in their standard configurations. Encourage users to use the more powerful SET_GCODE_OFFSET command. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Config_Changes.md')
-rw-r--r--docs/Config_Changes.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/Config_Changes.md b/docs/Config_Changes.md
index a6f5661f..0e479ce9 100644
--- a/docs/Config_Changes.md
+++ b/docs/Config_Changes.md
@@ -6,6 +6,11 @@ All dates in this document are approximate.
# Changes
+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
+example "SET_GCODE_OFFSET Z=-{params.Z}".)
+
20191202: Support for the undocumented "S" parameter of the "G4"
command has been removed. Replace any occurrences of S with the
standard "P" parameter (the delay specified in milliseconds).