diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-01-07 19:06:55 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-01-07 19:17:20 -0500 |
commit | 005cfea5c3b1396ae5328a1abd719cdb0f41d9a3 (patch) | |
tree | f93e6a72bde73b22b3b37daa18b7fb2062ecfffc /docs | |
parent | ac863a95b6689a0975e259512b9e49add306f2b4 (diff) | |
download | kutter-005cfea5c3b1396ae5328a1abd719cdb0f41d9a3.tar.gz kutter-005cfea5c3b1396ae5328a1abd719cdb0f41d9a3.tar.xz kutter-005cfea5c3b1396ae5328a1abd719cdb0f41d9a3.zip |
gcode: Fix detection of some "extended" g-code commands
Fix typo that resulted in _get_extended_params() being called for all
commands. Allow "extended" g-code commands to contain numbers.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Command_Templates.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/Command_Templates.md b/docs/Command_Templates.md index e45fdf0e..1aa85d31 100644 --- a/docs/Command_Templates.md +++ b/docs/Command_Templates.md @@ -2,10 +2,10 @@ This document provides information on implementing G-Code command sequences in gcode_macro (and similar) config sections. ### G-Code Macro Naming -Case is not important when creating a G-Code macro name. MY_MACRO and + +Case is not important for the G-Code macro name - MY_MACRO and my_macro will evaluate the same and may be called in either upper or -lower case. If any numerical digits are used in the macro name they -must all be placed at the end of the name. +lower case. ### Formatting of G-Code in the config |