diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-11-22 19:38:51 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-11-30 21:19:43 -0500 |
commit | dbdf1e137e74392a7aa0858d524498a41bddabea (patch) | |
tree | 28a7be0f188a6408bd5036779a26fdc50e3f24d1 /klippy/mcu.py | |
parent | 6ebb1a68cbf5416568ec201765e47cd63b0e4dc9 (diff) | |
download | kutter-dbdf1e137e74392a7aa0858d524498a41bddabea.tar.gz kutter-dbdf1e137e74392a7aa0858d524498a41bddabea.tar.xz kutter-dbdf1e137e74392a7aa0858d524498a41bddabea.zip |
gcode: Support reading from gcode input before mcu is ready
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/mcu.py')
-rw-r--r-- | klippy/mcu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/mcu.py b/klippy/mcu.py index e71423bc..2e15287f 100644 --- a/klippy/mcu.py +++ b/klippy/mcu.py @@ -336,7 +336,7 @@ class MCU: self.is_shutdown = True logging.info("%s: %s" % (params['#name'], params['#msg'])) self.serial.dump_debug() - self._printer.shutdown() + self._printer.note_shutdown() # Connection phase def connect(self): if not self._is_fileoutput: |