fix(bt): Update bt lib for ESP32-C3 and ESP32-S3(555b0a2)

- Check Access Address when receive connection request PDU
- Fix issue with BLE5.0 duplicate scan for chained packets
This commit is contained in:
zhanghaipeng
2024-11-27 17:08:24 +08:00
parent aae5321c4a
commit 0a8f808cd2
4 changed files with 20 additions and 1 deletions

View File

@@ -550,3 +550,10 @@ config BT_CTRL_BLE_SECURITY_ENABLE
depends on BT_CTRL_RUN_IN_FLASH_ONLY && BT_CONTROLLER_ONLY
bool "Enable BLE security feature"
default y
config BT_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS
bool "Enable enhanced Access Address check in CONNECT_IND"
default n
help
Enabling this option will add stricter verification of the Access Address in the CONNECT_IND PDU.
This improves security by ensuring that only connection requests with valid Access Addresses are accepted.
If disabled, only basic checks are applied, improving compatibility.