Hi,
I am able to run the example (ex02_messageq) provided in the examples folder. However when I try to add support for Power module by adding the following in cfg file I get an error
Main_main : start callback failed
CFG file additions :
var BIOS = xdc.useModule('ti.sysbios.BIOS');
BIOS.libType = BIOS.LibType_NonInstrumented;
var Power = xdc.useModule('ti.sysbios.family.c674.Power');
Power.idleCpu = true;
Power.trackResources = true;Program.sectMap[".text"] = "IRAM";
Program.sectMap[".far"] = "IRAM";
Program.sectMap[".bss"] = "IRAM";
Program.sectMap[".vecs"] = "IRAM";
Program.sectMap[".rodata"] = "IRAM";
Program.sectMap[".neardata"] = "IRAM";
void Power_idleStopClock(void) with call to _PMI_do_Idle is added to main_dsp.c
BIO version : 6_33_05_46
IPC : 1_24_03_53
XDC : 3_23_03_53
Any pointers to why the start callback fails on adding Power Module support
Thanks,
-Vikas Sharma