当前添加contiki一些配置,编译出现 section `.bss' will not fit in region `SRAM' , 需要使用GPRAM
现在操作如下:
1. 修改 ccfg.c 文件
#define SET_CCFG_SIZE_AND_DIS_FLAGS_DIS_GPRAM 0x0 // Cache is disabled and GPRAM is available at 0x11000000-0x11001FFF
2. 修改 contiki-ng\arch\cpu\cc26x0-cc13x0\cc26xx.ld
SECTIONS
{
···
.bss :
{
_bbs = .;
*(.bss*)
*(COMMON)
_ebss = .;
} > SRAM | GPRAM
···
}
但是这样编译出错了,请问如何修改ld文件,或者怎么使用pgram
Viki Shi:
这个我们有提供配置文档,也适用于CC1310: dev.ti.com/…/memory_management.html