bool async_context_freertos_init(async_context_freertos_t *self, async_context_freertos_config_t *config)
Initialize an async_context_freertos instance using the specified configuration.
Definition: async_context_freertos.c:107
static bool async_context_freertos_init_with_defaults(async_context_freertos_t *self)
Initialize an async_context_freertos instance with default values.
Definition: async_context_freertos.h:120
static async_context_freertos_config_t async_context_freertos_default_config(void)
Return a copy of the default configuration object used by async_context_freertos_init_with_defaults()
Definition: async_context_freertos.h:98
Configuration object for async_context_freertos instances.
Definition: async_context_freertos.h:50
UBaseType_t task_priority
Task priority for the async_context task.
Definition: async_context_freertos.h:54
configSTACK_DEPTH_TYPE task_stack_size
Stack size for the async_context task.
Definition: async_context_freertos.h:58
Definition: async_context_freertos.h:68
Base structure type of all async_contexts. For details about its use, see pico_async_context.
Definition: async_context.h:179