aboutsummaryrefslogtreecommitdiff
path: root/examples/boot
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-06-10 20:48:41 +0000
committerGitHub <[email protected]>2024-06-10 20:48:41 +0000
commitad7d739ddcc0e888574ba36a294b41d560927c5d (patch)
tree5597b05864e603514fcb73ae3faba7c3aa1f42b0 /examples/boot
parent3e2b015dc477023887ae9b0e5e3adf5deb7af362 (diff)
parent453aa58b7f9496faa699dd3bb88cb31e80fad1ad (diff)
Merge pull request #3062 from kkrolczyk/kk/bootloader-typos
fix docu typos, linker addr example
Diffstat (limited to 'examples/boot')
-rw-r--r--examples/boot/bootloader/stm32/memory.x2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/boot/bootloader/stm32/memory.x b/examples/boot/bootloader/stm32/memory.x
index b6f185ef7..198290520 100644
--- a/examples/boot/bootloader/stm32/memory.x
+++ b/examples/boot/bootloader/stm32/memory.x
@@ -2,7 +2,7 @@ MEMORY
2{ 2{
3 /* NOTE 1 K = 1 KiBi = 1024 bytes */ 3 /* NOTE 1 K = 1 KiBi = 1024 bytes */
4 FLASH : ORIGIN = 0x08000000, LENGTH = 24K 4 FLASH : ORIGIN = 0x08000000, LENGTH = 24K
5 BOOTLOADER_STATE : ORIGIN = 0x08006000, LENGTH = 4K 5 BOOTLOADER_STATE : ORIGIN = 0x08006000, LENGTH = 8K
6 ACTIVE : ORIGIN = 0x08008000, LENGTH = 32K 6 ACTIVE : ORIGIN = 0x08008000, LENGTH = 32K
7 DFU : ORIGIN = 0x08010000, LENGTH = 36K 7 DFU : ORIGIN = 0x08010000, LENGTH = 36K
8 RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 16K 8 RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 16K