diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-11-24 21:16:53 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-12-02 19:31:20 -0500 |
commit | 8e87ab0939eb2ac12b5d41e590da1494596577e3 (patch) | |
tree | c977d70786d1e160be44ce6495d076d506474af4 /docs | |
parent | 2d97e0e2189c4dd6d5810c772467fad9e7cccf9c (diff) | |
download | kutter-8e87ab0939eb2ac12b5d41e590da1494596577e3.tar.gz kutter-8e87ab0939eb2ac12b5d41e590da1494596577e3.tar.xz kutter-8e87ab0939eb2ac12b5d41e590da1494596577e3.zip |
gcode: Remove support for "G4 S1" style commands
The S parameter is not a standard and was not commonly used. The P
parameter (delay specified in milliseconds) is the commonly accepted
g-code mechanism for dwelling.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Config_Changes.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/Config_Changes.md b/docs/Config_Changes.md index a3e7208b..a6f5661f 100644 --- a/docs/Config_Changes.md +++ b/docs/Config_Changes.md @@ -6,6 +6,10 @@ All dates in this document are approximate. # Changes +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). + 20191126: The USB names have changed on micro-controllers with native USB support. They now use a unique chip id by default (where available). If an "mcu" config section uses a "serial" setting that |