Merge pull request #475 from Salandora/master

Bug fix for Emergency Stop
This commit is contained in:
Gina Häußge 2014-05-22 21:53:06 +02:00
commit 36d1522f01

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 ################################################################################################