diff options
author | Arksine <arksine.code@gmail.com> | 2019-01-21 17:24:17 -0500 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-01-28 11:23:52 -0500 |
commit | 893cbbab83ebd4906eab0ce9bb08d0fb4f805af7 (patch) | |
tree | 2fa510ce54d08e1dfecff338099db14f9a327e68 /docs/G-Codes.md | |
parent | 7605752dc253e8ff178c376073b40647837db76c (diff) | |
download | kutter-893cbbab83ebd4906eab0ce9bb08d0fb4f805af7.tar.gz kutter-893cbbab83ebd4906eab0ce9bb08d0fb4f805af7.tar.xz kutter-893cbbab83ebd4906eab0ce9bb08d0fb4f805af7.zip |
pause_resume: update documentation
Add updates to example-extras.cfg and G-Codes.md documenting pause_resume. Also add M600 (filament change) to sample-macros.cfg.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r-- | docs/G-Codes.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index d7fcbedb..6848279f 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -291,3 +291,13 @@ enabled. - `RESPOND TYPE=error MSG="<message>"`: echo the message prepended with `!! `. - `RESPOND PREFIX=<prefix> MSG="<message>"`: echo the message prepended with `<prefix>` (The `PREFIX` parameter will take priority over the `TYPE` parameter) + +## Pause Resume + +The following commands are available when the "pause_resume" config section +is enabled: + - `PAUSE`: Pauses the current print. The current position is captured for + restoration upon resume. + - `RESUME [VELOCITY=<value>]`: Resumes the print from a pause, first restoring + the previously captured position. The VELOCITY parameter determines the speed + at which the tool should return to the original captured position. |