summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
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)