Other Parts Discussed in Thread: SYSBIOS
Tool/software: Code Composer Studio
Hi,
due to memory limitation, we decided to use GPRAM as SRAM in CC1310. We have done it before for certain variables or array in our object files. Right now, I would like to place all heap memory into GPRAM. Unfortunately, I was not able to find the correct syntax. Could you please advise about corect syntax?/* Section allocation in memory */
SECTIONS
{
.text : > FLASH
.const : > FLASH
.constdata : > FLASH
.rodata : > FLASH
.cinit : > FLASH
.pinit : > FLASH
.init_array : > FLASH
.emb_text : > FLASH
.ccfg : > FLASH (HIGH)
.data : > SRAM
.gpram :
{
radio.obj(*rfRxTaskStack)
} > GPRAM
.bss : > SRAM
.sysmem : > SRAM
.stack : > SRAM (HIGH)
.nonretenvar : > SRAM
}
