1 /** 2 * \defgroup pico_btstack pico_btstack 3 * \brief Integration/wrapper libraries for <a href="https://github.com/bluekitchen/btstack">BTstack</a> 4 * the documentation for which is <a href="https://bluekitchen-gmbh.com/btstack/">here</a>. 5 * 6 * A supplemental license for BTstack (in addition to the stock BTstack licensing terms) is provided <a href="https://github.com/raspberrypi/pico-sdk/blob/master/src/rp2_common/pico_btstack/LICENSE.RP">here</a>. 7 * 8 * The \c \b pico_btstack_ble library adds the support needed for Bluetooth Low Energy (BLE). The \c \b pico_btstack_classic library adds the support needed for Bluetooth Classic. 9 * You can link to either library individually, or to both libraries thus enabling dual-mode support provided by BTstack. 10 * 11 * To use BTstack you need to provide a \c btstack_config.h file in your source tree and add its location to your include path. 12 * The BTstack configuration macros \c ENABLE_CLASSIC and \c ENABLE_BLE are defined for you when you link the \c pico_btstack_classic and \c pico_btstack_ble libraries respectively, so you should not define them yourself. 13 * 14 * For more details, see <a href="https://bluekitchen-gmbh.com/btstack/develop/#how_to/">How to configure BTstack</a> and the relevant <a href="https://github.com/raspberrypi/pico-examples#pico-w-bluetooth">pico-examples</a>. 15 * 16 * The follow libraries are provided for you to link. 17 * * \c \b pico_btstack_ble - Adds Bluetooth Low Energy (LE) support. 18 * * \c \b pico_btstack_classic - Adds Bluetooth Classic support. 19 * * \c \b pico_btstack_sbc_encoder - Adds Bluetooth Sub Band Coding (SBC) encoder support. 20 * * \c \b pico_btstack_sbc_decoder - Adds Bluetooth Sub Band Coding (SBC) decoder support. 21 * * \c \b pico_btstack_bnep_lwip - Adds Bluetooth Network Encapsulation Protocol (BNEP) support using LwIP. 22 * * \c \b pico_btstack_bnep_lwip_sys_freertos - Adds Bluetooth Network Encapsulation Protocol (BNEP) support using LwIP with FreeRTOS for NO_SYS=0. 23 * * \c \b pico_btstack_mesh - Adds Bluetooth mesh support from BTstack. 24 * 25 * \note The CMake function pico_btstack_make_gatt_header can be used to run the BTstack compile_gatt tool to make a GATT header file from a BTstack GATT file. 26 * 27 * \sa pico_btstack_cyw43 in pico_cyw43_driver, which adds the cyw43 driver support needed for BTstack including BTstack run loop support. 28 */ 29