uxTimerGetReloadMode
[Timer API]
task.h
UBaseType_t uxTimerGetReloadMode( TimerHandle_t xTimer );
Queries the 'mode' of the
software timer referenced by the xTimer handle.
The mode can be either an auto-reloaded timer, which automatically resets itself each time it expires, or
a one-shot timer, which will expire only once unless it is manually restarted.
This API function is only available if the FreeRTOS 'timers.c' source file is included in the built project,
and configUSE_TIMERS is set to 1 in FreeRTOSConfig.h.
- Parameters:
-
- Returns:
- pdTRUE if the timer with handle xTimer is an auto-reload timer, otherwise pdFALSE.
Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.