:orphan: .. title:: MODEM_CMD_HANDLER_MAX_PARAM_COUNT .. option:: CONFIG_MODEM_CMD_HANDLER_MAX_PARAM_COUNT *Maximum number of params parsed per command* Type: ``int`` 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). Direct dependencies =================== \ :option:`MODEM_CMD_HANDLER ` && \ :option:`MODEM_CONTEXT ` && \ :option:`MODEM ` *(Includes any dependencies from ifs and menus.)* Default ======= - 6 Kconfig definition ================== .. highlight:: kconfig At ``drivers/modem/Kconfig:89`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:82`` Menu path: (Top) → Device Drivers → Modem Drivers → Modem context helper driver [EXPERIMENTAL] → Generic modem command handler .. parsed-literal:: config MODEM_CMD_HANDLER_MAX_PARAM_COUNT int "Maximum number of params parsed per command" default 6 depends on \ :option:`MODEM_CMD_HANDLER ` && \ :option:`MODEM_CONTEXT ` && \ :option:`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.)*