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:
|
# Define default pin mappings for some boards:
|
||||||
ifneq (,$(filter stm32f0discovery,$(BOARD)))
|
ifneq (,$(filter stm32f0discovery,$(BOARD)))
|
||||||
export XBEE_UART ?= UART_1
|
export XBEE_UART ?= "UART_DEV(0)"
|
||||||
endif
|
endif
|
||||||
ifneq (,$(filter stm32f4discovery,$(BOARD)))
|
ifneq (,$(filter stm32f4discovery,$(BOARD)))
|
||||||
export XBEE_UART ?= UART_1
|
export XBEE_UART ?= "UART_DEV(0)"
|
||||||
endif
|
endif
|
||||||
ifneq (,$(filter nucleo-f091,$(BOARD)))
|
ifneq (,$(filter nucleo-f091,$(BOARD)))
|
||||||
export XBEE_UART ?= UART_1
|
export XBEE_UART ?= "UART_DEV(0)"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
USEMODULE += xbee
|
USEMODULE += xbee
|
||||||
@ -28,7 +28,7 @@ ifneq (,$(XBEE_UART))
|
|||||||
CFLAGS += -DXBEE_UART=$(XBEE_UART)
|
CFLAGS += -DXBEE_UART=$(XBEE_UART)
|
||||||
else
|
else
|
||||||
# set default
|
# set default
|
||||||
CFLAGS += -DXBEE_UART=UART_0
|
CFLAGS += -DXBEE_UART="UART_DEV(0)"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# add current directory to the include path. Putting it in CFLAGS will make
|
# add current directory to the include path. Putting it in CFLAGS will make
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
APPLICATION = driver_slip
|
APPLICATION = driver_slip
|
||||||
include ../Makefile.tests_common
|
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 += auto_init_gnrc_netif
|
||||||
USEMODULE += gnrc
|
USEMODULE += gnrc
|
||||||
@ -13,10 +13,10 @@ USEMODULE += shell_commands
|
|||||||
CFLAGS += -I$(CURDIR)
|
CFLAGS += -I$(CURDIR)
|
||||||
|
|
||||||
ifneq (,$(SLIP_UART))
|
ifneq (,$(SLIP_UART))
|
||||||
CFLAGS += -DSLIP_UART=$(SLIP_UART)
|
CFLAGS += -DSLIP_UART="UART_DEV($(SLIP_UART))"
|
||||||
else
|
else
|
||||||
# set default
|
# set default
|
||||||
CFLAGS += -DSLIP_UART="(UART_NUMOF-1)"
|
CFLAGS += -DSLIP_UART="UART_DEV(UART_NUMOF-1)"
|
||||||
endif
|
endif
|
||||||
ifneq (,$(SLIP_BAUDRATE))
|
ifneq (,$(SLIP_BAUDRATE))
|
||||||
CFLAGS += -DSLIP_BAUDRATE=$(SLIP_BAUDRATE)
|
CFLAGS += -DSLIP_BAUDRATE=$(SLIP_BAUDRATE)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user