Merge branch 'feat/read_all_local_remote_sup_feat_v5.5' into 'release/v5.5'

feat(nimble): Add support for read all local / remote supported features HCI cmd (v5.5)

See merge request espressif/esp-idf!42871
This commit is contained in:
Rahul Tank
2025-10-27 21:23:43 +05:30
3 changed files with 14 additions and 2 deletions
+5 -1
View File
@@ -721,11 +721,15 @@ menu "BLE 6.x Features"
if BT_NIMBLE_60_FEATURE_SUPPORT
config BT_NIMBLE_CHANNEL_SOUNDING
bool "ble channel souding feature"
depends on BT_NIMBLE_ENABLED
default n
help
Used to enable/disable the channel sounding feature
config BT_NIMBLE_MONITOR_ADV
bool "Enable Monitor Advertising"
default n
help
Enable support for Monitor Advertisers
endif
endmenu #BLE6.x
@@ -2200,4 +2200,12 @@
#endif
#endif
#ifndef MYNEWT_VAL_BLE_MONITOR_ADV
#ifdef CONFIG_BT_NIMBLE_MONITOR_ADV
#define MYNEWT_VAL_BLE_MONITOR_ADV CONFIG_BT_NIMBLE_MONITOR_ADV
#else
#define MYNEWT_VAL_BLE_MONITOR_ADV (0)
#endif
#endif
#endif