This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Mistake in SYS/BIOS v6.35 User guide document..??

Other Parts Discussed in Thread: SYSBIOS

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