feat(nimble): Added support for high duty adv interval

This commit is contained in:
Rahul Tank
2023-08-16 11:47:16 +05:30
parent d832144fb7
commit 2accf6cf6e
3 changed files with 15 additions and 1 deletions

View File

@ -505,3 +505,9 @@ config BT_NIMBLE_BLUFI_ENABLE
default n
help
Set this option to enable blufi functionality.
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

View File

@ -1382,4 +1382,12 @@
#endif
#endif
#ifndef MYNEWT_VAL_BLE_HIGH_DUTY_ADV_ITVL
#ifdef CONFIG_BT_NIMBLE_HIGH_DUTY_ADV_ITVL
#define MYNEWT_VAL_BLE_HIGH_DUTY_ADV_ITVL CONFIG_BT_NIMBLE_HIGH_DUTY_ADV_ITVL
#else
#define MYNEWT_VAL_BLE_HIGH_DUTY_ADV_ITVL (0)
#endif
#endif
#endif