:orphan: .. title:: CONFIG_MODEM_SOCKET .. kconfig:: CONFIG_MODEM_SOCKET CONFIG_MODEM_SOCKET ################### *Generic modem socket support layer* Type: ``bool`` Help ==== .. code-block:: none This layer provides much of the groundwork for keeping track of modem "sockets" throughout their lifecycle (from the initial offload API calls through the command handler call back layers). To configure this layer for use, create a modem_socket_config object with your socket data and pass it's reference to modem_socket_init(). Direct dependencies =================== \ :kconfig:`MODEM_CONTEXT ` && \ :kconfig:`MODEM ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols that select this symbol =============================== - \ :kconfig:`MODEM_UBLOX_SARA ` - \ :kconfig:`MODEM_QUECTEL_BG9X ` Kconfig definition ================== At ``/modem/Kconfig:99`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:84`` Menu path: (Top) → Device Drivers → Modem Drivers → Modem context helper driver [EXPERIMENTAL] .. code-block:: kconfig config MODEM_SOCKET bool "Generic modem socket support layer" depends on MODEM_CONTEXT && MODEM help This layer provides much of the groundwork for keeping track of modem "sockets" throughout their lifecycle (from the initial offload API calls through the command handler call back layers). To configure this layer for use, create a modem_socket_config object with your socket data and pass it's reference to modem_socket_init(). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*