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