feat(nimble): Add support for HCI commands / events

1. Read all local supported feature
      2. Read remote supported feature
      3. Advertising monitor.
This commit is contained in:
Rahul Tank
2025-09-25 18:09:27 +05:30
parent d28a923eb7
commit 4e29c55f94
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