Skip to content

Commit db109ca

Browse files
committed
tools/pyboard.py: Speed up reading of chars by decreasing sleep period.
1 parent f123673 commit db109ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/pyboard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def read_until(self, min_num_bytes, ending, timeout=10, data_consumer=None):
6666
timeout_count += 1
6767
if timeout is not None and timeout_count >= 10 * timeout:
6868
break
69-
time.sleep(0.1)
69+
time.sleep(0.01)
7070
return data
7171

7272
def enter_raw_repl(self):

0 commit comments

Comments
 (0)