diff options
author | Stefan Dej <meteyou@gmail.com> | 2021-06-02 16:45:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-02 10:45:27 -0400 |
commit | b5e4f3d20453b2720fbb2e21b1585637048271f8 (patch) | |
tree | 7b992ca01ca217ec342c9e839c374ba778017098 /klippy/gcode.py | |
parent | 55be26097f6a287a73db523f4d11556add8970e6 (diff) | |
download | kutter-b5e4f3d20453b2720fbb2e21b1585637048271f8.tar.gz kutter-b5e4f3d20453b2720fbb2e21b1585637048271f8.tar.xz kutter-b5e4f3d20453b2720fbb2e21b1585637048271f8.zip |
gcode: Update gcode descriptions (#4335)
Add help description to HELP
Add help description to RESPOND
Add help description to MEASURE_AXES_NOISE, TEST_RESONANCES and SHAPER_CALIBRATE
Add help description to PAUSE, RESUME, CLEAR_PAUSE and CANCEL_PRINT
Add help description to GET_POSITION
Add help description to SET_RETRACTION and GET_RETRACTION
Signed-off-by: Stefan Dej <meteyou@gmail.com>
Diffstat (limited to 'klippy/gcode.py')
-rw-r--r-- | klippy/gcode.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/gcode.py b/klippy/gcode.py index 3abc70aa..97621cb9 100644 --- a/klippy/gcode.py +++ b/klippy/gcode.py @@ -325,6 +325,7 @@ class GCodeDispatch: msg = self.printer.get_state_message()[0] msg = msg.rstrip() + "\nKlipper state: Not ready" raise gcmd.error(msg) + cmd_HELP_help = "Report the list of available extended G-Code commands" def cmd_HELP(self, gcmd): cmdhelp = [] if not self.is_printer_ready: |