Merge pull request #366 from UweBonnes/f7_fix
stm32f4.c: F76x also has large sector by default.
This commit is contained in:
commit
c5713ea8d3
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue