diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Config_Changes.md | 5 | ||||
-rw-r--r-- | docs/G-Codes.md | 2 |
2 files changed, 5 insertions, 2 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). diff --git a/docs/G-Codes.md b/docs/G-Codes.md index ad5481b1..029c9ae0 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -83,8 +83,6 @@ config section is enabled: The following standard G-Code commands are currently available, but using them is not recommended: -- Offset axes: `M206 [X<offset>] [Y<offset>] [Z<offset>]` (Use - SET_GCODE_OFFSET instead.) - Get Endstop Status: `M119` (Use QUERY_ENDSTOPS instead.) # Extended G-Code Commands |