mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
Merge branch 'feat/add_high_duty_adv_interval_v4.3' into 'release/v4.3'
feat(nimble): Added support for high duty adv interval (v4.3) See merge request espressif/esp-idf!25556
This commit is contained in:
@ -505,3 +505,9 @@ config BT_NIMBLE_BLUFI_ENABLE
|
|||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Set this option to enable blufi functionality.
|
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
|
||||||
|
Submodule components/bt/host/nimble/nimble updated: 6669d8b418...e2d7a766fb
@ -1382,4 +1382,12 @@
|
|||||||
#endif
|
#endif
|
||||||
#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
|
#endif
|
||||||
|
Reference in New Issue
Block a user