:orphan: .. title:: CONFIG_UART_MUX .. kconfig:: CONFIG_UART_MUX CONFIG_UART_MUX ############### *Enable UART muxing (GSM 07.10) support [EXPERIMENTAL]* Type: ``bool`` Help ==== .. code-block:: none Enable this option to create UART muxer that run over a physical UART. The GSM 07.10 muxing protocol is used to separate the data between these muxed UARTs. Direct dependencies =================== \ :kconfig:`SERIAL_SUPPORT_INTERRUPT ` && \ :kconfig:`GSM_MUX ` && \ :kconfig:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :kconfig:`UART_INTERRUPT_DRIVEN ` - \ :kconfig:`EXPERIMENTAL ` Symbols that select this symbol =============================== - \ :kconfig:`NET_PPP ` Kconfig definition ================== At ``/console/Kconfig:309`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers → Enable GSM 07.10 muxing protocol .. code-block:: kconfig config UART_MUX bool "Enable UART muxing (GSM 07.10) support [EXPERIMENTAL]" select UART_INTERRUPT_DRIVEN select EXPERIMENTAL depends on SERIAL_SUPPORT_INTERRUPT && GSM_MUX && CONSOLE help Enable this option to create UART muxer that run over a physical UART. The GSM 07.10 muxing protocol is used to separate the data between these muxed UARTs. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*