Merge pull request #366 from UweBonnes/f7_fix

stm32f4.c: F76x also has large sector by default.
This commit is contained in:
Gareth McMullin 2018-07-07 13:03:14 +12:00 committed by GitHub
commit c5713ea8d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -262,6 +262,7 @@ static bool stm32f4_attach(target *t)
case ID_STM32F76X: /* F76x F77x RM0410 */
is_f7 = true;
dual_bank = true;
large_sectors = true;
flashsize_base = F7_FLASHSIZE;
break;
case ID_STM32F72X: /* F72x F73x RM0431 */
@ -300,7 +301,7 @@ static bool stm32f4_attach(target *t)
int split = 0;
uint32_t banksize;
if (use_dual_bank) {
banksize = flashsize << 9; /* flas split on two sectors. */
banksize = flashsize << 9; /* flash split on two sectors. */
split = (flashsize == 0x400) ? 8 : 12;
}
else