Skip to content

Commit

Permalink
Merge branch 'bugfix/fix_ext_adv_compilation_issue_v5.0' into 'releas…
Browse files Browse the repository at this point in the history
…e/v5.0'

Nimble: Fix compilation issue for examples for esp32c6 and esp32h4 (v5.0)

See merge request espressif/esp-idf!22066
  • Loading branch information
jack0c committed Feb 27, 2023
2 parents 4abb6ef + e7eccf7 commit a9af208
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ menu "Example Configuration"
config EXAMPLE_EXTENDED_ADV
bool
default y if SOC_ESP_NIMBLE_CONTROLLER
select BT_NIMBLE_EXT_ADV if SOC_ESP_NIMBLE_CONTROLLER
prompt "Enable Extended Adv"
help
Use this option to enable extended advertising in the example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ menu "Example Configuration"
config EXAMPLE_EXTENDED_ADV
bool
default y if SOC_ESP_NIMBLE_CONTROLLER
select BT_NIMBLE_EXT_ADV if SOC_ESP_NIMBLE_CONTROLLER
prompt "Enable Extended Adv"
help
Use this option to enable extended advertising in the example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ menu "Example Configuration"
config EXAMPLE_EXTENDED_ADV
bool
default y if SOC_ESP_NIMBLE_CONTROLLER
select BT_NIMBLE_EXT_ADV if SOC_ESP_NIMBLE_CONTROLLER
prompt "Enable Extended Adv"
help
Use this option to enable extended advertising in the example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ menu "Example Configuration"
config EXAMPLE_EXTENDED_ADV
bool
default y if SOC_ESP_NIMBLE_CONTROLLER
select BT_NIMBLE_EXT_ADV if SOC_ESP_NIMBLE_CONTROLLER
prompt "Enable Extended Adv"
help
Use this option to enable extended advertising in the example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ menu "Example Configuration"

config EXAMPLE_EXTENDED_ADV
bool
default y
default y if SOC_ESP_NIMBLE_CONTROLLER
select BT_NIMBLE_EXT_ADV if SOC_ESP_NIMBLE_CONTROLLER
prompt "Enable Extended Adv"
help
Use this option to enable extended advertising in the example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ menu "Example Configuration"

config EXAMPLE_EXTENDED_ADV
bool
default y
default y if SOC_ESP_NIMBLE_CONTROLLER
select BT_NIMBLE_EXT_ADV if SOC_ESP_NIMBLE_CONTROLLER
prompt "Enable Extended Adv"
help
Use this option to enable extended advertising in the example
Expand Down
1 change: 1 addition & 0 deletions examples/bluetooth/nimble/blecent/main/Kconfig.projbuild
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ menu "Example Configuration"
config EXAMPLE_EXTENDED_ADV
bool
default y if SOC_ESP_NIMBLE_CONTROLLER
select BT_NIMBLE_EXT_ADV if SOC_ESP_NIMBLE_CONTROLLER
prompt "Enable Extended Adv"
help
Use this option to enable extended advertising in the example
Expand Down
1 change: 1 addition & 0 deletions examples/bluetooth/nimble/bleprph/main/Kconfig.projbuild
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ menu "Example Configuration"
config EXAMPLE_EXTENDED_ADV
bool
default y if SOC_ESP_NIMBLE_CONTROLLER
select BT_NIMBLE_EXT_ADV if SOC_ESP_NIMBLE_CONTROLLER
prompt "Enable Extended Adv"
help
Use this option to enable extended advertising in the example
Expand Down

0 comments on commit a9af208

Please sign in to comment.