2015-03-24 18:01:40 +01:00
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
2018-08-17 11:52:38 +02:00
|
|
|
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \
|
|
|
|
msb-430 msb-430h nucleo-f031k6 nucleo-f042k6 \
|
2018-07-17 14:07:17 +02:00
|
|
|
nucleo-l031k6 nucleo-f030r8 nucleo-f303k8 \
|
2018-08-17 11:52:38 +02:00
|
|
|
nucleo-f334r8 nucleo-l053r8 stm32f0discovery \
|
|
|
|
waspmote-pro
|
2015-03-24 18:01:40 +01:00
|
|
|
|
2017-02-09 14:06:26 +01:00
|
|
|
BOARD_BLACKLIST += mips-malta
|
|
|
|
|
2015-08-26 07:21:20 +02:00
|
|
|
USEMODULE += auto_init_gnrc_netif
|
2015-08-10 02:41:08 +02:00
|
|
|
USEMODULE += gnrc
|
2015-08-17 15:41:29 +02:00
|
|
|
USEMODULE += gnrc_pktdump
|
2017-07-18 14:39:03 +02:00
|
|
|
USEMODULE += gnrc_txtsnd
|
|
|
|
USEMODULE += slipdev
|
2015-03-24 18:01:40 +01:00
|
|
|
USEMODULE += shell
|
|
|
|
USEMODULE += shell_commands
|
|
|
|
|
2015-11-03 15:27:25 +01:00
|
|
|
# set slip parameters to default values if unset
|
|
|
|
SLIP_UART ?= "UART_NUMOF-1"
|
|
|
|
SLIP_BAUDRATE ?= 115200
|
|
|
|
|
|
|
|
# export slip parameters
|
|
|
|
CFLAGS += -DSLIP_UART="UART_DEV($(SLIP_UART))"
|
|
|
|
CFLAGS += -DSLIP_BAUDRATE=$(SLIP_BAUDRATE)
|
2015-06-01 16:41:03 +02:00
|
|
|
|
2015-11-03 15:27:25 +01:00
|
|
|
# add current directory to the include path. Putting it in CFLAGS will make
|
|
|
|
# it go to the beginning, before the standard includes.
|
|
|
|
# That way slip_params.h get's included and auto configuration can pick it up.
|
|
|
|
CFLAGS += -I$(CURDIR)
|
2015-03-24 18:01:40 +01:00
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|