Other Parts Discussed in Thread: CC2650
In some of the example .cfg files is see ROM configuration while in other examples i don't. What is the explanation for this and how do i know if this is something i need to configure or not?
/*
* use the kernel in the ROM
*/
var ROM = xdc.useModule('ti.sysbios.rom.ROM');
if (Program.cpu.deviceName.match(/CC26/)) {
ROM.romName = ROM.CC2650;
}
else if (Program.cpu.deviceName.match(/CC13/)) {
ROM.romName = ROM.CC1350;
}