From f65ccd8747a80d8558fcf06cd34f350ebfa87859 Mon Sep 17 00:00:00 2001 From: daid Date: Mon, 28 Oct 2013 10:42:09 +0100 Subject: [PATCH 1/1] Do not add the corrected error messages to the term screen. --- Cura/util/machineCom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/util/machineCom.py b/Cura/util/machineCom.py index a47f8f31..cf80b47c 100644 --- a/Cura/util/machineCom.py +++ b/Cura/util/machineCom.py @@ -358,7 +358,7 @@ class MachineCom(object): t = time.time() self._heatupWaitTimeLost = t - self._heatupWaitStartTime self._heatupWaitStartTime = t - elif line.strip() != '' and line.strip() != 'ok' and not line.startswith('Resend:') and line != 'echo:Unknown command:""\n' and self.isOperational(): + elif line.strip() != '' and line.strip() != 'ok' and not line.startswith('Resend:') and not line.startswith('Error:checksum mismatch') and not line.startswith('Error:Line Number is not Last Line Number+1') and line != 'echo:Unknown command:""\n' and self.isOperational(): self._callback.mcMessage(line) if self._state == self.STATE_DETECT_BAUDRATE: -- 2.30.2