1、launchpad上使用的是CC1310F128RGZ,封装大小时7*7的,使用TI15,4开箱代码已调通。如果换成CC1310F128RHB,封装大小是5*5的,开箱代码还适用吗?还是需要更改什么配置?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
1、launchpad上使用的是CC1310F128RGZ,封装大小时7*7的,使用TI15,4开箱代码已调通。如果换成CC1310F128RHB,封装大小是5*5的,开箱代码还适用吗?还是需要更改什么配置?
是的,如果CC所选的芯片的flash size不是128kB,是64KB.还要在CC1310DK*.cmd里修改define,其他地方不需要修改了,因为TIRTOS系统可以把硬件层抽象出来。
#define FLASH_BASE 0x0
#define RAM_BASE 0x20000000
#ifdef DEBUG
#define FLASH_SIZE 0x20000 //'F128 on EM
#define RAM_SIZE 0x5000
#else
#define FLASH_SIZE 0x10000 //'F64 on custom PCB
#define RAM_SIZE 0x4000
#endif