mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
93788ecced
Now that CPU and CPU_MODEL are defined in the board's Makefile.features it can be used to determine the available features provided by the specific model.
23 lines
657 B
Makefile
23 lines
657 B
Makefile
FEATURES_PROVIDED += periph_cpuid
|
|
|
|
# TRNG driver is not implemented for mkw41z512vht4 model
|
|
_KINETIS_CPU_MODELS_WITHOUT_HWRNG += mkw41z512vht4
|
|
# No HWRNG in mk20d7 devices
|
|
_KINETIS_CPU_MODELS_WITHOUT_HWRNG += mk20dx256vlh7
|
|
|
|
ifneq (,$(filter-out $(_KINETIS_CPU_MODELS_WITHOUT_HWRNG),$(CPU_MODEL)))
|
|
FEATURES_PROVIDED += periph_hwrng
|
|
endif
|
|
|
|
FEATURES_PROVIDED += periph_gpio
|
|
FEATURES_PROVIDED += periph_gpio_irq
|
|
|
|
# This applies to all Kinetis EA series, for now this is only s9keaz128aclh48
|
|
ifeq (s9keaz128aclh48,$(CPU_MODEL))
|
|
FEATURES_PROVIDED += periph_ics
|
|
else
|
|
FEATURES_PROVIDED += periph_mcg
|
|
endif
|
|
|
|
include $(RIOTCPU)/cortexm_common/Makefile.features
|