diff options
| author | hierophect <hierophect@gmail.com> | 2020-04-20 16:06:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-20 16:06:02 -0400 |
| commit | 2c92befae177246b5edbac3b594d57c7f145dd22 (patch) | |
| tree | bfabb939ed487662e961ef989fe4035b629a0455 | |
| parent | 276241b9626078d2e998300ee3b5ff6f7822aa37 (diff) | |
| parent | 506f340c7d8ca8f266bce39cd603b812329467f6 (diff) | |
Merge pull request #2788 from k0d/nulceo_f767_flash_bugfix
STM32: f767: Fixes linker settings.
| -rw-r--r-- | ports/stm/boards/STM32F767_fs.ld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/stm/boards/STM32F767_fs.ld b/ports/stm/boards/STM32F767_fs.ld index 40f7d740a..4acca4d66 100644 --- a/ports/stm/boards/STM32F767_fs.ld +++ b/ports/stm/boards/STM32F767_fs.ld @@ -8,7 +8,7 @@ MEMORY FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 2048K /* entire flash */ FLASH_ISR (rx) : ORIGIN = 0x08000000, LENGTH = 32K /* sector 0 */ FLASH_FS (rx) : ORIGIN = 0x08008000, LENGTH = 96K /* sectors 1,2,3 are 32K */ - FLASH_TEXT (rx) : ORIGIN = 0x08010000, LENGTH = 1920K /* sector 4 is 128K, sectors 5,6,7 are 256K */ + FLASH_TEXT (rx) : ORIGIN = 0x08020000, LENGTH = 1920K /* sector 4 is 128K, sectors 5,6,7 are 256K */ RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 512K } |
