reverted to old sleep 0.1sec due to acc bug
This commit is contained in:
parent
ac3b5ebc54
commit
42844c2ef9
2 changed files with 2 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -25,3 +25,4 @@ OctoPrint.egg-info
|
|||
/nbproject/
|
||||
.directory
|
||||
.project
|
||||
out/*
|
||||
|
|
|
|||
|
|
@ -1708,7 +1708,7 @@ class MachineCom(object):
|
|||
while self._send_queue_active:
|
||||
try:
|
||||
if(self.RX_BUFFER_SIZE - sum(self.acc_line_lengths) < 20):
|
||||
time.sleep(0.001)
|
||||
time.sleep(0.1)
|
||||
continue
|
||||
|
||||
# wait until we have something in the queue
|
||||
|
|
|
|||
Loading…
Reference in a new issue