I am using the Timer wrapper provided in the TimerCPP.h file (written by Richard) to create a software timer.
_blink_timer = new TimerMember<Led>( "BlinkTimer",
this,
&Led::blinkCallback,
1,
pdTRUE );
Is there a way to assign a timer ID to the timer created, like the xTimerCreate() function does?
Thanks,
Amy