mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
7e5088982b
-include will throw no error if sam0_common/Makefile.features does not exist. This may not have been intentional as none of the other sam0 implementations do this. Replace it with a normal include.
9 lines
230 B
Makefile
9 lines
230 B
Makefile
# The SAMR30 line of MCUs does not contain a TRNG
|
|
BOARDS_WITHOUT_HWRNG += samr30-xpro
|
|
|
|
ifeq (,$(filter $(BOARDS_WITHOUT_HWRNG),$(BOARD)))
|
|
FEATURES_PROVIDED += periph_hwrng
|
|
endif
|
|
|
|
include $(RIOTCPU)/sam0_common/Makefile.features
|