lm3s/tm4c: add TM4C1230C3PM

This commit is contained in:
Chris Pavlina 2017-07-21 13:29:41 -06:00
parent 7663794fdf
commit a0b0b8a716
1 changed files with 7 additions and 0 deletions

View File

@ -89,6 +89,13 @@ bool lmi_probe(target *t)
* only use the AIRCR SYSRESETREQ. */
t->target_options |= CORTEXM_TOPT_INHIBIT_SRST;
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;
}