Merge pull request #245 from schodet/stm32f469

stm32f4: add support for STM32F4[67]9
This commit is contained in:
Gareth McMullin 2017-06-22 14:52:19 -07:00 committed by GitHub
commit e9cdd5ec56
1 changed files with 1 additions and 0 deletions

View File

@ -173,6 +173,7 @@ bool stm32f4_probe(target *t)
switch(idcode) { switch(idcode) {
case ID_STM32F42X: /* 427/437 */ case ID_STM32F42X: /* 427/437 */
case ID_STM32F46X: /* 469/479 */
/* Second bank for 2M parts. */ /* Second bank for 2M parts. */
stm32f4_add_flash(t, 0x8100000, 0x10000, 0x4000, 12); stm32f4_add_flash(t, 0x8100000, 0x10000, 0x4000, 12);
stm32f4_add_flash(t, 0x8110000, 0x10000, 0x10000, 16); stm32f4_add_flash(t, 0x8110000, 0x10000, 0x10000, 16);