CMSIS-RTX
CMSIS-RTX copied to clipboard
Timer start with delay
It would be a useful function to be able to delay start a timer - I can't currently see any easy way of doing this within the API.
This would be useful when setting up multiple timers to schedule some tasks at the same frequency, whilst being able to stagger them so they don't all trigger at the same time.
why not using it like this:
osTimerStart(id1, timerDelay);
osDelay(10);
osTimerStart(id2, timerDelay);