mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
9abf3247c8
This also adds these applications to the CI tests. The following drivers have been modelled: gp2y10xx grove_ledbar hd44780 hdc1000 hih6130 hmc5883l hts221 ili9341 ina2xx ina3221 io1_xplained isl29020 isl29125 itg320x jc42 my9221
19 lines
459 B
Makefile
19 lines
459 B
Makefile
include ../Makefile.tests_common
|
|
|
|
USEMODULE += hd44780
|
|
|
|
# disable native GPIOs for automatic test
|
|
ifeq (native,$(BOARD))
|
|
USEMODULE += periph_gpio_mock
|
|
# the same for Kconfig
|
|
ifeq (1,$(TEST_KCONFIG))
|
|
KCONFIG_ADD_CONFIG += $(APPDIR)/app.config.test.native
|
|
endif
|
|
endif
|
|
|
|
# Fails on esp32 because the driver defines default GPIOs that are used for the
|
|
# SPI flash interface.
|
|
TEST_ON_CI_BLACKLIST += esp32-wroom-32
|
|
|
|
include $(RIOTBASE)/Makefile.include
|