Hi,
Our observations are on c6678EVM in CCS 5.1.1.00031 with sys/bios 6_33_06_50
We are using timer functionality (in sysbios) to trigger an interrupt for every 10ms on C6678.
However randomly (most of the times after few days) we are seeing that interrupt is not getting generated on every cores.
We read the CSR to see if interrupts are disabled by any chance. But CSR appears to be proper (0x15000003)
Any ideas what makes these timers not generate interrupts? Our ISRs are so simple that they just update one global variable and exit.
Any ideas to debug this issue further?
Below is our configuration.
var Timer = xdc.useModule('ti.sysbios.timers.timer64.Timer');
Timer.timerSettings[8].ownerCoreId = 0;
var timerParams = new Timer.Params();
timerParams.period = 10000;
Timer.create(8,'&timerTick',timerParams);
Thanks in advance,
Regards, Kishor