kconfig: shell: fix incorrect shell stack size for Thread

Shell stack size is too low for OpenThread without joiner
functionality, causing overflow.

In this commit, the value of stack size is not changed.
Incorrect assigning of value for opentrhead with
no joiner functionality has been removed.

Signed-off-by: Maciej Baczmanski <maciej.baczmanski@nordicsemi.no>
This commit is contained in:
Maciej Baczmanski 2024-03-05 09:01:16 +01:00 committed by Fabio Baltieri
commit 9be8310ac9

View file

@ -40,9 +40,8 @@ endif
config SHELL_STACK_SIZE
int "Shell thread stack size"
default 3168 if OPENTHREAD_SHELL && OPENTHREAD_JOINER
default 3168 if OPENTHREAD_SHELL
default 3072 if 64BIT
default 2616 if OPENTHREAD_SHELL
default 2048 if MULTITHREADING
default 0 if !MULTITHREADING
help