mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
fix bluedroid repair faild if the two most significant bits of public address is '01'
This commit is contained in:
@ -1961,7 +1961,7 @@ void btm_ble_conn_complete(UINT8 *p, UINT16 evt_len, BOOLEAN enhanced)
|
|||||||
* slave or master*/
|
* slave or master*/
|
||||||
|
|
||||||
/* if (!match && role == HCI_ROLE_SLAVE && BTM_BLE_IS_RESOLVE_BDA(bda)) { */
|
/* if (!match && role == HCI_ROLE_SLAVE && BTM_BLE_IS_RESOLVE_BDA(bda)) { */
|
||||||
if (!match && BTM_BLE_IS_RESOLVE_BDA(bda)) {
|
if (!match && bda_type != BLE_ADDR_PUBLIC && BTM_BLE_IS_RESOLVE_BDA(bda)) {
|
||||||
// save the enhanced value to used in btm_ble_resolve_random_addr_on_conn_cmpl func.
|
// save the enhanced value to used in btm_ble_resolve_random_addr_on_conn_cmpl func.
|
||||||
temp_enhanced = enhanced;
|
temp_enhanced = enhanced;
|
||||||
btm_ble_resolve_random_addr(bda, btm_ble_resolve_random_addr_on_conn_cmpl, p_data);
|
btm_ble_resolve_random_addr(bda, btm_ble_resolve_random_addr_on_conn_cmpl, p_data);
|
||||||
|
Reference in New Issue
Block a user