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.

PLL config in syslink example

Other Parts Discussed in Thread: SYSBIOS, OMAPL138

 I use syslink messageq example as base for my custom project.

Question: where PLL configuration  in the syslink messageq example project located ?

Mentioned project has no GEL file with PLL configuretion.

My project has timer configuration in the SYSBIOS now:

var timer0Params = new Timer.Params();
timer0Params.instance.name = "timer0";
timer0Params.period = 100;
timer0Params.periodType = xdc.module("ti.sysbios.interfaces.ITimer").PeriodType_MICROSECS;
Program.global.timer0 = Timer.create(2, "&ad7606_clkpin_toggle", timer0Params);

can I be sure that I will have interrupt every 100 precise microseconds even if I don't know where is PLL config ?