diff --git a/src/octoprint/settings.py b/src/octoprint/settings.py index b5d8947f..c3a3aa90 100644 --- a/src/octoprint/settings.py +++ b/src/octoprint/settings.py @@ -31,7 +31,7 @@ default_settings = { "timeout": { "detection": 0.5, "connection": 2, - "communication": 5, + "communication": 10, "temperature": 5, "sdStatus": 1 }, diff --git a/src/octoprint/util/comm.py b/src/octoprint/util/comm.py index 9c653376..7118ab34 100644 --- a/src/octoprint/util/comm.py +++ b/src/octoprint/util/comm.py @@ -786,6 +786,7 @@ class MachineCom(object): and line.strip() != 'ok' and not line.startswith("wait") \ and not line.startswith('Resend:') \ and line != 'echo:Unknown command:""\n' \ + and line != "Unsupported statement" \ and self.isOperational(): self._callback.mcMessage(line)