Other Parts Discussed in Thread: SYSBIOS
Hi ,
I am using c6638 multicore "K2K" EVM board.
I want to create a timer of 120 milli sec using sysBios Timer Module.
Using the timer Id 10 for Timer1 for "120 ms" solved the purpose,
the timer created period "24399960" is dfifferent from defined"120000" AND the period type is different as well.
Please help me in understanding the issue.
Timer_Params timerParams;
Timer_Handle myTimer;
Timer_Params_init(&timerParams);
timerParams.period = 120000;
timerParams.periodType = Timer_PeriodType_MICROSECS;timerParams.arg = 1;
myTimer = Timer_create(10, myIsr, &timerParams, NULL);
ROV : Timer
Address halTimerHandle label id startMode runMode period periodType half prescalar intNum tickFxn arg extFreqLow extFreqHigh HwiHandle
0x008c3228,0x008c3430, ,0,StartMode_AUTO,RunMode_CONTINUOUS,203333,PeriodType_COUNTS,Half_LOWER,,14,ti_sysbios_knl_Clock_doTick__I,0x00000000,0x0,0x0,0x8c3428 0x00864ad0, , ,10,StartMode_AUTO,RunMode_CONTINUOUS,24399960,PeriodType_COUNTS,Half_LOWER,,15,SwiGsmLteSync,0x00000001,0x0,0x0,0x864b28
Thanks and Regards,
Manav