Hi all,
I'm trying to place different pieces of codes in flash memory. For this I have created 2 sections in linker script, .usec and .bsec both placed in different memory locations.
Then in program code I used
#pragma CODE_SECTION(func1,".usec");
and
#pragma CODE_SECTION(func2,".bsec");
But after building, I can see only one section placed in memory .usec not other one.
Also I cant sew func2 allocated anywhere
Can you guys help me in this issue?