FreeRTOS Tetris
|
Group that contains definitions for timer handles. More...
Typedefs | |
typedef void * | TimerHandle_t |
Type by which software timers are referenced. For example, a call to xTimerCreate() returns an TimerHandle_t variable that can then be used to reference the subject timer in calls to other software timer API functions (for example, xTimerStart(), xTimerReset(), etc.). | |
typedef void(* | TimerCallbackFunction_t) (TimerHandle_t xTimer) |
typedef void(* | PendedFunction_t) (void *, uint32_t) |
Group that contains definitions for timer handles.
typedef void(* PendedFunction_t) (void *, uint32_t) |
#include <timers.h>
Defines the prototype to which functions used with the xTimerPendFunctionCallFromISR() function must conform.
typedef void(* TimerCallbackFunction_t) (TimerHandle_t xTimer) |
#include <timers.h>
Defines the prototype to which timer callback functions must conform.