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 ?