PicoSDK
Select one of the symbols to view example projects that use it.
Symbol previews are coming soon...
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...
SourceVu
Raspberry Pi Pico SDK and Examples
PicoSDK
src/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
Show:
from
Types:
Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.
async_context_base_add_at_time_worker()
async_context_base_remove_at_time_worker()
async_context_base_add_when_pending_worker()
async_context_base_remove_when_pending_worker()
async_context_base_execute_once()
async_context_base_remove_ready_at_time_worker()
async_context_base_refresh_next_timeout()
async_context_base_needs_servicing()
absolute_time_t
async_context_base_execute_once()::self
async_context_base_add_at_time_worker()::worker
async_context_base_add_when_pending_worker()::worker
async_context_base_needs_servicing()::self
async_context_base_remove_at_time_worker()::worker
async_context_base_remove_when_pending_worker()::worker
async_context_base_remove_ready_at_time_worker()::self
async_context_base_refresh_next_timeout()::self
async_context_base_add_at_time_worker()::self
async_context_base_remove_at_time_worker()::self
async_context_base_add_when_pending_worker()::self
async_context_base_remove_when_pending_worker()::self
_PICO_ASYNC_CONTEXT_BASE_H
async_context_t
async_at_time_worker_t
async_when_pending_worker_t