diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-12-01 00:08:35 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-12-01 00:21:20 -0500 |
commit | d2ecc9d80c749454b3d14d547d8ec71c0c124fd1 (patch) | |
tree | e2db291926c8eca3bcd1f709013f4d3a19b933c8 /klippy/klippy.py | |
parent | fbd7cc243ba49b7e8ab0b435e319cf133dea5224 (diff) | |
download | kutter-d2ecc9d80c749454b3d14d547d8ec71c0c124fd1.tar.gz kutter-d2ecc9d80c749454b3d14d547d8ec71c0c124fd1.tar.xz kutter-d2ecc9d80c749454b3d14d547d8ec71c0c124fd1.zip |
gcode: Add support for CLEAR_SHUTDOWN command
Add ability to clear the MCU shutdown flag from the console.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r-- | klippy/klippy.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py index 2787a6aa..d1bf26e8 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -26,9 +26,9 @@ Error configuring printer """ message_shutdown = """ -This is an unrecoverable error. Please correct the -underlying issue and then manually restart both the -firmware and the host software. +Once the underlying issue is corrected, the "CLEAR_SHUTDOWN" +command can be used to clear the firmware flag and restart +the host software. Printer is shutdown """ |