Home
last modified time | relevance | path

Searched refs:TimerHandle_t (Results 1 – 14 of 14) sorted by relevance

/hal_espressif-3.6.0/components/freertos/include/freertos/
Dtimers.h79 typedef void* TimerHandle_t; typedef
81 typedef struct tmrTimerControl * TimerHandle_t; typedef
86 typedef void (* TimerCallbackFunction_t)( TimerHandle_t xTimer );
233TimerHandle_t xTimerCreate( const char * const pcTimerName, /*lint !e971 Unqualified char types ar…
363TimerHandle_t xTimerCreateStatic( const char * const pcTimerName, /*lint !e971 Unqualified char ty…
391 void * pvTimerGetTimerID( const TimerHandle_t xTimer ) PRIVILEGED_FUNCTION;
412 void vTimerSetTimerID( TimerHandle_t xTimer,
450 BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION;
1258 const char * pcTimerGetName( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified c…
1275 void vTimerSetReloadMode( TimerHandle_t xTimer,
[all …]
Dmpu_prototypes.h176 TimerHandle_t MPU_xTimerCreate( const char * const pcTimerName,
181 TimerHandle_t MPU_xTimerCreateStatic( const char * const pcTimerName,
187 void * MPU_pvTimerGetTimerID( const TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL;
188 void MPU_vTimerSetTimerID( TimerHandle_t xTimer,
190 BaseType_t MPU_xTimerIsTimerActive( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL;
196 const char * MPU_pcTimerGetName( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL;
197 void MPU_vTimerSetReloadMode( TimerHandle_t xTimer,
199 UBaseType_t MPU_uxTimerGetReloadMode( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL;
200 TickType_t MPU_xTimerGetPeriod( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL;
201 TickType_t MPU_xTimerGetExpiryTime( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL;
[all …]
DFreeRTOS.h1034 #define xTimerHandle TimerHandle_t
/hal_espressif-3.6.0/components/freertos/
Dtimers.c294TimerHandle_t xTimerCreate( const char * const pcTimerName, /*lint !e971 Unqualified char types ar… in xTimerCreate()
321TimerHandle_t xTimerCreateStatic( const char * const pcTimerName, /*lint !e971 Unqualified char ty… in xTimerCreateStatic()
395 BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, in xTimerGenericCommand()
451 TickType_t xTimerGetPeriod( TimerHandle_t xTimer ) in xTimerGetPeriod()
460 void vTimerSetReloadMode( TimerHandle_t xTimer, in vTimerSetReloadMode()
481 UBaseType_t uxTimerGetReloadMode( TimerHandle_t xTimer ) in uxTimerGetReloadMode()
506 TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ) in xTimerGetExpiryTime()
517 …const char * pcTimerGetName( TimerHandle_t xTimer ) /*lint !e971 Unqualified char types are allowe… in pcTimerGetName()
565 pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); in prvProcessExpiredTimer()
852 pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); in prvProcessReceivedCommands()
[all …]
/hal_espressif-3.6.0/components/freertos/test/
Dtest_timers.c9 static void timer_callback(TimerHandle_t timer) in timer_callback()
20 TimerHandle_t oneshot = xTimerCreate("oneshot", 100 / portTICK_PERIOD_MS, pdFALSE,
44 TimerHandle_t recurring = xTimerCreate("oneshot", 100 / portTICK_PERIOD_MS, pdTRUE,
75 TimerHandle_t created_timer;
Dtest_freertos_backported_functions.c45 static void tmr_cb(TimerHandle_t xtimer) in tmr_cb()
55TimerHandle_t tmr_handle = xTimerCreateStatic("static_tmr", TMR_PERIOD_TICKS, pdFALSE, NULL, tmr_c…
Dtest_task_suspend_resume.c375 TimerHandle_t count_time = xTimerCreate("count_time", 1, pdTRUE, NULL, timer_callback); in test_scheduler_suspend3()
/hal_espressif-3.6.0/examples/protocols/websocket/main/
Dwebsocket_example.c31 static TimerHandle_t shutdown_signal_timer;
34 static void shutdown_signaler(TimerHandle_t xTimer) in shutdown_signaler()
/hal_espressif-3.6.0/examples/peripherals/gpio/matrix_keyboard/components/matrix_keyboard/src/
Dmatrix_keyboard.c43 TimerHandle_t debounce_timer;
63 static void matrix_kbd_debounce_timer_callback(TimerHandle_t xTimer) in matrix_kbd_debounce_timer_callback()
/hal_espressif-3.6.0/examples/network/simple_sniffer/main/
Dcmd_pcap.c62 TimerHandle_t trace_flush_timer; /*!< Timer handle for Trace buffer flush */
80 void pcap_flush_apptrace_timer_cb(TimerHandle_t pxTimer) in pcap_flush_apptrace_timer_cb()
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/classic_bt/a2dp_source/main/
Dmain.c88 static void bt_app_a2d_heart_beat(TimerHandle_t arg);
114 static TimerHandle_t s_tmr; /* handle of heart beat timer */
364 static void bt_app_a2d_heart_beat(TimerHandle_t arg) in bt_app_a2d_heart_beat()
/hal_espressif-3.6.0/components/driver/esp32/
Dtouch_sensor.c35 TimerHandle_t timer;
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/common_components/button/
Dbutton.c55 TimerHandle_t tmr;
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/common_components/light_driver/
Dlight_driver.c76 static TimerHandle_t g_fade_timer = NULL;