33#error "include FreeRTOS.h must appear in source files before include timers.h"
54#define tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR ((BaseType_t)-2)
55#define tmrCOMMAND_EXECUTE_CALLBACK ((BaseType_t)-1)
56#define tmrCOMMAND_START_DONT_TRACE ((BaseType_t)0)
57#define tmrCOMMAND_START ((BaseType_t)1)
58#define tmrCOMMAND_RESET ((BaseType_t)2)
59#define tmrCOMMAND_STOP ((BaseType_t)3)
60#define tmrCOMMAND_CHANGE_PERIOD ((BaseType_t)4)
61#define tmrCOMMAND_DELETE ((BaseType_t)5)
63#define tmrFIRST_FROM_ISR_COMMAND ((BaseType_t)6)
64#define tmrCOMMAND_START_FROM_ISR ((BaseType_t)6)
65#define tmrCOMMAND_RESET_FROM_ISR ((BaseType_t)7)
66#define tmrCOMMAND_STOP_FROM_ISR ((BaseType_t)8)
67#define tmrCOMMAND_CHANGE_PERIOD_FROM_ISR ((BaseType_t)9)
75typedef void *TimerHandle_t;
80typedef void (*TimerCallbackFunction_t)(TimerHandle_t xTimer);
86typedef void (*PendedFunction_t)(
void *, uint32_t);
225#if (configSUPPORT_DYNAMIC_ALLOCATION == 1)
227xTimerCreate(
const char *
const
229 const TickType_t xTimerPeriodInTicks,
const UBaseType_t uxAutoReload,
void *
const pvTimerID,
230 TimerCallbackFunction_t pxCallbackFunction) PRIVILEGED_FUNCTION;
354#if (configSUPPORT_STATIC_ALLOCATION == 1)
355TimerHandle_t xTimerCreateStatic(
const char *
const pcTimerName,
357 const TickType_t xTimerPeriodInTicks,
const UBaseType_t uxAutoReload,
358 void *
const pvTimerID, TimerCallbackFunction_t pxCallbackFunction,
382void *pvTimerGetTimerID(
const TimerHandle_t xTimer) PRIVILEGED_FUNCTION;
403void vTimerSetTimerID(TimerHandle_t xTimer,
void *pvNewID) PRIVILEGED_FUNCTION;
441BaseType_t xTimerIsTimerActive(TimerHandle_t xTimer) PRIVILEGED_FUNCTION;
449TaskHandle_t xTimerGetTimerDaemonTaskHandle(
void) PRIVILEGED_FUNCTION;
501#define xTimerStart(xTimer, xTicksToWait) \
502 xTimerGenericCommand((xTimer), tmrCOMMAND_START, (xTaskGetTickCount()), NULL, (xTicksToWait))
544#define xTimerStop(xTimer, xTicksToWait) xTimerGenericCommand((xTimer), tmrCOMMAND_STOP, 0U, NULL, (xTicksToWait))
625#define xTimerChangePeriod(xTimer, xNewPeriod, xTicksToWait) \
626 xTimerGenericCommand((xTimer), tmrCOMMAND_CHANGE_PERIOD, (xNewPeriod), NULL, (xTicksToWait))
664#define xTimerDelete(xTimer, xTicksToWait) xTimerGenericCommand((xTimer), tmrCOMMAND_DELETE, 0U, NULL, (xTicksToWait))
788#define xTimerReset(xTimer, xTicksToWait) \
789 xTimerGenericCommand((xTimer), tmrCOMMAND_RESET, (xTaskGetTickCount()), NULL, (xTicksToWait))
875#define xTimerStartFromISR(xTimer, pxHigherPriorityTaskWoken) \
876 xTimerGenericCommand( \
877 (xTimer), tmrCOMMAND_START_FROM_ISR, (xTaskGetTickCountFromISR()), (pxHigherPriorityTaskWoken), 0U)
940#define xTimerStopFromISR(xTimer, pxHigherPriorityTaskWoken) \
941 xTimerGenericCommand((xTimer), tmrCOMMAND_STOP_FROM_ISR, 0, (pxHigherPriorityTaskWoken), 0U)
1014#define xTimerChangePeriodFromISR(xTimer, xNewPeriod, pxHigherPriorityTaskWoken) \
1015 xTimerGenericCommand((xTimer), tmrCOMMAND_CHANGE_PERIOD_FROM_ISR, (xNewPeriod), (pxHigherPriorityTaskWoken), 0U)
1101#define xTimerResetFromISR(xTimer, pxHigherPriorityTaskWoken) \
1102 xTimerGenericCommand( \
1103 (xTimer), tmrCOMMAND_RESET_FROM_ISR, (xTaskGetTickCountFromISR()), (pxHigherPriorityTaskWoken), 0U)
1194BaseType_t xTimerPendFunctionCallFromISR(PendedFunction_t xFunctionToPend,
void *pvParameter1, uint32_t ulParameter2,
1195 BaseType_t *pxHigherPriorityTaskWoken) PRIVILEGED_FUNCTION;
1229BaseType_t xTimerPendFunctionCall(PendedFunction_t xFunctionToPend,
void *pvParameter1, uint32_t ulParameter2,
1230 TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
1241const char *pcTimerGetName(TimerHandle_t xTimer)
1242 PRIVILEGED_FUNCTION;
1253TickType_t xTimerGetPeriod(TimerHandle_t xTimer) PRIVILEGED_FUNCTION;
1268TickType_t xTimerGetExpiryTime(TimerHandle_t xTimer) PRIVILEGED_FUNCTION;
1274BaseType_t xTimerCreateTimerTask(
void) PRIVILEGED_FUNCTION;
1275BaseType_t xTimerGenericCommand(TimerHandle_t xTimer,
const BaseType_t xCommandID,
const TickType_t xOptionalValue,
1276 BaseType_t *
const pxHigherPriorityTaskWoken,
1277 const TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
1279#if (configUSE_TRACE_FACILITY == 1)
1280void vTimerSetTimerNumber(TimerHandle_t xTimer, UBaseType_t uxTimerNumber) PRIVILEGED_FUNCTION;
1281UBaseType_t uxTimerGetTimerNumber(TimerHandle_t xTimer) PRIVILEGED_FUNCTION;
Definition FreeRTOS.h:1114