-
Notifications
You must be signed in to change notification settings - Fork 8.4k
bluetooth: shell: Fix includes #80105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bluetooth: shell: Fix includes #80105
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question:
* For those two settings, would it be okay (tolerated? appreciated?) to add an an extra build in CI "just" to test whether enabling those flags does not break the build?
Please add a new tests target in testcases.yaml file with added extra_configs with CONFIG_BT_CTLR_DTM for nrf52840dk/nrf52840 board.
Using which board did you discover the issue?
An nRF52840 (or maybe nRF54L15) based out-of-tree board. |
Any proposal on which Or did you mean to add a directory |
|
|
@rettichschnidi is this something you will be able to follow up soon before the Zephyr v4.0 feature freeze or create GH issue to fix it in bug fix phase? |
I'll take care of it today. I am a bit confused however due to your proposed changes - they essentially revert some of my patch. Need to investigate, likely an overlook on my end. |
This allows to build the shell with BT_CTLR_DTM and/or BT_CTLR_ADV_EXT enabled. The issues has been introduced by commit bf897cf (Bluetooth: Shell: Restructure shell files). Signed-off-by: Reto Schneider <[email protected]>
This ensures that enabling BT_CTLR_DTM does not break the compilation of the Bluetooth shell. Signed-off-by: Reto Schneider <[email protected]>
9589e37 to
cf974e2
Compare
This allows to build the shell with BT_CTLR_DTM and/or BT_CTLR_ADV_EXT enabled.
The issues has been introduced by commit
bf897cf (Bluetooth: Shell: Restructure shell files).
Question: