Other Parts Discussed in Thread: SYSBIOS
Hi TI Experts.
Please let me confirm the following question.
SYSBIOS: 6_52_00_12
[Question.1]
Would you please teach me the way to be enabled all Timer on AM574x with using the TI-RTOS?
** I checked the RTOS document, but I could not find that way. Also, they have set the timer for TI-RTOS but it was enabled only the Timer2.
*******************
timerParams.extFreq.lo = 1920000;
timerParams.period = 0xFFFFFFFF;
timerParams.periodType = ITimer_PeriodType_COUNTS;
timerParams.runMode = ITimer_RunMode_CONTINUOUS;
timerParams.startMode = ITimer_StartMode_USER;
Timer_create(Timer_ANY, fxn、&timerParams, &aErrBlk)
*******************
Also, please provide the example code to enable the all timers.
[Question.2]
Would you please teach me the way to change the timer frequency"?
According to the my customer, they have tried to change the value from 19.2MHz to 1MHz as below, but it did not effect the timer behavior.
********
timerParams.extFreq.lo = 1000000;
*********
If you have any question, please let me know.
Best regards.
Kaka