diff options
author | Damien George <damien.p.george@gmail.com> | 2015-07-25 22:49:25 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-07-25 22:49:25 +0100 |
commit | db109ca0fc12f4a8ffe08d44d3b1422452bd7b4e (patch) | |
tree | dce90d7ee86c480ecd7a7894849031e5dc3ff41c /tools/pyboard.py | |
parent | f1236734bbd8baaa2566e0f3abdd0ff2d6663932 (diff) | |
download | micropython-db109ca0fc12f4a8ffe08d44d3b1422452bd7b4e.tar.gz micropython-db109ca0fc12f4a8ffe08d44d3b1422452bd7b4e.zip |
tools/pyboard.py: Speed up reading of chars by decreasing sleep period.
Diffstat (limited to 'tools/pyboard.py')
-rwxr-xr-x | tools/pyboard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pyboard.py b/tools/pyboard.py index 4032202402..223f3be16f 100755 --- a/tools/pyboard.py +++ b/tools/pyboard.py @@ -66,7 +66,7 @@ class Pyboard: timeout_count += 1 if timeout is not None and timeout_count >= 10 * timeout: break - time.sleep(0.1) + time.sleep(0.01) return data def enter_raw_repl(self): |