mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
18 lines
602 B
Makefile
18 lines
602 B
Makefile
CPU_ARCH = cortex-m4f
|
|
CPU_FAM = stm32f4
|
|
|
|
FEATURES_PROVIDED += cortexm_mpu
|
|
FEATURES_PROVIDED += periph_hwrng
|
|
|
|
# the granularity of provided feature definition for STMs is currently by CPU
|
|
# sub-family (e.g., stm32f[1234]). Unfortunately, only some of e.g., the
|
|
# stm32f4 have an RNG peripheral. As during evaluation of the features , no
|
|
# CPU variable is available, we need to filter by board.
|
|
#
|
|
BOARDS_WITHOUT_HWRNG += nucleo-f401re
|
|
BOARDS_WITHOUT_HWRNG += nucleo-f411re
|
|
BOARDS_WITHOUT_HWRNG += nucleo-f446re
|
|
BOARDS_WITHOUT_HWRNG += nucleo-f446ze
|
|
|
|
-include $(RIOTCPU)/stm32_common/Makefile.features
|