From 8c612fc0c9f319c19494ce15d2ba09f31532d270 Mon Sep 17 00:00:00 2001 From: linuswck Date: Mon, 15 Jan 2024 17:43:17 +0800 Subject: [PATCH] memory.x: RM CONFIG MEMORY area in linker script - STM32f407 does not have second bank or flash/ Sector 12 unlike F427 --- memory.x | 3 --- 1 file changed, 3 deletions(-) diff --git a/memory.x b/memory.x index 6ceba1f..7cd61a7 100644 --- a/memory.x +++ b/memory.x @@ -3,8 +3,6 @@ MEMORY { FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 1024K - /* reserved for config data */ - CONFIG (rx) : ORIGIN = 0x8100000, LENGTH = 16K RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 112K - 4 /* reserved for DFU trigger message */ DFU_MSG (wrx) : ORIGIN = 0x2001BFFC, LENGTH = 4 @@ -14,6 +12,5 @@ MEMORY } _flash_start = ORIGIN(FLASH); -_config_start = ORIGIN(CONFIG); _dfu_msg = ORIGIN(DFU_MSG); _stack_start = ORIGIN(CCMRAM) + LENGTH(CCMRAM);