1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #5308 from haukepetersen/fix_dri_makedep_dhtfeature

drivers/Makefile.dep: fixed FEATURE_REQ assignments
This commit is contained in:
Oleg Hahm 2016-04-13 17:27:06 +02:00
commit 6c817c888e

View File

@ -19,7 +19,7 @@ endif
ifneq (,$(filter bh1750fvi,$(USEMODULE)))
USEMODULE += xtimer
FEATURES_REQUIRED = periph_i2c
FEATURES_REQUIRED += periph_i2c
endif
ifneq (,$(filter cc110x,$(USEMODULE)))
@ -34,7 +34,7 @@ endif
ifneq (,$(filter dht,$(USEMODULE)))
USEMODULE += xtimer
FEATURES_REQUIRED = periph_gpio
FEATURES_REQUIRED += periph_gpio
endif
ifneq (,$(filter enc28j60,$(USEMODULE)))