summaryrefslogtreecommitdiff
path: root/tools/trace/tinter/thost.py
diff options
context:
space:
mode:
authorJérémy Dufour2009-05-18 13:03:55 +0200
committerJérémy Dufour2009-05-18 13:03:55 +0200
commitabb347789ec6bbef3704c3fb7db96d25015b6487 (patch)
treed13581b0df707c03af4708722c05dcd25f5beb84 /tools/trace/tinter/thost.py
parent734263aa90fa150e1bcfa6bc70d140a35fccdc39 (diff)
* tools/trace:
- find template using script path, - use ttyUSB (dev2) rather than ttyACM (dev), - decode all printf sequence (rather than just %d).
Diffstat (limited to 'tools/trace/tinter/thost.py')
-rw-r--r--tools/trace/tinter/thost.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/trace/tinter/thost.py b/tools/trace/tinter/thost.py
index 885fbbb3..cdaef554 100644
--- a/tools/trace/tinter/thost.py
+++ b/tools/trace/tinter/thost.py
@@ -19,7 +19,7 @@ def log (x):
class THost:
"""Class to connect to the flash memory."""
def __init__(self):
- self.__proto = Proto (serial.Serial ('/dev/ttyACM0'), time.time, 0.1)
+ self.__proto = Proto (serial.Serial ('/dev/ttyUSB0'), time.time, 0.1)
self.__memory = list()
self.__traces = []