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 #ifndef WIFI_BT_USE_IMU_INTERFACE
12 #include "sdmmc_config.h"
13 
14 /*******************************************************************************
15  * Definitions
16  ******************************************************************************/
17 
18 #if defined(__cplusplus)
19 extern "C" {
20 #endif /* __cplusplus */
21 
22 /*******************************************************************************
23  * API
24  ******************************************************************************/
25 /*!
26  * @brief BOARD SDIO configurations.
27  * @param card card descriptor
28  * @param cardInt card interrupt
29  */
30 void BOARD_WIFI_BT_Config(void *card, sdio_int_t cardInt);
31 
32 /*!
33  * @brief enable wifi/bt module.
34  * @param enable true enable module, false disable module.
35  */
36 void BOARD_WIFI_BT_Enable(bool enable);
37 
38 #if defined(__cplusplus)
39 }
40 #endif /* __cplusplus */
41 #endif /* WIFI_BT_USE_IMU_INTERFACE */
42 
43 #endif /* _WIFI_BT_CONFIG_H_ */
44