1 /***********************************************************************************************//**
2  * \copyright
3  * Copyright 2020-2022 Cypress Semiconductor Corporation (an Infineon company) or
4  * an affiliate of Cypress Semiconductor Corporation
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *     http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  **************************************************************************************************/
20 
21 /**
22  * \addtogroup group_bsp_bt Bluetooth Configuration Structure
23  * \{
24  * Basic configuration structure for the Bluetooth interface on this board.
25  */
26 #pragma once
27 
28 #if defined(COMPONENT_WICED_BLE)
29 
30 #include "cybt_platform_config.h"
31 
32 #if defined(__cplusplus)
33 extern "C" {
34 #endif
35 
36 #if !defined(CYBSP_BT_PLATFORM_CFG_SLEEP_MODE_LP_ENABLED)
37 /** If not already defined, the sleep mode LP is enabled. */
38 #define CYBSP_BT_PLATFORM_CFG_SLEEP_MODE_LP_ENABLED      (1)
39 #endif
40 
41 /** Bluetooth platform configuration settings for the board. */
42 extern const cybt_platform_config_t cybsp_bt_platform_cfg;
43 
44 #ifdef __cplusplus
45 }
46 #endif // __cplusplus
47 
48 #endif /* defined(COMPONENT_WICED_BLE) */
49 
50 /** \} group_bsp_bt */
51