disable line forcing as it crashes grbl commands.
This commit is contained in:
parent
3c32224a48
commit
a25870dd79
1 changed files with 5 additions and 2 deletions
|
|
@ -1019,8 +1019,11 @@ class MachineCom(object):
|
|||
### Printing
|
||||
elif self._state == self.STATE_PRINTING:
|
||||
if line == "" and time.time() > self._timeout:
|
||||
self._log("Communication timeout during printing, forcing a line")
|
||||
line = 'ok'
|
||||
if not self._grbl:
|
||||
self._log("Communication timeout during printing, forcing a line")
|
||||
line = 'ok'
|
||||
else:
|
||||
line = ""
|
||||
|
||||
if self.isSdPrinting():
|
||||
if time.time() > tempRequestTimeout and not heatingUp:
|
||||
|
|
|
|||
Loading…
Reference in a new issue