Disable external flash programming
Hello dear engineers,
How can I instruct the STM32cubeIDE to neglect programming of the exteranl flash parts?
This parts have been placed in an external ram memory which is to be read and programmed in runtime.
In Keil ide, it simply says since no flashing algorithm for the specified parts is available, I will not take these sections into account for programming.
The _flash.ld file has been changed as follows.
/* Memories definition */
MEMORY
{
CCMRAM (xrw) : ORIGIN = 0x10000000, LENGTH = 64K
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 192K
FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 1024K
ExtFlashSection (xrw) : ORIGIN = 0xC00F0000, LENGTH = 0x1f10000
}Any help would be appreciated.