FreeRTOS Tetris
Typedefs

Group that contains definitions for timer handles. More...

Collaboration diagram for Timer Handles:

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)
 

Detailed Description

Group that contains definitions for timer handles.

Typedef Documentation

◆ PendedFunction_t

typedef void(* PendedFunction_t) (void *, uint32_t)

#include <timers.h>

Defines the prototype to which functions used with the xTimerPendFunctionCallFromISR() function must conform.

◆ TimerCallbackFunction_t

typedef void(* TimerCallbackFunction_t) (TimerHandle_t xTimer)

#include <timers.h>

Defines the prototype to which timer callback functions must conform.