Merge branch 'bugfix/add_ble_fixes' into 'release/v5.2'

fix(nimble): Add ble fixes in nimble (v5.2)

See merge request espressif/esp-idf!28112
This commit is contained in:
Jiang Jiang Jian 2023-12-27 10:30:46 +08:00
commit 14d88e5e5e
6 changed files with 13 additions and 1 deletions

@ -1 +1 @@
Subproject commit 34e3842741f598c00082ef7d2cea5f22615366f6
Subproject commit 42b16f59a3c48f3315af8d903a8f03e3de234482

View File

@ -1155,6 +1155,8 @@ struct ble_hci_vs_duplicate_exception_list_cp {
#define BLE_HCI_OCF_VS_PCL_SET_RSSI (MYNEWT_VAL(BLE_HCI_VS_OCF_OFFSET) + (0x0111))
#endif
#define BLE_HCI_OCF_VS_SET_CHAN_SELECT (MYNEWT_VAL(BLE_HCI_VS_OCF_OFFSET) + (0x0112))
/* Command Specific Definitions */
/* --- Set controller to host flow control (OGF 0x03, OCF 0x0031) --- */
#define BLE_HCI_CTLR_TO_HOST_FC_OFF (0)

View File

@ -727,6 +727,10 @@ config SOC_BLUFI_SUPPORTED
bool
default y
config SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED
bool
default y
config SOC_PHY_IMPROVE_RX_11B
bool
default y

View File

@ -336,6 +336,7 @@
#define SOC_BLE_50_SUPPORTED (1) /*!< Support Bluetooth 5.0 */
#define SOC_BLE_DEVICE_PRIVACY_SUPPORTED (1) /*!< Support BLE device privacy mode */
#define SOC_BLUFI_SUPPORTED (1) /*!< Support BLUFI */
#define SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED (1) /*!< Support For BLE Periodic Adv Enhancements */
/*------------------------------------- PHY CAPS -------------------------------------*/
#define SOC_PHY_IMPROVE_RX_11B (1)

View File

@ -1302,3 +1302,7 @@ config SOC_BLE_POWER_CONTROL_SUPPORTED
config SOC_BLE_MULTI_CONN_OPTIMIZATION
bool
default y
config SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED
bool
default y

View File

@ -528,3 +528,4 @@
#define SOC_BLE_DEVICE_PRIVACY_SUPPORTED (1) /*!< Support BLE device privacy mode */
#define SOC_BLE_POWER_CONTROL_SUPPORTED (1) /*!< Support Bluetooth Power Control */
#define SOC_BLE_MULTI_CONN_OPTIMIZATION (1) /*!< Support multiple connections optimization */
#define SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED (1) /*!< Support For BLE Periodic Adv Enhancements */