diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-01-07 20:58:39 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-01-07 20:58:39 -0500 |
commit | 3fb0b7e4bc3ed51f867beee0eb2fc791779e3c46 (patch) | |
tree | f771a5ca502cbbecafef60c0d919461a38229c1e | |
parent | 9aab58605b22a3c6009890a3ded2f1ed7af5b6f7 (diff) | |
download | kutter-3fb0b7e4bc3ed51f867beee0eb2fc791779e3c46.tar.gz kutter-3fb0b7e4bc3ed51f867beee0eb2fc791779e3c46.tar.xz kutter-3fb0b7e4bc3ed51f867beee0eb2fc791779e3c46.zip |
docs: Update Command_templates.md - numbers in gcode_macro name must be at end
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | docs/Command_Templates.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/Command_Templates.md b/docs/Command_Templates.md index 1aa85d31..7a0bc34d 100644 --- a/docs/Command_Templates.md +++ b/docs/Command_Templates.md @@ -5,7 +5,9 @@ sequences in gcode_macro (and similar) config sections. 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. +lower case. If any numbers are used in the macro name then they must +all be at the end of the name (eg, TEST_MACRO25 is valid, but +MACRO25_TEST3 is not). ### Formatting of G-Code in the config |