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 #if defined(COMPONENT_WICED_BLE) 22 23 #include "cybsp_bt_config.h" 24 25 const cybt_platform_config_t cybsp_bt_platform_cfg = 26 { 27 .hci_config = 28 { 29 .hci_transport = CYBT_HCI_IPC, 30 }, 31 32 .controller_config = 33 { 34 .sleep_mode = 35 { 36 .sleep_mode_enabled = CYBSP_BT_PLATFORM_CFG_SLEEP_MODE_LP_ENABLED, 37 }, 38 } 39 }; 40 41 #endif /* defined(COMPONENT_WICED_BLE) */ 42