2019-09-05 17:40:22 +02:00
|
|
|
ifneq (,$(filter arduino,$(USEMODULE)))
|
|
|
|
FEATURES_OPTIONAL += periph_i2c
|
2019-08-29 13:43:21 +02:00
|
|
|
FEATURES_OPTIONAL += periph_spi
|
2019-09-05 17:40:22 +02:00
|
|
|
endif
|
|
|
|
|
2018-08-28 00:55:41 +02:00
|
|
|
ifneq (,$(filter eepreg,$(USEMODULE)))
|
|
|
|
FEATURES_REQUIRED += periph_eeprom
|
|
|
|
endif
|
|
|
|
|
2019-06-13 14:52:59 +02:00
|
|
|
ifneq (,$(filter fmt_table,$(USEMODULE)))
|
|
|
|
USEMODULE += fmt
|
|
|
|
endif
|
|
|
|
|
2019-03-22 17:50:08 +01:00
|
|
|
ifneq (,$(filter i2c_scan,$(USEMODULE)))
|
|
|
|
FEATURES_REQUIRED += periph_i2c
|
|
|
|
endif
|
|
|
|
|
2018-03-12 21:48:24 +01:00
|
|
|
ifneq (,$(filter prng_fortuna,$(USEMODULE)))
|
2020-03-05 12:34:03 +01:00
|
|
|
USEMODULE += crypto_aes
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(filter crypto_%,$(USEMODULE)))
|
|
|
|
USEMODULE += crypto
|
2018-03-12 21:48:24 +01:00
|
|
|
endif
|
2019-03-23 14:20:18 +01:00
|
|
|
|
|
|
|
include $(RIOTBASE)/sys/test_utils/Makefile.dep
|