Skip to content

Commit

Permalink
Merge branch 'feat/add_vendor_hci_cmd' into 'release/v4.4'
Browse files Browse the repository at this point in the history
Nimble: Add APIs to handle vs HCI commands and events (v4.4)

See merge request espressif/esp-idf!29995
  • Loading branch information
rahult-github committed Apr 3, 2024
2 parents e1affdc + d9a1302 commit ff9db0d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
8 changes: 7 additions & 1 deletion components/bt/host/nimble/Kconfig.in
Original file line number Diff line number Diff line change
Expand Up @@ -517,4 +517,10 @@ config BT_NIMBLE_HIGH_DUTY_ADV_ITVL
bool "Enable BLE high duty advertising interval feature"
depends on BT_NIMBLE_ENABLED
help
This enable BLE high duty advertising interval feature
This enables BLE high duty advertising interval feature

config BT_NIMBLE_VS_SUPPORT
bool "Enable support for VSC and VSE"
help
This option is used to enable support for sending Vendor Specific HCI commands and handling
Vendor Specific HCI Events.
7 changes: 7 additions & 0 deletions components/bt/host/nimble/port/include/esp_nimble_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -1404,4 +1404,11 @@
#endif
#endif

#ifndef MYNEWT_VAL_BLE_HCI_VS
#define MYNEWT_VAL_BLE_HCI_VS CONFIG_BT_NIMBLE_VS_SUPPORT
#define MYNEWT_VAL_BLE_HCI_VS_OCF_OFFSET (0)
#else
#define MYNEWT_VAL_BLE_HCI_VS (0)
#endif

#endif

0 comments on commit ff9db0d

Please sign in to comment.