Added support for the LPC1115FBD48/303 (ID determined experimentally)

This commit is contained in:
Richard Eoin Meadows 2014-01-26 23:54:23 +00:00 committed by Gareth McMullin
parent d27c50c601
commit e5624a7e6d
1 changed files with 2 additions and 1 deletions

View File

@ -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\"" " PUBLIC \"+//IDN gnu.org//DTD GDB Memory Map V1.0//EN\""
" \"http://sourceware.org/gdb/gdb-memory-map.dtd\">"*/ " \"http://sourceware.org/gdb/gdb-memory-map.dtd\">"*/
"<memory-map>" "<memory-map>"
" <memory type=\"flash\" start=\"0x00000000\" length=\"0x8000\">" " <memory type=\"flash\" start=\"0x00000000\" length=\"0x10000\">"
" <property name=\"blocksize\">0x1000</property>" " <property name=\"blocksize\">0x1000</property>"
" </memory>" " </memory>"
" <memory type=\"ram\" start=\"0x10000000\" length=\"0x2000\"/>" " <memory type=\"ram\" start=\"0x10000000\" length=\"0x2000\"/>"
@ -100,6 +100,7 @@ lpc11xx_probe(struct target_s *target)
case 0x1440102B: /* lpc1114 */ case 0x1440102B: /* lpc1114 */
case 0x0A40902B: case 0x0A40902B:
case 0x1A40902B: case 0x1A40902B:
case 0x2058002B: /* lpc1115 */
case 0x1431102B: /* lpc11c22 */ case 0x1431102B: /* lpc11c22 */
case 0x1430102B: /* lpc11c24 */ case 0x1430102B: /* lpc11c24 */
target->driver = "lpc11xx"; target->driver = "lpc11xx";