uxTimerGetReloadMode() function
UBaseType_t uxTimerGetReloadMode( TimerHandle_t xTimer ); Queries a timer to determine if it is an auto-reload timer, in which case the timer automatically resets itself each time it expires, or a one-shot timer, in which case the timer will only expire once unless it is manually restarted.
Arguments
xTimer
The handle of the timer being queried.
Return value
If the timer is an auto-reload timer then pdTRUE is returned, otherwise pdFALSE is returned.