2017-03-25 11:28:10 +01:00
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
|
|
|
USEMODULE += hd44780
|
|
|
|
|
2020-07-21 23:40:40 +02:00
|
|
|
# disable native GPIOs for automatic test
|
|
|
|
ifeq (native,$(BOARD))
|
|
|
|
USEMODULE += periph_gpio_mock
|
2020-11-27 09:17:36 +01:00
|
|
|
# the same for Kconfig
|
|
|
|
ifeq (1,$(TEST_KCONFIG))
|
|
|
|
KCONFIG_ADD_CONFIG += $(APPDIR)/app.config.test.native
|
|
|
|
endif
|
2020-07-21 23:40:40 +02:00
|
|
|
endif
|
|
|
|
|
2019-11-27 12:36:05 +01:00
|
|
|
# Fails on esp32 because the driver defines default GPIOs that are used for the
|
|
|
|
# SPI flash interface.
|
|
|
|
TEST_ON_CI_BLACKLIST += esp32-wroom-32
|
|
|
|
|
2017-03-25 11:28:10 +01:00
|
|
|
include $(RIOTBASE)/Makefile.include
|