From 7971bc91b226bf28a54e069bab3b2893d2643939 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Thu, 5 Jun 2014 21:23:07 +0200 Subject: [PATCH] Always send commands with checksum when printing (cherry picked from commit 3ee745d) --- src/octoprint/util/comm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/util/comm.py b/src/octoprint/util/comm.py index cf8b3ec7..00473b42 100644 --- a/src/octoprint/util/comm.py +++ b/src/octoprint/util/comm.py @@ -892,7 +892,7 @@ class MachineCom(object): if self._resendDelta is not None: self._resendNextCommand() elif not self._commandQueue.empty() and not self.isStreaming(): - self._sendCommand(self._commandQueue.get()) + self._sendCommand(self._commandQueue.get(), True) else: self._sendNext() elif line.lower().startswith("resend") or line.lower().startswith("rs"):