Trying to use external flash on F469I-DISCO freezes debugger
Hi,
I am trying to make use of the external flash on the F469I-Disco Board. I tried following the instructions here:
https://touchgfx.zendesk.com/hc/en-us/articles/205886201-Placing-Assets-in-Flash-Memory
by adding these lines to my linker file:
QUADSPI (rx) : ORIGIN = ORIGIN(FLASH) + LENGTH(FLASH), LENGTH = 16MExtFlashSection :
{
*(ExtFlashSection ExtFlashSection.*)
*(FontFlashSection FontFlashSection.*)
*(ExtFlashSection TextFlashSection.*)
*(.gnu.linkonce.r.*)
. = ALIGN(0x4);
} >QUADSPINow when I try to debug the debugger stops after the message
Waiting for debugger connection...
Debugger connected
When I'm not using the external flash I have no problems debugging.
Is there anything else I have to modify?