2020-04-10 14:26:17 +02:00
|
|
|
# In some cases, peripheral modules use vendor provided driver modules such as
|
|
|
|
# the vendor_fsl_clock. This file defines the dependencies between these periph
|
|
|
|
# modules and the vendor modules.
|
|
|
|
USEMODULE += vendor
|
|
|
|
|
|
|
|
# The clock functionality is used by most modules, including cpu.c even when
|
|
|
|
# no peripheral module is being used.
|
|
|
|
USEMODULE += vendor_fsl_clock
|
|
|
|
|
|
|
|
# All peripherals use gpio_mux.h
|
|
|
|
USEMODULE += periph_gpio_mux
|
|
|
|
|
2020-04-12 00:13:44 +02:00
|
|
|
ifneq (,$(filter periph_uart,$(USEMODULE)))
|
|
|
|
USEMODULE += periph_flexcomm
|
|
|
|
endif
|
2020-04-10 14:26:17 +02:00
|
|
|
|
|
|
|
include $(RIOTCPU)/cortexm_common/Makefile.dep
|