summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorJérémy Dufour2009-05-21 08:21:48 +0200
committerJérémy Dufour2009-05-21 08:21:48 +0200
commit51b4bb99132573fbdd1b0220735f642867517326 (patch)
treeb8cc23cab1bbe8fd8b7a93276782aff94277fba9 /tools
parent0c140b4d150c6f4629e0d05c29ffb0333b1ea0b6 (diff)
* digital/io/src:
- add trace for path computing.
Diffstat (limited to 'tools')
-rw-r--r--tools/trace/tinter/thost.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/trace/tinter/thost.py b/tools/trace/tinter/thost.py
index cdaef554..b5c43c0f 100644
--- a/tools/trace/tinter/thost.py
+++ b/tools/trace/tinter/thost.py
@@ -6,7 +6,7 @@ from utils import *
FLASH_MEMORY_HIGH = 0x1fffff
FLASH_PAGE = 0x80000
-FLASH_BUFFER_SIZE = 128
+FLASH_BUFFER_SIZE = 16
FLASH_CMD_INIT = 0
FLASH_CMD_READ = 1
@@ -64,7 +64,7 @@ class THost:
i -= FLASH_PAGE
start_addr = i
- end_addr = start_addr + FLASH_PAGE
+ end_addr = start_addr + 100 * 16
print "Dump memory from address : " + hex(start_addr) + " to " + \
hex(end_addr)