CONFIG_SHELL_CMD_BUFF_SIZE¶
Shell command buffer size
Type: int
Help¶
Maximum command size in bytes. One byte is reserved for the string
terminator character.
Defaults¶
- 128 if - SHELL_MINIMAL
- 256 
Kconfig definition¶
At <Zephyr Subsystem>/shell/Kconfig:58
Included via Kconfig:8 → Kconfig.zephyr:44 → <Zephyr Subsystem>/Kconfig:45
Menu path: (Top) → Sub Systems and OS Services → Shell
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.)