-
Notifications
You must be signed in to change notification settings - Fork 2k
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
cpu/efm32: model kconfig #16912
cpu/efm32: model kconfig #16912
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.
Thanks for this! Looks good, haven't looked at menuconfig yet..
cpu/efm32/Makefile.features
Outdated
# Add efm32 configurations after including cortexm_common so efm32 takes precendence | ||
# This configuration enables modules that are only available when using Kconfig | ||
# module modelling | ||
ifeq (1, $(TEST_KCONFIG)) |
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.
ifeq (1, $(TEST_KCONFIG)) | |
ifeq (1,$(TEST_KCONFIG)) |
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.
Fixed
# include makefiles utils tools | ||
include $(RIOTMAKE)/utils/strings.mk |
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.
Isn't this available early on?
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.
It was returning empty string, so I'm guessing it's not.
please rebase and squash @leandrolanzieri |
d989a82
to
1e3d116
Compare
1e3d116
to
a9af4cc
Compare
This one needs a rebase @leandrolanzieri ! |
a9af4cc
to
17e6da0
Compare
Done! |
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, will probably need another rebase for the static tests though.
6d3de2e
to
0d9bf24
Compare
052cf95
to
6a1340d
Compare
Ok this is squashed now |
GO! |
Thanks for the review! |
Contribution description
This adds the Kconfig modules for efm32 and related boards. I added to the CI script one board with EFM32, one with EFR32 and one with EZR32.
Testing procedure
TEST_KCONFIG=1
.Issues/PRs references
#16875