Add some missing M codes to the GCode reader so we do not report them as unknown.

master
Daid 2012-07-05 22:58:39 +02:00
parent f6c8f7d4ec
commit 42e1c34cc9
1 changed files with 8 additions and 0 deletions

View File

@ -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)