1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

driver, hd44780: set module dependencies

This commit is contained in:
smlng 2017-03-25 11:01:33 +01:00
parent 26ec9041a0
commit 51d89fabbb
2 changed files with 8 additions and 0 deletions

View File

@ -129,6 +129,11 @@ ifneq (,$(filter kw2xrf,$(USEMODULE)))
endif
endif
ifneq (,$(filter hd44780,$(USEMODULE)))
FEATURES_REQUIRED += periph_gpio
USEMODULE += xtimer
endif
ifneq (,$(filter lis3dh,$(USEMODULE)))
FEATURES_REQUIRED += periph_gpio
FEATURES_REQUIRED += periph_spi

View File

@ -22,6 +22,9 @@ endif
ifneq (,$(filter isl29125,$(USEMODULE)))
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/isl29125/include
endif
ifneq (,$(filter hd44780,$(USEMODULE)))
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/hd44780/include
endif
ifneq (,$(filter lps331ap,$(USEMODULE)))
USEMODULE_INCLUDES += $(RIOTBASE)/drivers/lps331ap/include
endif