From c358276f31d141742a951112dc10bee4439a8b74 Mon Sep 17 00:00:00 2001 From: theqlabs Date: Mon, 11 Oct 2010 23:55:31 +0000 Subject: [PATCH] Added ARM Chip ID database file in /reports. Add your ARM CHIP ID MEMORY ADDRESSES git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@754 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- client/GoodFETARM7.py | 1 - client/GoodFETAT91SAM7S.py | 6 ++++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/client/GoodFETARM7.py b/client/GoodFETARM7.py index cf0a1f4..0864cb2 100644 --- a/client/GoodFETARM7.py +++ b/client/GoodFETARM7.py @@ -10,7 +10,6 @@ # * set security (chip-specific) import sys, binascii, struct, time -import atlasutils.smartprint as asp from GoodFET import GoodFET from intelhex import IntelHex diff --git a/client/GoodFETAT91SAM7S.py b/client/GoodFETAT91SAM7S.py index 3027617..8f49070 100644 --- a/client/GoodFETAT91SAM7S.py +++ b/client/GoodFETAT91SAM7S.py @@ -1,4 +1,5 @@ from GoodFETARM7 import * + """ This is the ARM7 series of microcontrollers from Atmel, including: * AT91SAM7S512 @@ -10,14 +11,15 @@ This is the ARM7 series of microcontrollers from Atmel, including: * AT91SAM7S161 * AT91SAM7S16 - SAM-BA boot-assistant can be used (not through this module) by setting PA0, PA1, and PA2 high for at least 10 seconds followed by a power cycle. SAM-BA supports reprogramming through the DBGU port or USB port. The System Controller peripherals are all mapped to the highest 4 Kbytes of address space, between addresses 0xFFFF F000 and 0xFFFF FFFF. """ - +# +# Base Memory Addresses +# FLASH_BASE = 0x100000 TCx_BASE = 0xfffa0000 # Timer/Counter UDP_BASE = 0xfffb0000 # USB Device Port -- 2.20.1