summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-07-17 16:19:06 +1000
committerDamien George <damien.p.george@gmail.com>2019-07-17 16:19:50 +1000
commit02b2ad4fbdbfae3e06ee4d0c686be36509d53d7d (patch)
tree20b1ac813066556656f5b1de8a962c86c1444683
parent3b3a4749ce46febe4d19a2392e94485c0659eb98 (diff)
stm32/boards/STM32F769DISC: Fix length of FLASH_APP section.
Fixes issue #4924.
-rw-r--r--ports/stm32/boards/STM32F769DISC/f769_qspi.ld2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/stm32/boards/STM32F769DISC/f769_qspi.ld b/ports/stm32/boards/STM32F769DISC/f769_qspi.ld
index 9a0bd56fb..5f920b417 100644
--- a/ports/stm32/boards/STM32F769DISC/f769_qspi.ld
+++ b/ports/stm32/boards/STM32F769DISC/f769_qspi.ld
@@ -17,7 +17,7 @@
MEMORY
{
- FLASH_APP (rx) : ORIGIN = 0x08020000, LENGTH = 2016K /* sectors 1-11 3x32K 1*128K 7*256K */
+ FLASH_APP (rx) : ORIGIN = 0x08020000, LENGTH = 1920K /* sectors 4-11 1*128K 7*256K */
FLASH_QSPI (rx) : ORIGIN = 0x90000000, LENGTH = 64M /* external QSPI flash in XIP mode */
DTCM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K /* Used for storage cache */
RAM (xrw) : ORIGIN = 0x20020000, LENGTH = 384K /* SRAM1 = 368K, SRAM2 = 16K */