From: Daid Date: Thu, 5 Jul 2012 20:58:39 +0000 (+0200) Subject: Add some missing M codes to the GCode reader so we do not report them as unknown. X-Git-Tag: 12.07~8 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=42e1c34cc9a40ddc794b14b83146f071749d7ba4;p=cura.git Add some missing M codes to the GCode reader so we do not report them as unknown. --- 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)