2023-09-01 04:54 PM
Hi all,
At the bottom of the readme file for the BSP project for this board says:
How do you limit the application end address?
Solved! Go to Solution.
2023-09-01 05:33 PM
In the linker script, set the FLASH section to be 512kB in length:
/* Memories definition */
MEMORY
{
...
FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 512K
}
2023-09-01 05:33 PM
In the linker script, set the FLASH section to be 512kB in length:
/* Memories definition */
MEMORY
{
...
FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 512K
}