Merge pull request #14948 from benpicco/feat/puf_sram

features_modules: include puf_sram if used
This commit is contained in:
benpicco 2020-09-04 14:41:40 +02:00 committed by GitHub
commit 7dfbfd4f50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -21,6 +21,9 @@ endif
# select cpu_check_address pseudomodule if the corresponding feature is used
USEMODULE += $(filter cpu_check_address, $(FEATURES_USED))
# include puf_sram if used
USEMODULE += $(filter puf_sram, $(FEATURES_USED))
# include periph_common if any periph_* driver is used
ifneq (,$(filter periph_%, $(USEMODULE)))
USEMODULE += periph_common

View File

@ -2,7 +2,7 @@ BOARD ?= nucleo-f411re
include ../Makefile.tests_common
USEMODULE += puf_sram
FEATURES_REQUIRED += puf_sram
DISABLE_MODULE += test_utils_interactive_sync
include $(RIOTBASE)/Makefile.include