I’m using a bootloader (flashed with Keil) in the first C000 bytes of my Flash on my stm32f429 chip, and thus my linker file for my VisualGDB project needs to read:
FLASH (RX) : ORIGIN = 0x0800C000, LENGTH = 976K
But whenever I do anything that regenerates the linker file, those settings get overwritten with the default
FLASH (RX) : ORIGIN = 0x08000000, LENGTH = 1M
Can you add an option in the VisualGDB settings for embedded projects to customize the Origin and Length of standard memory sectors in the generated custom linker file?