aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/memory.x
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2022-04-20 13:49:59 +0200
committerUlf Lilleengen <[email protected]>2022-04-27 15:17:18 +0200
commit484e0acc638c27366e19275c32db9c8487ea8fba (patch)
tree5649591dad34cadcb28503f94c1bbca0bf5578a1 /examples/boot/memory.x
parent9c283cd44504d6d9d6f9e352e4c7a8d043bd673f (diff)
Add stm32 flash + bootloader support
* Add flash drivers for L0, L1, L4, WB and WL. Not tested for WB, but should be similar to WL. * Add embassy-boot-stm32 for bootloading on STM32. * Add flash examples and bootloader examples * Update stm32-data
Diffstat (limited to 'examples/boot/memory.x')
-rw-r--r--examples/boot/memory.x14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/boot/memory.x b/examples/boot/memory.x
deleted file mode 100644
index dfb72103f..000000000
--- a/examples/boot/memory.x
+++ /dev/null
@@ -1,14 +0,0 @@
1MEMORY
2{
3 /* NOTE 1 K = 1 KiBi = 1024 bytes */
4 BOOTLOADER_STATE : ORIGIN = 0x00006000, LENGTH = 4K
5 FLASH : ORIGIN = 0x00007000, LENGTH = 64K
6 DFU : ORIGIN = 0x00017000, LENGTH = 68K
7 RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 32K
8}
9
10__bootloader_state_start = ORIGIN(BOOTLOADER_STATE);
11__bootloader_state_end = ORIGIN(BOOTLOADER_STATE) + LENGTH(BOOTLOADER_STATE);
12
13__bootloader_dfu_start = ORIGIN(DFU);
14__bootloader_dfu_end = ORIGIN(DFU) + LENGTH(DFU);