mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
64552a3b9a
This moves the following modules to a architecture-specific Makefile.dep file: - cortexm_common - cortexm_common_periph - newlib - newlib_nano - periph
12 lines
303 B
Makefile
12 lines
303 B
Makefile
# All stm32 families provide pm support
|
|
USEMODULE += pm_layered
|
|
|
|
# include stm32 common functions and stm32 common periph drivers
|
|
USEMODULE += stm32_common stm32_common_periph
|
|
|
|
ifneq (,$(filter periph_usbdev,$(FEATURES_USED)))
|
|
USEMODULE += xtimer
|
|
endif
|
|
|
|
include $(RIOTCPU)/cortexm_common/Makefile.dep
|