1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/driver_si70xx/Makefile
2016-07-22 18:22:13 +02:00

18 lines
403 B
Makefile

APPLICATION = driver_si70xx
include ../Makefile.tests_common
USEMODULE += si70xx
USEMODULE += xtimer
# set default device parameters in case they are undefined
TEST_I2C ?= 0
TEST_I2C_ADDR ?= 0x80
TEST_PIN_EN ?= GPIO_PIN\(0,0\)
# export parameters
CFLAGS += -DTEST_I2C=$(TEST_I2C)
CFLAGS += -DTEST_I2C_ADDR=$(TEST_I2C_ADDR)
CFLAGS += -DTEST_PIN_EN=$(TEST_PIN_EN)
include $(RIOTBASE)/Makefile.include