2025-09-26 3:20 AM - last edited on 2025-09-26 4:09 AM by Peter BENSCH
hello
we want to use cube debuger in debug whith the qspi.
We have some data in the qspi programed by my bootloader or whith the cube programer
Qspi is MX25L51245G we have test them and it is running well the linker
QSPI (rx) : ORIGIN = 0x90000000, LENGTH = 32M
My data declared as
.extflash_data :
{
KEEP(*(.extflash_data))
} >QSPI
We have test the program with my bootloader it was OK.
We want now use the project with the debugger :
how we can remove the programation of QSPI when we enter in debug?
2025-09-26 3:38 AM
Hello,
I try to use NOLOAD directive in your linker file:
.extflash_data (NOLOAD):
{
KEEP(*(.extflash_data))
} >QSPI