add basic support for LPC11U68 (and maybe LPC11U68)

This commit is contained in:
mean 2020-04-06 13:39:34 +02:00 committed by UweBonnes
parent 846dadcc39
commit d1468530bd
1 changed files with 5 additions and 0 deletions

View File

@ -118,6 +118,11 @@ lpc11xx_probe(target *t)
target_add_ram(t, 0x10000000, 0x1000);
lpc11xx_add_flash(t, 0x00000000, 0x10000, 0x1000);
return true;
case 0x1000002b: // FX LPC11U6 32 kB SRAM/256 kB flash (max)
t->driver = "LPC11U6";
target_add_ram(t, 0x10000000, 0x8000);
lpc11xx_add_flash(t, 0x00000000, 0x40000, 0x1000);
return true;
case 0x3000002B:
case 0x3D00002B:
t->driver = "LPC1343";