mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
fd6fedaab6
- Moved the BOARD_INSUFFICIENT_MEMORY list into Makefile.ci - Formatted the list to contain one board per line - Sorted the lists alphabetically
19 lines
542 B
Makefile
19 lines
542 B
Makefile
include ../Makefile.tests_common
|
|
|
|
USEMODULE += shell
|
|
USEMODULE += pcd8544
|
|
|
|
# set default device parameters in case they are undefined
|
|
TEST_PCD8544_SPI ?= SPI_DEV\(0\)
|
|
TEST_PCD8544_CS ?= GPIO_PIN\(0,0\)
|
|
TEST_PCD8544_RESET ?= GPIO_PIN\(0,1\)
|
|
TEST_PCD8544_MODE ?= GPIO_PIN\(0,2\)
|
|
|
|
# export parameters
|
|
CFLAGS += -DTEST_PCD8544_SPI=$(TEST_PCD8544_SPI)
|
|
CFLAGS += -DTEST_PCD8544_CS=$(TEST_PCD8544_CS)
|
|
CFLAGS += -DTEST_PCD8544_RESET=$(TEST_PCD8544_RESET)
|
|
CFLAGS += -DTEST_PCD8544_MODE=$(TEST_PCD8544_MODE)
|
|
|
|
include $(RIOTBASE)/Makefile.include
|