Home
last modified time | relevance | path

Searched refs:task_handle (Results 1 – 3 of 3) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/pico_async_context/
Dasync_context_freertos.c81 if (self->task_handle) { in async_context_freertos_wake_up()
83 vTaskNotifyGiveFromISR(self->task_handle, NULL); in async_context_freertos_wake_up()
89 if (xTaskGetCurrentTaskHandle() != self->task_handle) { in async_context_freertos_wake_up()
90 xTaskNotifyGive(self->task_handle); in async_context_freertos_wake_up()
124 config->task_priority, &self->task_handle)) { in async_context_freertos_init()
134 vTaskCoreAffinitySet(self->task_handle, 1u << core_id); in async_context_freertos_init()
148 if (self->task_handle) { in async_context_freertos_deinit()
217 if (self->task_handle != xTaskGetCurrentTaskHandle()) { in async_context_freertos_release_lock()
/hal_rpi_pico-latest/src/rp2_common/pico_flash/
Dflash.c147 TaskHandle_t task_handle; in default_enter_safe_zone_timeout_ms() local
148 …ash lockout", configMINIMAL_STACK_SIZE, (void *)core_num, 0, 1u << (core_num ^ 1), &task_handle)) { in default_enter_safe_zone_timeout_ms()
154 vTaskPrioritySet(task_handle, configMAX_PRIORITIES -1); in default_enter_safe_zone_timeout_ms()
/hal_rpi_pico-latest/src/rp2_common/pico_async_context/include/pico/
Dasync_context_freertos.h73 TaskHandle_t task_handle; member