From 74764af9b90e4d78a6de9f51999b76407885f355 Mon Sep 17 00:00:00 2001 From: Simon Duquennoy Date: Fri, 2 Mar 2018 11:21:30 -0800 Subject: [PATCH] RPL BR: do not compile for nrf52dk, which does not support SLIP --- examples/rpl-border-router/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/rpl-border-router/Makefile b/examples/rpl-border-router/Makefile index d8b14d5bd..4d2db2a85 100644 --- a/examples/rpl-border-router/Makefile +++ b/examples/rpl-border-router/Makefile @@ -2,6 +2,9 @@ CONTIKI_PROJECT = border-router all: $(CONTIKI_PROJECT) CONTIKI = ../.. +# The BR is either native or embedded, and in the latter case must support SLIP +PLATFORMS_EXCLUDE = nrf52dk + # Include RPL BR module MODULES += os/services/rpl-border-router # Include webserver module