PicoSDK
async_context_type
is only used within PicoSDK.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
Raspberry Pi Pico SDK and Examples
PicoSDK
async_context_type
async_context_type struct
Implementation of an async_context type, providing methods common to that type
Syntax
Show:
Summary
Declaration
from
async_context.h:155
typedef
struct
async_context_type
{
uint16_t
type
;
void
(
*
acquire_lock_blocking
)
(
async_context_t
*
self
)
;
void
(
*
release_lock
)
(
async_context_t
*
self
)
;
void
(
*
lock_check
)
(
async_context_t
*
self
)
;
uint32_t
(
*
execute_sync
)
(
async_context_t
*
context
,
uint32_t
(
*
func
)
(
void
*
param
)
,
void
*
param
)
;
bool
(
*
add_at_time_worker
)
(
async_context_t
*
self
,
async_at_time_worker_t
*
worker
)
;
bool
(
*
remove_at_time_worker
)
(
async_context_t
*
self
,
async_at_time_worker_t
*
worker
)
;
bool
(
*
add_when_pending_worker
)
(
async_context_t
*
self
,
async_when_pending_worker_t
*
worker
)
;
bool
(
*
remove_when_pending_worker
)
(
async_context_t
*
self
,
async_when_pending_worker_t
*
worker
)
;
void
(
*
set_work_pending
)
(
async_context_t
*
self
,
async_when_pending_worker_t
*
worker
)
;
void
(
*
poll
)
(
async_context_t
*
self
)
;
void
(
*
wait_until
)
(
async_context_t
*
self
,
absolute_time_t
until
)
;
void
(
*
wait_for_work_until
)
(
async_context_t
*
self
,
absolute_time_t
until
)
;
void
(
*
deinit
)
(
async_context_t
*
self
)
;
}
async_context_type_t
;
Fields
Field
Declared as
async_context_type::type
uint16_t
async_context_type::acquire_lock_blocking
void
(
*
)
(
async_context_t
*
self
)
async_context_type::release_lock
void
(
*
)
(
async_context_t
*
self
)
async_context_type::lock_check
void
(
*
)
(
async_context_t
*
self
)
async_context_type::execute_sync
uint32_t
(
*
)
(
async_context_t
*
context
,
uint32_t
(
*
func
)
(
void
*
param
)
,
void
*
param
)
async_context_type::add_at_time_worker
bool
(
*
)
(
async_context_t
*
self
,
async_at_time_worker_t
*
worker
)
async_context_type::remove_at_time_worker
bool
(
*
)
(
async_context_t
*
self
,
async_at_time_worker_t
*
worker
)
async_context_type::add_when_pending_worker
bool
(
*
)
(
async_context_t
*
self
,
async_when_pending_worker_t
*
worker
)
async_context_type::remove_when_pending_worker
bool
(
*
)
(
async_context_t
*
self
,
async_when_pending_worker_t
*
worker
)
async_context_type::set_work_pending
void
(
*
)
(
async_context_t
*
self
,
async_when_pending_worker_t
*
worker
)
async_context_type::poll
void
(
*
)
(
async_context_t
*
self
)
async_context_type::wait_until
void
(
*
)
(
async_context_t
*
self
,
absolute_time_t
until
)
async_context_type::wait_for_work_until
void
(
*
)
(
async_context_t
*
self
,
absolute_time_t
until
)
async_context_type::deinit
void
(
*
)
(
async_context_t
*
self
)
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out