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.

BIOS MSP430F5529 Clock.create static?

Other Parts Discussed in Thread: SYSBIOS

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.