aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/stm32f3
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2022-06-29 19:14:07 +0200
committerUlf Lilleengen <[email protected]>2022-06-29 19:14:07 +0200
commit7b35b4ebee70a1fd4379d3c442a854f1658844b3 (patch)
tree7060c9f75a905f73ab01c9f2ec06473748688599 /examples/boot/application/stm32f3
parente0e675042bde3f0d6fbdf42c777d8963282a3e44 (diff)
Fix RAM origin copy paste from nrf
Diffstat (limited to 'examples/boot/application/stm32f3')
-rw-r--r--examples/boot/application/stm32f3/memory.x2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/boot/application/stm32f3/memory.x b/examples/boot/application/stm32f3/memory.x
index 14b2a2c9f..f51875766 100644
--- a/examples/boot/application/stm32f3/memory.x
+++ b/examples/boot/application/stm32f3/memory.x
@@ -5,7 +5,7 @@ MEMORY
5 BOOTLOADER_STATE : ORIGIN = 0x08006000, LENGTH = 4K 5 BOOTLOADER_STATE : ORIGIN = 0x08006000, LENGTH = 4K
6 FLASH : ORIGIN = 0x08008000, LENGTH = 32K 6 FLASH : ORIGIN = 0x08008000, LENGTH = 32K
7 DFU : ORIGIN = 0x08010000, LENGTH = 36K 7 DFU : ORIGIN = 0x08010000, LENGTH = 36K
8 RAM (rwx) : ORIGIN = 0x20000008, LENGTH = 32K 8 RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 32K
9} 9}
10 10
11__bootloader_state_start = ORIGIN(BOOTLOADER_STATE) - ORIGIN(BOOTLOADER); 11__bootloader_state_start = ORIGIN(BOOTLOADER_STATE) - ORIGIN(BOOTLOADER);