:orphan: .. title:: UART_MUX .. option:: 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 =================== \ :option:`SERIAL_SUPPORT_INTERRUPT ` && \ :option:`GSM_MUX ` && \ :option:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :option:`UART_INTERRUPT_DRIVEN ` Symbols that select this symbol =============================== - \ :option:`NET_PPP ` Kconfig definition ================== At ``/console/Kconfig:353`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``/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 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.)*