From 484e0acc638c27366e19275c32db9c8487ea8fba Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Wed, 20 Apr 2022 13:49:59 +0200 Subject: 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 --- examples/boot/nrf/memory.x | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/boot/nrf/memory.x (limited to 'examples/boot/nrf/memory.x') diff --git a/examples/boot/nrf/memory.x b/examples/boot/nrf/memory.x new file mode 100644 index 00000000..dfb72103 --- /dev/null +++ b/examples/boot/nrf/memory.x @@ -0,0 +1,14 @@ +MEMORY +{ + /* NOTE 1 K = 1 KiBi = 1024 bytes */ + BOOTLOADER_STATE : ORIGIN = 0x00006000, LENGTH = 4K + FLASH : ORIGIN = 0x00007000, LENGTH = 64K + DFU : ORIGIN = 0x00017000, LENGTH = 68K + RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 32K +} + +__bootloader_state_start = ORIGIN(BOOTLOADER_STATE); +__bootloader_state_end = ORIGIN(BOOTLOADER_STATE) + LENGTH(BOOTLOADER_STATE); + +__bootloader_dfu_start = ORIGIN(DFU); +__bootloader_dfu_end = ORIGIN(DFU) + LENGTH(DFU); -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0