Tool/software:
Greetings
Our projects use the option to create a TI-TXT file after the link has completed. In a new project, which uses the CLANG compiler, I can see that in addition to the code, I’m also seeing the IPC RAM space. The definition of the sections follows. Is there a way to keep these sections, and any other non-flash sections, out of the TI-TXT file?
Thank you,
Ed
// Definition of the IPC RAM space.
__attribute__ ((section ("MSGRAM_CM_TO_CPU1")))
IPC_MEM_DEF IPC_CM_To_CPU1_PutBuffer;
__attribute__ ((section ("MSGRAM_CPU1_TO_CM")))
IPC_MEM_DEF IPC_CM_To_CPU1_GetBuffer;
// Cmd file MEMORY
CPU1TOCMMSGRAM0 : origin = 0x20080000, length = 0x00000800
CMTOCPU1MSGRAM0 : origin = 0x20082000, length = 0x00000800
// Cmd file SECTIONS
MSGRAM_CM_TO_CPU1 : > CMTOCPU1MSGRAM0, type=NOINIT
MSGRAM_CPU1_TO_CM : > CPU1TOCMMSGRAM0, type=NOINIT