From 42e1c34cc9a40ddc794b14b83146f071749d7ba4 Mon Sep 17 00:00:00 2001 From: Daid Date: Thu, 5 Jul 2012 22:58:39 +0200 Subject: [PATCH] Add some missing M codes to the GCode reader so we do not report them as unknown. --- Cura/util/gcodeInterpreter.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Cura/util/gcodeInterpreter.py b/Cura/util/gcodeInterpreter.py index efa2d562..ea7985f0 100644 --- a/Cura/util/gcodeInterpreter.py +++ b/Cura/util/gcodeInterpreter.py @@ -206,6 +206,10 @@ class gcode(object): if M is not None: if M == 1: #Message with possible wait (ignored) pass + elif M == 80: #Enable power supply + pass + elif M == 81: #Suicide/disable power supply + pass elif M == 84: #Disable step drivers pass elif M == 92: #Set steps per unit @@ -226,6 +230,10 @@ class gcode(object): pass elif M == 113: #Extruder PWM (these should not be in the final GCode, but they are) pass + elif M == 140: #Set bed temperature + pass + elif M == 190: #Set bed temperature & wait + pass else: print "Unknown M code:" + str(M) self.layerList.append(currentLayer) -- 2.30.2