Question
Build multiple binary files in 1 project
Hello there :
I want to build multiple bin files with specific address and length in CubeIDE/Eclipse,
for example , I have my linker file like :
MEMORY:
{
SYSTEM_BIN(wr) :ORIGIN = 0x8008800 ,LENGTH = 8K
PCU_BIN(wr) :ORIGIN = 0x800A800 ,LENGTH = 8K
}
Can I build two 8K bin files (for SYSTEM_BIN and PCU_BIN) in this project?
Thanks!