1 /*
2  * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #pragma once
8 #include <stdint.h>
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 /**
15  * @brief Set btbb enable for BT/ieee802154
16  * @param[in] print_version enable btbb version print.
17  * @return NULL
18  */
19 void bt_bb_v2_init_cmplx(int print_version);
20 
21 #ifdef __cplusplus
22 }
23 #endif
24