From 6cc3846512878f7cc29cf7aba56227cdca587a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Wed, 23 Nov 2016 15:53:05 +0100 Subject: [PATCH] Add M600 (filament change) to long running commands --- src/octoprint/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/settings.py b/src/octoprint/settings.py index 221ebe9c..d43de3b6 100644 --- a/src/octoprint/settings.py +++ b/src/octoprint/settings.py @@ -103,7 +103,7 @@ default_settings = { "maxWritePasses": 5, "additionalPorts": [], "additionalBaudrates": [], - "longRunningCommands": ["G4", "G28", "G29", "G30", "G32", "M400", "M226"], + "longRunningCommands": ["G4", "G28", "G29", "G30", "G32", "M400", "M226", "M600"], "checksumRequiringCommands": ["M110"], "helloCommand": "M110 N0", "disconnectOnErrors": True,