Merge branch 'feat/read_all_local_remote_sup_feat' into 'master'

feat(nimble): Add support for read all local / remote supported features / adv monitor HCI cmd

See merge request espressif/esp-idf!42183
This commit is contained in:
Rahul Tank
2025-10-27 21:21:47 +05:30
3 changed files with 14 additions and 2 deletions

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

View File

@@ -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