Tool/software: TI-RTOS
Hello all,
We are using Dra7xx Processor & VSDk 3.04 version.
We are planing to use different timers for IPU1 instead of timer 3 in vision sdk .
File:/links_fw/src/rtos/bios_app_common/tda2xx/ipu1_0/Ipu1_0_a15_linux.cfg
/* allocate timer 3 for Clock and 11 DMTimestamp to IPU1 */
Suppose i need to configure for timer 12.
var timerParams = new Timer.Params();
timerParams.period = 1000;
timerParams.twer.ovf_wup_ena = 1;
timerParams.tiocpCfg.emufree = 1;
timerParams.tiocpCfg.idlemode = 1;
timerParams.tsicr.posted = 0;
Timer.intFreqs[11].hi = 0;
Timer.intFreqs[11].lo = 20000000;
Timer.checkFrequency = false;
Timer.create(2, '&mainIPU1_C0TimerTick', timerParams);
Can I proceed with the above configuration ? What does the first parameter in Timer.create shows ?
Regards,
Gokul