changed acc remaining value from 10 to 5 character
This commit is contained in:
parent
5b89302deb
commit
77499fb868
1 changed files with 1 additions and 1 deletions
|
|
@ -1759,7 +1759,7 @@ class MachineCom(object):
|
|||
peeked_entry = self._send_queue.peek()
|
||||
p_command, p_linenbr, p_cmd_type = peeked_entry
|
||||
|
||||
if(self.RX_BUFFER_SIZE - sum(self.acc_line_lengths) - len(p_command) < 10):
|
||||
if(self.RX_BUFFER_SIZE - sum(self.acc_line_lengths) - len(p_command) < 5):
|
||||
time.sleep(0.001)
|
||||
continue
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue