Hi,
Does the Clock.create exists for MSP430 at runtime/static? I use those lines
var Clock = xdc.useModule('ti.sysbios.knl.Clock');
var clockParams = new Clock.Params();
clockParams.period = 5;
clockParams.startFlag = true;
//clockParams.arg = (UArg)0x5555;
Program.global.clockInst1 = Clock.create("&Ccharge_State_Update", 5,clockParams);
and get a "code size limit" which is a sign of feature not being available:
Severity and Description Path Resource Location Creation Time Id
output file "Battery_Charger_SYSBIOS.out" exceeds code size limit Battery_Charger_SYSBIOS line 0 1328539417172 6289
Also, I don't find any info on the Clock function in the CCSV4/Help/SYSBIOS doc.
Please confirm that the function is either available or not for the MSP430.
Thanks.