-
CONFIG_MODEM_CMD_HANDLER
¶
Generic modem command handler
Type: bool
Help¶
This generic command handler uses a modem interface to process
incoming data and hand it back to the modem driver via callbacks
defined for:
- modem responses
- unsolicited messages
- specified handlers for current operation
To configure this layer for use, create a modem_cmd_handler_data
object and pass it's reference to modem_cmd_handler_init() along with
the modem_cmd_handler reference from your modem_context object.
Defaults¶
No defaults. Implicitly defaults to n
.
Symbols that select this symbol¶
Kconfig definition¶
At <Zephyr>/drivers/modem/Kconfig:75
Included via <Zephyr>/Kconfig:8
→ <Zephyr>/Kconfig.zephyr:32
→ <Zephyr>/drivers/Kconfig:82
Menu path: (Top) → Device Drivers → Modem Drivers → Modem context helper driver [EXPERIMENTAL]
config MODEM_CMD_HANDLER
bool "Generic modem command handler"
select NET_BUF
depends on MODEM_CONTEXT && MODEM
help
This generic command handler uses a modem interface to process
incoming data and hand it back to the modem driver via callbacks
defined for:
- modem responses
- unsolicited messages
- specified handlers for current operation
To configure this layer for use, create a modem_cmd_handler_data
object and pass it's reference to modem_cmd_handler_init() along with
the modem_cmd_handler reference from your modem_context object.
(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)