From 41c2789b771d890b366103900a26922355c19a7c Mon Sep 17 00:00:00 2001 From: Robert Lubos Date: Mon, 8 Nov 2021 12:46:58 +0100 Subject: [PATCH] samples: net: telnet: Enable command handling by default Not handling telnet commands may lead to some unexpected behaviour, like telnet client locking when it does not receive a response for DO TIMING MARK command. Therefore enable it by default in the sample to improve user exprience. Signed-off-by: Robert Lubos --- samples/net/telnet/prj.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/samples/net/telnet/prj.conf b/samples/net/telnet/prj.conf index 8e00513e22f..c18da48ecf3 100644 --- a/samples/net/telnet/prj.conf +++ b/samples/net/telnet/prj.conf @@ -29,3 +29,4 @@ CONFIG_NET_CONFIG_MY_IPV4_ADDR="192.0.2.1" CONFIG_NET_SHELL=y CONFIG_KERNEL_SHELL=y CONFIG_SHELL_BACKEND_TELNET=y +CONFIG_SHELL_TELNET_SUPPORT_COMMAND=y