Hi,
I'm trying to pass an object to a timer I have in my code.
I've configured the timer through the BIOS config file (statically)
...
timer0Params.arg = "&arg0";
...
and in the ISR of the timer
...
Void myTimer( UArg myArg)
{
myStruct_t *pMyPointer = (myStruct*)myArg;
...
Where can I set arg0 = the correct object to be passed in? Should the timer be configured dynamically at run time instead?
thanks