1 /*
2  * Copyright (c) 2023 Raspberry Pi (Trading) Ltd.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef _PICO_BTSTACK_HCI_TRANSPORT_CYW43_H
8 #define _PICO_BTSTACK_HCI_TRANSPORT_CYW43_H
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 /** \file pico/btstack_hci_transport_cyw43.h
15 * \ingroup pico_cyw43_driver
16 * \brief Adds low level Bluetooth HCI support
17 */
18 
19 /**
20  * \brief Get the Bluetooth HCI transport instance for cyw43
21  * \ingroup pico_cyw43_driver
22  *
23  * \return An instantiation of the hci_transport_t interface for the cyw43 chipset
24  */
25 const hci_transport_t *hci_transport_cyw43_instance(void);
26 
27 #ifdef __cplusplus
28 }
29 #endif
30 
31 #endif // HCI_TRANSPORT_CYW43_H
32