From 5f6a0a85146bbbf764543c514a042b8b941720b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Duda?= Date: Wed, 31 May 2017 18:10:19 +0200 Subject: [PATCH] Add switch to enable MTD network diagnostic (#1852) --- examples/common-switches.mk | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/common-switches.mk b/examples/common-switches.mk index 21cda138d..4b125f028 100644 --- a/examples/common-switches.mk +++ b/examples/common-switches.mk @@ -34,6 +34,10 @@ ifeq ($(CERT_LOG),1) configure_OPTIONS += --enable-cert-log endif +ifeq ($(COAP),1) +configure_OPTIONS += --enable-application-coap +endif + ifeq ($(COMMISSIONER),1) configure_OPTIONS += --enable-commissioner endif @@ -82,6 +86,6 @@ ifeq ($(MAC_WHITELIST),1) configure_OPTIONS += --enable-mac-whitelist endif -ifeq ($(COAP),1) -configure_OPTIONS += --enable-application-coap +ifeq ($(MTD_NETDIAG),1) +configure_OPTIONS += --enable-mtd-network-diagnostic endif