Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SWP] coap plugtests #1801

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions examples/coap-plugtests/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# name of your application
APPLICATION = coap-plugtests

# If no BOARD is found in the environment, use this default:
BOARD ?= native

# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..

# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP

# Comment this out to disable scheduler statistics for ps:
CFLAGS += -DSCHEDSTATISTICS

# If you want to use native with valgrind, you should recompile native
# with the target all-valgrind instead of all:
# make -B clean all-valgrind

# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1

# assert.h missing
BOARD_BL_ASSERT := chronos msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
# 'sysconfig' undeclared
BOARD_BL_SYSCONFIG := samr21-xpro fox iot-lab_M3

BOARD_BLACKLIST := $(BOARD_BL_ASSERT) $(BOARD_BL_SYSCONFIG)

# undefined reference to `_gettimeofday'`
BOARD_LD_ERROR := redbee-econotag msba2 msbiot avsextrem

BOARD_INSUFFICIENT_RAM := $(BOARD_LD_ERROR)

# Modules to include:

USEMODULE += uart0
USEMODULE += shell
USEMODULE += shell_commands
USEMODULE += ps
USEMODULE += vtimer
USEMODULE += defaulttransceiver
USEMODULE += udp
USEMODULE += config

USEPKG += libcoap

include $(RIOTBASE)/Makefile.include
Loading