From 9c63da83f6df2a4650462034af477746760997c7 Mon Sep 17 00:00:00 2001 From: Kamil Kasperczyk Date: Thu, 1 Jun 2023 15:25:45 +0200 Subject: [PATCH] [nrfconnect] Removed obsolete MCUMGR SMP BT config Replaced CONFIG_MCUMGR_SMP_BT that is no longer supported with the CONFIG_MCUMGR_TRANSPORT_BT --- examples/platform/nrfconnect/util/DFUOverSMP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/platform/nrfconnect/util/DFUOverSMP.cpp b/examples/platform/nrfconnect/util/DFUOverSMP.cpp index 95e3ab521bcdc2..ac59171598127f 100644 --- a/examples/platform/nrfconnect/util/DFUOverSMP.cpp +++ b/examples/platform/nrfconnect/util/DFUOverSMP.cpp @@ -17,7 +17,7 @@ #include "DFUOverSMP.h" -#if !defined(CONFIG_MCUMGR_SMP_BT) || !defined(CONFIG_MCUMGR_GRP_IMG) || !defined(CONFIG_MCUMGR_CMD_OS_MGMT) +#if !defined(CONFIG_MCUMGR_TRANSPORT_BT) || !defined(CONFIG_MCUMGR_GRP_IMG) || !defined(CONFIG_MCUMGR_GRP_OS) #error "DFUOverSMP requires MCUMGR module configs enabled" #endif