Skip to content
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

pkg/cmsis: use unique package for CMSIS headers, DSP and NN modules #18056

Merged
merged 14 commits into from
May 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cpu/cortexm_common/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ config MODULE_CORTEXM_COMMON
imply MODULE_NEWLIB_NANO
select MODULE_PERIPH
select MODULE_MALLOC_THREAD_SAFE if TEST_KCONFIG
select PACKAGE_CMSIS if TEST_KCONFIG
help
Common code for Cortex-M cores.

Expand Down
3 changes: 3 additions & 0 deletions cpu/cortexm_common/Makefile.dep
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ endif

# Make calls to malloc and friends thread-safe
USEMODULE += malloc_thread_safe

# CMSIS headers are fetched using a package
USEPKG += cmsis
1 change: 0 additions & 1 deletion cpu/cortexm_common/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# include module specific includes
INCLUDES += -I$(RIOTCPU)/cortexm_common/include
INCLUDES += -I$(RIOTCPU)/cortexm_common/include/vendor

# All variables must be defined in the CPU configuration when using the common
# `ldscripts/cortexm.ld`
Expand Down
Loading