From ae20a6aa9148ad16f8f100bb9ed57b4ec7a72ff2 Mon Sep 17 00:00:00 2001 From: Lukasz Majewski Date: Mon, 30 Dec 2024 17:06:18 +0100 Subject: [PATCH] samples: echo_client: OpenThread RCP set CONFIG_SETTINGS_NVS=y By default OpenThread uses storage API to store configuration options. On for example mimxrt1020_evk the enabled by default is CONFIG_SETTINGS_NONE when CONFIG_SETTINGS is enabled. Fix this problem by using the CONFIG_SETTINGS_NVS=y. Signed-off-by: Lukasz Majewski --- samples/net/sockets/echo_client/overlay-ot-rcp-host-uart.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/samples/net/sockets/echo_client/overlay-ot-rcp-host-uart.conf b/samples/net/sockets/echo_client/overlay-ot-rcp-host-uart.conf index cb63accbe78a..b7e67b1ee0fb 100644 --- a/samples/net/sockets/echo_client/overlay-ot-rcp-host-uart.conf +++ b/samples/net/sockets/echo_client/overlay-ot-rcp-host-uart.conf @@ -26,6 +26,7 @@ CONFIG_NET_L2_OPENTHREAD=y # Use NVS as settings backend CONFIG_NVS=y +CONFIG_SETTINGS_NVS=y # Enable Openthread rcp host CONFIG_HDLC_RCP_IF=y