cyw43_driver.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2022 Raspberry Pi (Trading) Ltd.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef _PICO_CYW43_DRIVER_H
8 #define _PICO_CYW43_DRIVER_H
9 
17 #include "pico.h"
18 #include "pico/async_context.h"
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
32 bool cyw43_driver_init(async_context_t *context);
33 
40 
41 #ifdef __cplusplus
42 }
43 #endif
44 #endif
bool cyw43_driver_init(async_context_t *context)
Initializes the lower level cyw43_driver and integrates it with the provided async_contextIf the init...
Definition: cyw43_driver.c:105
Base structure type of all async_contexts. For details about its use, see pico_async_context.Individual async_context_types with additional state, should contain this structure at the start.
Definition: async_context.h:175
void cyw43_driver_deinit(async_context_t *context)
De-initialize the lowever level cyw43_driver and unhooks it from the async_context.
Definition: cyw43_driver.c:115