:orphan: .. title:: CONFIG_SHELL_CMD_BUFF_SIZE .. kconfig:: CONFIG_SHELL_CMD_BUFF_SIZE CONFIG_SHELL_CMD_BUFF_SIZE ########################## *Shell command buffer size* Type: ``int`` Help ==== .. code-block:: none Maximum command size in bytes. One byte is reserved for the string terminator character. Direct dependencies =================== \ :kconfig:`SHELL ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 128 if \ :kconfig:`SHELL_MINIMAL ` - 256 Kconfig definition ================== At ``/shell/Kconfig:58`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:45`` Menu path: (Top) → Sub Systems and OS Services → Shell .. code-block:: kconfig config SHELL_CMD_BUFF_SIZE int "Shell command buffer size" default 128 if SHELL_MINIMAL default 256 depends on SHELL help Maximum command size in bytes. One byte is reserved for the string terminator character. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*