Bug fix for Emergency Stop

This commit is contained in:
Salandora 2014-05-22 17:56:50 +02:00
parent 887ec45b6b
commit 536e17eac4

View file

@ -1018,6 +1018,9 @@ class MachineCom(object):
self._resendDelta = None
return None
def _gcode_M112(self, cmd): # It's an emergency what todo? Canceling the print should be the minimum
self.cancelPrint()
return cmd
### MachineCom callback ################################################################################################