mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 06:11:06 +00:00 
			
		
		
		
	Merge branch 'bugfix/uninitialized-element_v4.3' into 'release/v4.3'
component_bt:initialize all elements of esp_bt_controller_config_t(v4.3) See merge request espressif/esp-idf!18405
This commit is contained in:
		@@ -1,16 +1,8 @@
 | 
				
			|||||||
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
 | 
					/*
 | 
				
			||||||
//
 | 
					 * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
 | 
				
			||||||
// Licensed under the Apache License, Version 2.0 (the "License");
 | 
					 *
 | 
				
			||||||
// you may not use this file except in compliance with the License.
 | 
					 * SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
// You may obtain a copy of the License at
 | 
					 */
 | 
				
			||||||
 | 
					 | 
				
			||||||
//     http://www.apache.org/licenses/LICENSE-2.0
 | 
					 | 
				
			||||||
//
 | 
					 | 
				
			||||||
// Unless required by applicable law or agreed to in writing, software
 | 
					 | 
				
			||||||
// distributed under the License is distributed on an "AS IS" BASIS,
 | 
					 | 
				
			||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
					 | 
				
			||||||
// See the License for the specific language governing permissions and
 | 
					 | 
				
			||||||
// limitations under the License.
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef __ESP_BT_H__
 | 
					#ifndef __ESP_BT_H__
 | 
				
			||||||
#define __ESP_BT_H__
 | 
					#define __ESP_BT_H__
 | 
				
			||||||
@@ -171,7 +163,9 @@ typedef void (* esp_bt_hci_tl_callback_t) (void *arg, uint8_t status);
 | 
				
			|||||||
    .ble_st_acl_tx_buf_nb = CONFIG_BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB,       \
 | 
					    .ble_st_acl_tx_buf_nb = CONFIG_BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB,       \
 | 
				
			||||||
    .ble_hw_cca_check = CONFIG_BT_CTRL_HW_CCA_EFF,                         \
 | 
					    .ble_hw_cca_check = CONFIG_BT_CTRL_HW_CCA_EFF,                         \
 | 
				
			||||||
    .ble_adv_dup_filt_max = CONFIG_BT_CTRL_ADV_DUP_FILT_MAX,               \
 | 
					    .ble_adv_dup_filt_max = CONFIG_BT_CTRL_ADV_DUP_FILT_MAX,               \
 | 
				
			||||||
 | 
					    .coex_param_en = false,                                                \
 | 
				
			||||||
    .ce_len_type = CONFIG_BT_CTRL_CE_LENGTH_TYPE_EFF,                      \
 | 
					    .ce_len_type = CONFIG_BT_CTRL_CE_LENGTH_TYPE_EFF,                      \
 | 
				
			||||||
 | 
					    .coex_use_hooks = false,                                               \
 | 
				
			||||||
    .hci_tl_type = CONFIG_BT_CTRL_HCI_TL_EFF,                              \
 | 
					    .hci_tl_type = CONFIG_BT_CTRL_HCI_TL_EFF,                              \
 | 
				
			||||||
    .hci_tl_funcs = NULL,                                                  \
 | 
					    .hci_tl_funcs = NULL,                                                  \
 | 
				
			||||||
    .txant_dft = CONFIG_BT_CTRL_TX_ANTENNA_INDEX_EFF,                      \
 | 
					    .txant_dft = CONFIG_BT_CTRL_TX_ANTENNA_INDEX_EFF,                      \
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user