lm3s/tm4c: add TM4C1230C3PM
This commit is contained in:
parent
7663794fdf
commit
a0b0b8a716
|
@ -89,6 +89,13 @@ bool lmi_probe(target *t)
|
||||||
* only use the AIRCR SYSRESETREQ. */
|
* only use the AIRCR SYSRESETREQ. */
|
||||||
t->target_options |= CORTEXM_TOPT_INHIBIT_SRST;
|
t->target_options |= CORTEXM_TOPT_INHIBIT_SRST;
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
case 0x1022: /* TM4C1230C3PM */
|
||||||
|
t->driver = lmi_driver_str;
|
||||||
|
target_add_ram(t, 0x20000000, 0x6000);
|
||||||
|
lmi_add_flash(t, 0x10000);
|
||||||
|
t->target_options |= CORTEXM_TOPT_INHIBIT_SRST;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue