From 7b35b4ebee70a1fd4379d3c442a854f1658844b3 Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Wed, 29 Jun 2022 19:14:07 +0200 Subject: Fix RAM origin copy paste from nrf --- examples/boot/bootloader/stm32/memory.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/boot/bootloader') diff --git a/examples/boot/bootloader/stm32/memory.x b/examples/boot/bootloader/stm32/memory.x index 110c23259..b6f185ef7 100644 --- a/examples/boot/bootloader/stm32/memory.x +++ b/examples/boot/bootloader/stm32/memory.x @@ -5,7 +5,7 @@ MEMORY BOOTLOADER_STATE : ORIGIN = 0x08006000, LENGTH = 4K ACTIVE : ORIGIN = 0x08008000, LENGTH = 32K DFU : ORIGIN = 0x08010000, LENGTH = 36K - RAM (rwx) : ORIGIN = 0x20000008, LENGTH = 16K + RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 16K } __bootloader_state_start = ORIGIN(BOOTLOADER_STATE) - ORIGIN(FLASH); -- cgit