You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Building a bluetooth application for the NRF52 in zephyr 3.6 automatically selected CONFIG_BT_CTLR_OPTIMIZE_FOR_SPEED=y. However, in zephyr 3.7, this default is not selected anymore.
To Reproduce
Run the following command in zephyr 3.6 and zephyr 3.7:
west build samples/bluetooth/peripheral -p -b nrf52840dongle_nrf52840
grep CONFIG_BT_CTLR_OPTIMIZE_FOR_SPEED build/zephyr/.config
Expected behavior CONFIG_BT_CTLR_OPTIMIZE_FOR_SPEED should be selected in zephyr 3.7, but it is not.
Impact
Bluetooth applications may run slower.
Logs and console output
Environment (please complete the following information):
Additional context
It looks like the reason is that the kconfig choice default introduced in #70251 does not apply because it is inside a kconfig menu which is hidden through a visible if. Enabling the menu fixes the issue:
west build samples/bluetooth/peripheral -p -b nrf52840dongle_nrf52840 -- -DCONFIG_BT_CTLR_ADVANCED_FEATURES=y
The text was updated successfully, but these errors were encountered:
Describe the bug
Building a bluetooth application for the NRF52 in zephyr 3.6 automatically selected
CONFIG_BT_CTLR_OPTIMIZE_FOR_SPEED=y
. However, in zephyr 3.7, this default is not selected anymore.To Reproduce
Run the following command in zephyr 3.6 and zephyr 3.7:
Expected behavior
CONFIG_BT_CTLR_OPTIMIZE_FOR_SPEED
should be selected in zephyr 3.7, but it is not.Impact
Bluetooth applications may run slower.
Logs and console output
Environment (please complete the following information):
Additional context
It looks like the reason is that the kconfig
choice
default introduced in #70251 does not apply because it is inside a kconfigmenu
which is hidden through avisible if
. Enabling the menu fixes the issue:The text was updated successfully, but these errors were encountered: