mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
0e90e6195f
Added arduino-nano to BOARD_INSUFFICIENT_MEMORY/BOARD_BLACKLIST following suit of how arduino-uno is marked, as arduino-nano is mostly an Uno in a different form factor.
26 lines
652 B
Makefile
26 lines
652 B
Makefile
include ../Makefile.tests_common
|
|
|
|
# exclude boards with insufficient memory
|
|
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
|
|
nucleo-f031k6
|
|
|
|
USEMODULE += shell
|
|
USEMODULE += shell_commands
|
|
USEMODULE += ps
|
|
USEMODULE += xtimer
|
|
USEMODULE += nrf24l01p
|
|
|
|
# set default device parameters in case they are undefined
|
|
SPI_PORT ?= SPI_DEV\(0\)
|
|
CE_PIN ?= GPIO_PIN\(0,0\)
|
|
CS_PIN ?= GPIO_PIN\(0,1\)
|
|
IRQ_PIN ?= GPIO_PIN\(0,2\)
|
|
|
|
# export parameters
|
|
CFLAGS += -DSPI_PORT=$(SPI_PORT)
|
|
CFLAGS += -DCE_PIN=$(CE_PIN)
|
|
CFLAGS += -DCS_PIN=$(CS_PIN)
|
|
CFLAGS += -DIRQ_PIN=$(IRQ_PIN)
|
|
|
|
include $(RIOTBASE)/Makefile.include
|