Hello
I know, that I can tell the linker to add a new section to a given fixed address for example with the following linker command:
-Wl,--section-start,.FPGA_DATA=0x00010000
But in this way, I have either a gap of unused FLASH-memory between the application and my data section, or if my application is growing, it could overlapp with the user data section. This is not a serious problem, since the linker does generate a warning or error, if it occures.
Nevertheless, is there a way to tell the linker to append my data section just at the end of the application, respectively immediate after the .text section?
Kind regards Peter