changed sleep from 0.1sec to 0.001sec in _send_loop()
This commit is contained in:
parent
3516e8a8e7
commit
ac3b5ebc54
1 changed files with 1 additions and 1 deletions
|
|
@ -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.1)
|
||||
time.sleep(0.001)
|
||||
continue
|
||||
|
||||
# wait until we have something in the queue
|
||||
|
|
|
|||
Loading…
Reference in a new issue