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

16 lines
378 B
Makefile
Raw Normal View History

include ../Makefile.drivers_common
2023-05-31 19:32:49 +02:00
USEMODULE += fmt
USEMODULE += hih6130
2023-05-31 19:32:49 +02:00
USEMODULE += ztimer_msec
# set default device parameters in case they are undefined
TEST_HIH6130_I2C ?= I2C_DEV\(0\)
TEST_HIH6130_ADDR ?= 0x27
# export parameters
CFLAGS += -DTEST_HIH6130_I2C=$(TEST_HIH6130_I2C)
CFLAGS += -DTEST_HIH6130_ADDR=$(TEST_HIH6130_ADDR)
include $(RIOTBASE)/Makefile.include