@web-font-path: "roboto-debian.css";
Loading...
Searching...
No Matches
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
21extern "C" {
22#endif
23
33
40
41#ifdef __cplusplus
42}
43#endif
44#endif
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
bool cyw43_driver_init(async_context_t *context)
Initializes the lower level cyw43_driver and integrates it with the provided async_context.
Definition cyw43_driver.c:105
Base structure type of all async_contexts. For details about its use, see pico_async_context.
Definition async_context.h:179