1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg/cmsis-dsp: use lowercase modules

This commit is contained in:
Leandro Lanzieri 2021-09-29 09:32:14 +02:00
parent f1902b30ff
commit 0a3f603cf1
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593
2 changed files with 14 additions and 11 deletions

View File

@ -5,6 +5,9 @@ PKG_LICENSE=Apache-2.0
include $(RIOTBASE)/pkg/pkg.mk
# include makefiles utils tools
include $(RIOTMAKE)/utils/strings.mk
CMSIS_DSP_MODULES = \
cmsis-dsp_BasicMathFunctions \
cmsis-dsp_CommonTables \
@ -22,4 +25,4 @@ CMSIS_DSP_MODULES = \
all: $(CMSIS_DSP_MODULES)
cmsis-dsp_%:
$(MAKE) -C $(PKG_SOURCE_DIR)/CMSIS/DSP/Source/$* -f $(CURDIR)/Makefile.cmsis-dsp MODULE=$@
$(MAKE) -C $(PKG_SOURCE_DIR)/CMSIS/DSP/Source/$* -f $(CURDIR)/Makefile.cmsis-dsp MODULE=$(call lowercase,$@)

View File

@ -1,10 +1,10 @@
USEMODULE += cmsis-dsp_BasicMathFunctions
USEMODULE += cmsis-dsp_CommonTables
USEMODULE += cmsis-dsp_ComplexMathFunctions
USEMODULE += cmsis-dsp_ControllerFunctions
USEMODULE += cmsis-dsp_FastMathFunctions
USEMODULE += cmsis-dsp_FilteringFunctions
USEMODULE += cmsis-dsp_MatrixFunctions
USEMODULE += cmsis-dsp_StatisticsFunctions
USEMODULE += cmsis-dsp_SupportFunctions
USEMODULE += cmsis-dsp_TransformFunctions
USEMODULE += cmsis-dsp_basicmathfunctions
USEMODULE += cmsis-dsp_commontables
USEMODULE += cmsis-dsp_complexmathfunctions
USEMODULE += cmsis-dsp_controllerfunctions
USEMODULE += cmsis-dsp_fastmathfunctions
USEMODULE += cmsis-dsp_filteringfunctions
USEMODULE += cmsis-dsp_matrixfunctions
USEMODULE += cmsis-dsp_statisticsfunctions
USEMODULE += cmsis-dsp_supportfunctions
USEMODULE += cmsis-dsp_transformfunctions