1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/driver_adt7310/Makefile
Marian Buschsieweke fd6fedaab6
tests: BOARD_INSUFFICIENT_MEMORY -> Makefile.ci
- Moved the BOARD_INSUFFICIENT_MEMORY list into Makefile.ci
- Formatted the list to contain one board per line
- Sorted the lists alphabetically
2019-10-17 15:11:59 +02:00

15 lines
359 B
Makefile

include ../Makefile.tests_common
USEMODULE += adt7310
USEMODULE += xtimer
# set default device parameters in case they are undefined
TEST_ADT7310_SPI ?= SPI_DEV\(0\)
TEST_ADT7310_CS ?= GPIO_PIN\(0,0\)
# export parameters
CFLAGS += -DTEST_ADT7310_SPI=$(TEST_ADT7310_SPI)
CFLAGS += -DTEST_ADT7310_CS=$(TEST_ADT7310_CS)
include $(RIOTBASE)/Makefile.include