Merge pull request #248 from schodet/typo

stm32f4: fix typo in target name
This commit is contained in:
Gareth McMullin 2017-06-22 18:35:29 -07:00 committed by GitHub
commit 984f8b3d94
1 changed files with 2 additions and 2 deletions

View File

@ -217,7 +217,7 @@ bool stm32f4_probe(target *t)
stm32f4_add_flash(t, 0x0200000, 0x20000, 0x8000, 0);
stm32f4_add_flash(t, 0x0220000, 0x20000, 0x20000, 4);
stm32f4_add_flash(t, 0x0240000, 0xC0000, 0x40000, 5);
target_add_commands(t, stm32f4_cmd_list, "STM32F4x");
target_add_commands(t, stm32f4_cmd_list, "STM32F74x");
break;
case ID_STM32F76X: /* F76x F77x RM0410 */
t->driver = stm32f7_driver_str;
@ -240,7 +240,7 @@ bool stm32f4_probe(target *t)
stm32f4_add_flash(t, 0x8000000, 0x010000, 0x4000, 0);
stm32f4_add_flash(t, 0x8010000, 0x010000, 0x10000, 4);
stm32f4_add_flash(t, 0x8020000, 0x060000, 0x20000, 3);
target_add_commands(t, stm32f4_cmd_list, "STM32F76x");
target_add_commands(t, stm32f4_cmd_list, "STM32F72x");
break;
default:
return false;