CONFIG_MODEM_IFACE_UART¶
UART-based modem interface
Type: bool
Help¶
To configure this layer for use, create a modem_iface_uart_data
object and pass it's reference to modem_iface_uart_init()
along with the modem_iface reference from your modem_context object
and the UART device name.
Direct dependencies¶
SERIAL_SUPPORT_INTERRUPT && MODEM_CONTEXT && MODEM
(Includes any dependencies from ifs and menus.)
Defaults¶
No defaults. Implicitly defaults to n.
Symbols selected by this symbol¶
Symbols that select this symbol¶
Kconfig definition¶
At <Zephyr Driver>/modem/Kconfig:64
Included via Kconfig:8 → Kconfig.zephyr:42 → <Zephyr Driver>/Kconfig:84
Menu path: (Top) → Device Drivers → Modem Drivers → Modem context helper driver [EXPERIMENTAL]
config MODEM_IFACE_UART
    bool "UART-based modem interface"
    select UART_INTERRUPT_DRIVEN
    select RING_BUFFER
    depends on SERIAL_SUPPORT_INTERRUPT && MODEM_CONTEXT && MODEM
    help
      To configure this layer for use, create a modem_iface_uart_data
      object and pass it's reference to modem_iface_uart_init()
      along with the modem_iface reference from your modem_context object
      and the UART device name.
(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)