tests: blacklisted some boards for insufficent RAM
This commit is contained in:
parent
729e4d1992
commit
4e18d9e1a5
@ -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
|
||||
|
||||
@ -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)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user