:orphan: .. title:: CONFIG_SHELL_STACK_SIZE .. kconfig:: CONFIG_SHELL_STACK_SIZE CONFIG_SHELL_STACK_SIZE ####################### *Shell thread stack size* Type: ``int`` Help ==== .. code-block:: none Stack size for thread created for each instance. Direct dependencies =================== \ :kconfig:`SHELL ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 3168 if \ :kconfig:`OPENTHREAD_SHELL ` && \ :kconfig:`OPENTHREAD_JOINER ` - 2616 if \ :kconfig:`OPENTHREAD_SHELL ` - 2048 if \ :kconfig:`MULTITHREADING ` - 0 if !\ :kconfig:`MULTITHREADING ` Kconfig definition ================== At ``/shell/Kconfig:41`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:45`` Menu path: (Top) → Sub Systems and OS Services → Shell .. code-block:: kconfig config SHELL_STACK_SIZE int "Shell thread stack size" default 3168 if OPENTHREAD_SHELL && OPENTHREAD_JOINER default 2616 if OPENTHREAD_SHELL default 2048 if MULTITHREADING default 0 if !MULTITHREADING depends on SHELL help Stack size for thread created for each instance. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*