Hello,
I was goint through timer module subchapter.
There is example in 7.3. In this example timer tick function is created as
Void tickFxn(UArg arg0, UArg arg1)
From the timer function I could see that there is only one argument available for timer tick function. So, I feel the above function should be like
Void tickFxn(UArg arg0)
Is it correct?
Reference from ITimer.h
/* FuncPtr */
typedef xdc_Void (*ti_sysbios_interfaces_ITimer_FuncPtr)(xdc_UArg);
/Priyank Soni