add basic support for LPC11U68 (and maybe LPC11U68)
This commit is contained in:
parent
846dadcc39
commit
d1468530bd
|
@ -118,6 +118,11 @@ lpc11xx_probe(target *t)
|
||||||
target_add_ram(t, 0x10000000, 0x1000);
|
target_add_ram(t, 0x10000000, 0x1000);
|
||||||
lpc11xx_add_flash(t, 0x00000000, 0x10000, 0x1000);
|
lpc11xx_add_flash(t, 0x00000000, 0x10000, 0x1000);
|
||||||
return true;
|
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 0x3000002B:
|
||||||
case 0x3D00002B:
|
case 0x3D00002B:
|
||||||
t->driver = "LPC1343";
|
t->driver = "LPC1343";
|
||||||
|
|
Loading…
Reference in New Issue