mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-08-06 13:34:06 -06:00
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>
This commit is contained in:
parent
ac863a95b6
commit
005cfea5c3
3 changed files with 20 additions and 17 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue