Always send commands with checksum when printing

This commit is contained in:
Gina Häußge 2014-06-05 21:23:07 +02:00
parent ec508f5224
commit 3ee745d79c

View file

@ -911,7 +911,7 @@ class MachineCom(object):
if self._resendDelta is not None: if self._resendDelta is not None:
self._resendNextCommand() self._resendNextCommand()
elif not self._commandQueue.empty() and not self.isStreaming(): elif not self._commandQueue.empty() and not self.isStreaming():
self._sendCommand(self._commandQueue.get()) self._sendCommand(self._commandQueue.get(), True)
else: else:
self._sendNext() self._sendNext()
elif line.lower().startswith("resend") or line.lower().startswith("rs"): elif line.lower().startswith("resend") or line.lower().startswith("rs"):