Searched refs:inputQueue (Results 1 – 1 of 1) sorted by relevance
191 def read_serial_port(ser, inputQueue, stop): argument196 inputQueue.put(line.decode('latin-1').strip())204 inputQueue = queue.Queue()216 …serial_thread = threading.Thread(target=read_serial_port, args=(ser, inputQueue, lambda: stop_thre…223 if inputQueue.qsize() > 0:224 str_line = inputQueue.get()