:orphan: .. title:: CONFIG_MODEM_CMD_HANDLER_MAX_PARAM_COUNT .. kconfig:: CONFIG_MODEM_CMD_HANDLER_MAX_PARAM_COUNT CONFIG_MODEM_CMD_HANDLER_MAX_PARAM_COUNT ######################################## *Maximum number of params parsed per command* Type: ``int`` Help ==== .. code-block:: none This option sets the maximum number of parameters which may be parsed by the command handler. This is also limited by the length of the match_buf (match_buf_len) field as it needs to be large enough to hold a single line of data (ending with /r). Direct dependencies =================== \ :kconfig:`MODEM_CMD_HANDLER ` && \ :kconfig:`MODEM_CONTEXT ` && \ :kconfig:`MODEM ` *(Includes any dependencies from ifs and menus.)* Default ======= - 6 Kconfig definition ================== At ``/modem/Kconfig:89`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:84`` Menu path: (Top) → Device Drivers → Modem Drivers → Modem context helper driver [EXPERIMENTAL] → Generic modem command handler .. code-block:: kconfig config MODEM_CMD_HANDLER_MAX_PARAM_COUNT int "Maximum number of params parsed per command" default 6 depends on MODEM_CMD_HANDLER && MODEM_CONTEXT && MODEM help This option sets the maximum number of parameters which may be parsed by the command handler. This is also limited by the length of the match_buf (match_buf_len) field as it needs to be large enough to hold a single line of data (ending with /r). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*