Part Number: TMDSEVM572X
Other Parts Discussed in Thread: SYSBIOS
Tool/software: TI-RTOS
Hi,
EVM: GP Evm AM572x.
TIRTOS: processor_sdk_rtos_am57xx_3_02_00_05
I am using 1 microsecond timer isr. How can i make it to 0.1 microsecond timer?
My current code for timer initialization is
void TimerInitialization()
{
Timer_Params timerParams;
Timer_Handle myTimer;
Error_Block eb;
Error_init(&eb);
Timer_Params_init(&timerParams);
timerParams.period = 1;
timerParams.periodType = Timer_PeriodType_MICROSECS;
timerParams.arg = 1;
timerParams.startMode = Timer_StartMode_AUTO;
myTimer = Timer_create(Timer_ANY, myIsr, &timerParams, &eb);
if (myTimer == NULL) {
System_abort("Timer create failed");
}
}
Thanks,
Anjana Pathak