summaryrefslogtreecommitdiffstatshomepage
path: root/tools/pyboard.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-07-25 22:49:25 +0100
committerDamien George <damien.p.george@gmail.com>2015-07-25 22:49:25 +0100
commitdb109ca0fc12f4a8ffe08d44d3b1422452bd7b4e (patch)
treedce90d7ee86c480ecd7a7894849031e5dc3ff41c /tools/pyboard.py
parentf1236734bbd8baaa2566e0f3abdd0ff2d6663932 (diff)
downloadmicropython-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-xtools/pyboard.py2
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):