diff options
| author | Damien George | 2018-10-17 15:29:56 +1100 |
|---|---|---|
| committer | Damien George | 2018-10-17 15:29:56 +1100 |
| commit | d2c5496894b71ad868c7fd876a436410482d8c51 (patch) | |
| tree | 2c17e63f198881ea4b09c01e5bb19b99a0453871 | |
| parent | f0db1a5ab1d946395a0172a621905693889ee942 (diff) | |
stm32/boards/stm32h743.ld: Fix total flash size, should be 2048k.
Fixes issue #4240.
| -rw-r--r-- | ports/stm32/boards/stm32h743.ld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/stm32/boards/stm32h743.ld b/ports/stm32/boards/stm32h743.ld index 77bbfacb1..ca429edb7 100644 --- a/ports/stm32/boards/stm32h743.ld +++ b/ports/stm32/boards/stm32h743.ld @@ -5,7 +5,7 @@ /* Specify the memory areas */ MEMORY { - FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 1024K + FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 2048K FLASH_ISR (rx) : ORIGIN = 0x08000000, LENGTH = 128K /* sector 0, 128K */ FLASH_FS (r) : ORIGIN = 0x08020000, LENGTH = 128K /* sector 1, 128K */ FLASH_TEXT (rx) : ORIGIN = 0x08040000, LENGTH = 1792K /* sectors 6*128 + 8*128 */ |
