mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-01 11:44:31 +02:00
feat(nimble): Added support for high duty adv interval
This commit is contained in:
@@ -662,3 +662,9 @@ config BT_NIMBLE_BLE_GATT_BLOB_TRANSFER
|
||||
help
|
||||
This option is used when data to be sent is more than 512 bytes. For peripheral role,
|
||||
BT_NIMBLE_MSYS_1_BLOCK_COUNT needs to be increased according to the need.
|
||||
|
||||
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: 55c809a752...115f05c7b2
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
||||
* SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
@@ -1611,4 +1611,12 @@
|
||||
#define MYNEWT_VAL_BLE_POWER_CONTROL CONFIG_BT_NIMBLE_BLE_POWER_CONTROL
|
||||
#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
|
||||
|
Reference in New Issue
Block a user