Select one of the symbols to view example projects that use it.
 
Outline
#define _PICO_ASYNC_CONTEXT_BASE_H
#include "pico/async_context.h"
async_context_base_add_at_time_worker(async_context_t *, async_at_time_worker_t *);
async_context_base_remove_at_time_worker(async_context_t *, async_at_time_worker_t *);
async_context_base_add_when_pending_worker(async_context_t *, async_when_pending_worker_t *);
async_context_base_remove_when_pending_worker(async_context_t *, async_when_pending_worker_t *);
async_context_base_remove_ready_at_time_worker(async_context_t *);
async_context_base_refresh_next_timeout(async_context_t *);
async_context_base_execute_once(async_context_t *);
async_context_base_needs_servicing(async_context_t *);
Files
loading...
SourceVuRaspberry Pi Pico SDK and ExamplesPicoSDKsrc/rp2_common/pico_async_context/include/pico/async_context_base.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * Copyright (c) 2022 Raspberry Pi (Trading) Ltd. * * SPDX-License-Identifier: BSD-3-Clause *//* ... */ #ifndef _PICO_ASYNC_CONTEXT_BASE_H #define _PICO_ASYNC_CONTEXT_BASE_H #include "pico/async_context.h" #ifdef __cplusplus extern "C" { #endif // common functions for async_context implementations to use bool async_context_base_add_at_time_worker(async_context_t *self, async_at_time_worker_t *worker); bool async_context_base_remove_at_time_worker(async_context_t *self, async_at_time_worker_t *worker); bool async_context_base_add_when_pending_worker(async_context_t *self, async_when_pending_worker_t *worker); bool async_context_base_remove_when_pending_worker(async_context_t *self, async_when_pending_worker_t *worker); async_at_time_worker_t *async_context_base_remove_ready_at_time_worker(async_context_t *self); void async_context_base_refresh_next_timeout(async_context_t *self); absolute_time_t async_context_base_execute_once(async_context_t *self); bool async_context_base_needs_servicing(async_context_t *self); #ifdef __cplusplus }extern "C" { ... } #endif /* ... */ #endif
Details