aboutsummaryrefslogtreecommitdiff
path: root/src/lpc11xx.c
diff options
context:
space:
mode:
authorRichard Eoin Meadows2014-01-26 23:54:23 +0000
committerGareth McMullin2014-01-29 08:02:04 +0800
commite5624a7e6dadb3433ff2c6b3004e2e9862bb1d55 (patch)
tree54abe371992042d6f8f84970a5c5806fe8d78bee /src/lpc11xx.c
parentd27c50c6019d190c8bfc44d76ab5fee67b5164fa (diff)
Added support for the LPC1115FBD48/303 (ID determined experimentally)
Diffstat (limited to 'src/lpc11xx.c')
-rw-r--r--src/lpc11xx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lpc11xx.c b/src/lpc11xx.c
index 670bba8..30db181 100644
--- a/src/lpc11xx.c
+++ b/src/lpc11xx.c
@@ -64,7 +64,7 @@ static const char lpc11xx_xml_memory_map[] = "<?xml version=\"1.0\"?>"
" PUBLIC \"+//IDN gnu.org//DTD GDB Memory Map V1.0//EN\""
" \"http://sourceware.org/gdb/gdb-memory-map.dtd\">"*/
"<memory-map>"
- " <memory type=\"flash\" start=\"0x00000000\" length=\"0x8000\">"
+ " <memory type=\"flash\" start=\"0x00000000\" length=\"0x10000\">"
" <property name=\"blocksize\">0x1000</property>"
" </memory>"
" <memory type=\"ram\" start=\"0x10000000\" length=\"0x2000\"/>"
@@ -100,6 +100,7 @@ lpc11xx_probe(struct target_s *target)
case 0x1440102B: /* lpc1114 */
case 0x0A40902B:
case 0x1A40902B:
+ case 0x2058002B: /* lpc1115 */
case 0x1431102B: /* lpc11c22 */
case 0x1430102B: /* lpc11c24 */
target->driver = "lpc11xx";