lmi: add support for TM4C1294NCPDT

This commit is contained in:
Francesco Valla 2020-04-03 17:50:32 +02:00 committed by UweBonnes
parent 58a8571d5b
commit 846dadcc39
1 changed files with 7 additions and 0 deletions

View File

@ -100,6 +100,13 @@ bool lmi_probe(target *t)
lmi_add_flash(t, 0x10000);
t->target_options |= CORTEXM_TOPT_INHIBIT_SRST;
return true;
case 0x101F: /* TM4C1294NCPDT */
t->driver = lmi_driver_str;
target_add_ram(t, 0x20000000, 0x40000);
lmi_add_flash(t, 0x100000);
t->target_options |= CORTEXM_TOPT_INHIBIT_SRST;
return true;
}
return false;
}