src/target/stm32f4.c: All STM32F7 devs have option bytes at 0x1fff0000.

This commit is contained in:
Uwe Bonnes 2017-02-08 14:08:30 +01:00
parent e43017d0a6
commit dc1c7611a9
1 changed files with 2 additions and 1 deletions

View File

@ -338,7 +338,8 @@ static bool stm32f4_cmd_option(target *t, int argc, char *argv[])
uint32_t start, val;
int len;
if (t->idcode == 0x449) {
if ((t->idcode == 0x449) || (t->idcode == 0x451)){
/* F7 Devices have option bytes at 0x1FFF0000. */
start = 0x1FFF0000;
len = 0x20;
}