Home
last modified time | relevance | path

Searched refs:timer_handle (Results 1 – 2 of 2) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/pico_async_context/
Dasync_context_freertos.c59 repeat = pdFALSE == xTimerChangePeriod(self->timer_handle, ticks, ticks); in process_under_lock()
114 …self->timer_handle = xTimerCreate( "async_context_timer", // Just a text name, not used by t… in async_context_freertos_init()
122 !self->timer_handle || in async_context_freertos_init()
151 if (self->timer_handle) { in async_context_freertos_deinit()
152 xTimerDelete(self->timer_handle, 0); in async_context_freertos_deinit()
/hal_rpi_pico-latest/src/rp2_common/pico_async_context/include/pico/
Dasync_context_freertos.h72 TimerHandle_t timer_handle; member