From 7b8242175100d042000030638b7f3226783c195c Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 14 Jun 2018 14:57:03 +0200 Subject: [PATCH] Don't disable E steppers when pausing There is no such command to disable only the E stepper drivers. This command M84 gets interpreted as disabling ALL stepper drivers, which on some printers would cause the print bed to fall down. --- plugins/PostProcessingPlugin/scripts/PauseAtHeight.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py index cb31514e9d..60babbae40 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -262,9 +262,6 @@ class PauseAtHeight(Script): if current_z < 15: prepend_gcode += self.putValue(G=1, Z=15, F=300) + "\n" - # Disable the E steppers - prepend_gcode += self.putValue(M=84, E=0) + "\n" - # Set extruder standby temperature prepend_gcode += self.putValue(M=104, S=standby_temperature) + "; standby temperature\n"