Merge branch 'feat/add_high_duty_adv_interval_v5.1' into 'release/v5.1'

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

See merge request espressif/esp-idf!25553
This commit is contained in:
Rahul Tank 2023-08-29 14:51:45 +08:00
commit 8e6bf6c3a0
2 changed files with 14 additions and 0 deletions

View File

@ -699,3 +699,9 @@ config BT_NIMBLE_MAX_EADS
depends on BT_NIMBLE_ENABLED && BT_NIMBLE_ENC_ADV_DATA
help
Defines maximum number of encrypted advertising data key material to save
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

@ -1711,4 +1711,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