Skip to content

Commit 14135f9

Browse files
committed
Merge branch 'bugfix/fix_example_menuconfig_error_v5.3' into 'release/v5.3'
fix(nimble): Update menuconfig option to consider 5.0 support (v5.3) See merge request espressif/esp-idf!32035
2 parents ab6203d + f6974ab commit 14135f9

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

examples/bluetooth/nimble/ble_cts/cts_cent/main/Kconfig.projbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ menu "Example Configuration"
1515

1616
config EXAMPLE_EXTENDED_ADV
1717
bool
18-
depends on SOC_BLE_50_SUPPORTED
18+
depends on SOC_BLE_50_SUPPORTED && BT_NIMBLE_50_FEATURE_SUPPORT
1919
default y if SOC_ESP_NIMBLE_CONTROLLER
2020
select BT_NIMBLE_EXT_ADV
2121
prompt "Enable Extended Adv"

examples/bluetooth/nimble/ble_cts/cts_prph/main/Kconfig.projbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ menu "Example Configuration"
22

33
config EXAMPLE_EXTENDED_ADV
44
bool
5-
depends on SOC_BLE_50_SUPPORTED
5+
depends on SOC_BLE_50_SUPPORTED && BT_NIMBLE_50_FEATURE_SUPPORT
66
default y if SOC_ESP_NIMBLE_CONTROLLER
77
select BT_NIMBLE_EXT_ADV
88
prompt "Enable Extended Adv"

examples/bluetooth/nimble/ble_htp/htp_cent/main/Kconfig.projbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ menu "Example Configuration"
1515

1616
config EXAMPLE_EXTENDED_ADV
1717
bool
18-
depends on SOC_BLE_50_SUPPORTED
18+
depends on SOC_BLE_50_SUPPORTED && BT_NIMBLE_50_FEATURE_SUPPORT
1919
default y if SOC_ESP_NIMBLE_CONTROLLER
2020
select BT_NIMBLE_EXT_ADV
2121
prompt "Enable Extended Adv"

examples/bluetooth/nimble/ble_htp/htp_prph/main/Kconfig.projbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ menu "Example Configuration"
22

33
config EXAMPLE_EXTENDED_ADV
44
bool
5-
depends on SOC_BLE_50_SUPPORTED
5+
depends on SOC_BLE_50_SUPPORTED && BT_NIMBLE_50_FEATURE_SUPPORT
66
default y if SOC_ESP_NIMBLE_CONTROLLER
77
select BT_NIMBLE_EXT_ADV
88
prompt "Enable Extended Adv"

examples/bluetooth/nimble/ble_l2cap_coc/coc_blecent/main/Kconfig.projbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ menu "Example Configuration"
88

99
config EXAMPLE_EXTENDED_ADV
1010
bool
11-
depends on SOC_BLE_50_SUPPORTED
11+
depends on SOC_BLE_50_SUPPORTED && BT_NIMBLE_50_FEATURE_SUPPORT
1212
default y if SOC_ESP_NIMBLE_CONTROLLER
1313
select BT_NIMBLE_EXT_ADV
1414
prompt "Enable Extended Adv"

examples/bluetooth/nimble/ble_l2cap_coc/coc_bleprph/main/Kconfig.projbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ menu "Example Configuration"
5050

5151
config EXAMPLE_EXTENDED_ADV
5252
bool
53-
depends on SOC_BLE_50_SUPPORTED
53+
depends on SOC_BLE_50_SUPPORTED && BT_NIMBLE_50_FEATURE_SUPPORT
5454
default y if SOC_ESP_NIMBLE_CONTROLLER
5555
select BT_NIMBLE_EXT_ADV
5656
prompt "Enable Extended Adv"

examples/bluetooth/nimble/ble_multi_conn/ble_multi_conn_prph/main/Kconfig.projbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ menu "Example Configuration"
22

33
config EXAMPLE_EXTENDED_ADV
44
bool
5-
depends on SOC_BLE_50_SUPPORTED
5+
depends on SOC_BLE_50_SUPPORTED && BT_NIMBLE_50_FEATURE_SUPPORT
66
default y if SOC_ESP_NIMBLE_CONTROLLER
77
select BT_NIMBLE_EXT_ADV
88
prompt "Enable Extended Adv"

examples/bluetooth/nimble/ble_periodic_adv/main/Kconfig.projbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ menu "Example Configuration"
22

33
config EXAMPLE_EXTENDED_ADV
44
bool
5-
depends on SOC_BLE_50_SUPPORTED
5+
depends on SOC_BLE_50_SUPPORTED && BT_NIMBLE_50_FEATURE_SUPPORT
66
default y if SOC_ESP_NIMBLE_CONTROLLER
77
select BT_NIMBLE_EXT_ADV
88
prompt "Enable Extended Adv"

examples/bluetooth/nimble/ble_periodic_sync/main/Kconfig.projbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
menu "Example Configuration"
22
config EXAMPLE_EXTENDED_ADV
33
bool
4-
depends on SOC_BLE_50_SUPPORTED
4+
depends on SOC_BLE_50_SUPPORTED && BT_NIMBLE_50_FEATURE_SUPPORT
55
default y if SOC_ESP_NIMBLE_CONTROLLER
66
select BT_NIMBLE_EXT_ADV
77
prompt "Enable Extended Adv"

examples/bluetooth/nimble/ble_proximity_sensor/proximity_sensor_cent/main/Kconfig.projbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ menu "Example Configuration"
1515

1616
config EXAMPLE_EXTENDED_ADV
1717
bool
18-
depends on SOC_BLE_50_SUPPORTED
18+
depends on SOC_BLE_50_SUPPORTED && BT_NIMBLE_50_FEATURE_SUPPORT
1919
default y if SOC_ESP_NIMBLE_CONTROLLER
2020
select BT_NIMBLE_EXT_ADV
2121
prompt "Enable Extended Adv"

0 commit comments

Comments
 (0)