-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
pkg/openthread: model in kconfig #19671
Conversation
4d11120
to
e0c6300
Compare
There is also the |
Wasn't aware of that and it's incredibly useful to know! |
e0c6300
to
0b53898
Compare
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.
A few fixups seem to be required:
diff --git a/boards/openlabs-kw41z-mini-256kib/Kconfig b/boards/openlabs-kw41z-mini-256kib/Kconfig
index 29f8a7b2cc..86e4283f16 100644
--- a/boards/openlabs-kw41z-mini-256kib/Kconfig
+++ b/boards/openlabs-kw41z-mini-256kib/Kconfig
@@ -21,5 +21,6 @@ config BOARD_OPENLABS_KW41Z_MINI_256KIB
select HAS_PERIPH_UART
select HAS_RIOTBOOT
+ select HAVE_KW41ZRF
select HAVE_SAUL_ADC
select HAVE_SAUL_GPIO
diff --git a/drivers/kw41zrf/Kconfig b/drivers/kw41zrf/Kconfig
index 31831f7182..56350a1f98 100644
--- a/drivers/kw41zrf/Kconfig
+++ b/drivers/kw41zrf/Kconfig
@@ -8,8 +8,7 @@
config MODULE_KW41ZRF
bool "KW41ZRF radio"
depends on TEST_KCONFIG
- depends on CPU_MODEL_MKW41Z256VHT4
- depends on CPU_MODEL_MKW41Z512VHT4
+ depends on CPU_MODEL_MKW41Z256VHT4 || CPU_MODEL_MKW41Z512VHT4
select MODULE_MCUX_XCVR_MKW41Z
select MODULE_IEEE802154
select MODULE_NETDEV
Aside from that, if everything passes then I am happy. |
0b53898
to
77a11be
Compare
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.
ACK!
bors merge |
🕐 Waiting for PR status (GitHub check) to be set, probably by CI. Bors will automatically try to run when all required PR statuses are set. |
bors merge |
Build succeeded! The publicly hosted instance of bors-ng is deprecated and will go away soon. If you want to self-host your own instance, instructions are here. If you want to switch to GitHub's built-in merge queue, visit their help page. |
This broke master, I am working on a fix (after a meeting) |
Contribution description
As the title says. I just checked that the generated firmware size was the same with and without
TEST_KCONFIG
set to 1Testing procedure
Issues/PRs references
Tick one item in #16875