From 4e18d9e1a5f4583f99e92977af6a29470a133848 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Wed, 28 Oct 2015 09:48:45 +0100 Subject: [PATCH] tests: blacklisted some boards for insufficent RAM --- tests/driver_xbee/Makefile | 8 ++++---- tests/slip/Makefile | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/driver_xbee/Makefile b/tests/driver_xbee/Makefile index 20899ab164..c481410fd5 100644 --- a/tests/driver_xbee/Makefile +++ b/tests/driver_xbee/Makefile @@ -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 diff --git a/tests/slip/Makefile b/tests/slip/Makefile index 3420c5f43f..49794dab33 100644 --- a/tests/slip/Makefile +++ b/tests/slip/Makefile @@ -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)