1 /*
2  * Copyright 2021 NXP
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef _WIFI_BT_CONFIG_H_
9 #define _WIFI_BT_CONFIG_H_
10 
11 #include "sdmmc_config.h"
12 
13 /*******************************************************************************
14  * Definitions
15  ******************************************************************************/
16 
17 #if defined(__cplusplus)
18 extern "C" {
19 #endif /* __cplusplus */
20 
21 /*******************************************************************************
22  * API
23  ******************************************************************************/
24 /*!
25  * @brief BOARD SDIO configurations.
26  * @param card card descriptor
27  * @param cardInt card interrupt
28  */
29 void BOARD_WIFI_BT_Config(void *card, sdio_int_t cardInt);
30 
31 /*!
32  * @brief enable wifi/bt module.
33  * @param enable true enable module, false disable module.
34  */
35 void BOARD_WIFI_BT_Enable(bool enable);
36 
37 #if defined(__cplusplus)
38 }
39 #endif /* __cplusplus */
40 
41 #endif /* _WIFI_BT_CONFIG_H_ */
42