summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-05-30 09:54:51 +1000
committerDamien George <damien.p.george@gmail.com>2018-05-30 09:54:51 +1000
commita1acbad27a1e996c8f95b3d1c801aa2e31df9c99 (patch)
tree19ea49d23e89ee7d1fc15721384310b84424d775
parent958fa745213d3bef8a70f8993363098f07fc21fe (diff)
stm32/flash: Increase H7 flash size to full 2MiB.
-rw-r--r--ports/stm32/flash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/stm32/flash.c b/ports/stm32/flash.c
index d3a568858..26f76a174 100644
--- a/ports/stm32/flash.c
+++ b/ports/stm32/flash.c
@@ -77,7 +77,7 @@ static const flash_layout_t flash_layout[] = {
#elif defined(STM32H7)
static const flash_layout_t flash_layout[] = {
- { 0x08000000, 0x20000, 8 },
+ { 0x08000000, 0x20000, 16 },
};
#else