From 4a8cba0e9cb2121b3e8b991e4829e0906adc6233 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20B=C3=A9n=C3=A9teau?= Date: Sun, 13 Oct 2019 00:11:55 +1300 Subject: [PATCH] Add support for LPC1114/333 (LPC1100XL series) This is not given in the user manual but the register immediately following DEVICE_ID does apparently contain the correct part ID. --- src/target/lpc11xx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/target/lpc11xx.c b/src/target/lpc11xx.c index f97b374..f454c60 100644 --- a/src/target/lpc11xx.c +++ b/src/target/lpc11xx.c @@ -147,6 +147,7 @@ lpc11xx_probe(target *t) target_add_ram(t, 0x10000000, 0x2000); lpc11xx_add_flash(t, 0x00000000, 0x20000, 0x1000); return true; + case 0x00040070: /* LPC1114/333 */ case 0x00050080: /* lpc1115XL */ t->driver = "LPC1100XL"; target_add_ram(t, 0x10000000, 0x2000);