tests: blacklisted some boards for insufficent RAM

This commit is contained in:
Hauke Petersen 2015-10-28 09:48:45 +01:00
parent 729e4d1992
commit 4e18d9e1a5
2 changed files with 7 additions and 7 deletions

View File

@ -7,13 +7,13 @@ BOARD_INSUFFICIENT_MEMORY := stm32f0discovery weio
# Define default pin mappings for some boards:
ifneq (,$(filter stm32f0discovery,$(BOARD)))
export XBEE_UART ?= UART_1
export XBEE_UART ?= "UART_DEV(0)"
endif
ifneq (,$(filter stm32f4discovery,$(BOARD)))
export XBEE_UART ?= UART_1
export XBEE_UART ?= "UART_DEV(0)"
endif
ifneq (,$(filter nucleo-f091,$(BOARD)))
export XBEE_UART ?= UART_1
export XBEE_UART ?= "UART_DEV(0)"
endif
USEMODULE += xbee
@ -28,7 +28,7 @@ ifneq (,$(XBEE_UART))
CFLAGS += -DXBEE_UART=$(XBEE_UART)
else
# set default
CFLAGS += -DXBEE_UART=UART_0
CFLAGS += -DXBEE_UART="UART_DEV(0)"
endif
# add current directory to the include path. Putting it in CFLAGS will make

View File

@ -1,7 +1,7 @@
APPLICATION = driver_slip
include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := stm32f0discovery nucleo-f334 weio
BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo-f334 stm32f0discovery weio
USEMODULE += auto_init_gnrc_netif
USEMODULE += gnrc
@ -13,10 +13,10 @@ USEMODULE += shell_commands
CFLAGS += -I$(CURDIR)
ifneq (,$(SLIP_UART))
CFLAGS += -DSLIP_UART=$(SLIP_UART)
CFLAGS += -DSLIP_UART="UART_DEV($(SLIP_UART))"
else
# set default
CFLAGS += -DSLIP_UART="(UART_NUMOF-1)"
CFLAGS += -DSLIP_UART="UART_DEV(UART_NUMOF-1)"
endif
ifneq (,$(SLIP_BAUDRATE))
CFLAGS += -DSLIP_BAUDRATE=$(SLIP_BAUDRATE)