:orphan: .. title:: CONFIG_UART_PIPE .. kconfig:: CONFIG_UART_PIPE CONFIG_UART_PIPE ################ *Enable pipe UART driver* Type: ``bool`` Help ==== .. code-block:: none Enable pipe UART driver. This driver allows application to communicate over UART with custom defined protocol. Driver doesn't inspect received data (as contrary to console UART driver) and all aspects of received protocol data are handled by application provided callback. Direct dependencies =================== \ :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 ` Symbols that select this symbol =============================== - \ :kconfig:`IEEE802154_UPIPE ` - \ :kconfig:`SLIP ` - \ :kconfig:`NET_SLIP_TAP ` Kconfig definition ================== At ``/console/Kconfig:192`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers .. code-block:: kconfig config UART_PIPE bool "Enable pipe UART driver" select UART_INTERRUPT_DRIVEN depends on CONSOLE help Enable pipe UART driver. This driver allows application to communicate over UART with custom defined protocol. Driver doesn't inspect received data (as contrary to console UART driver) and all aspects of received protocol data are handled by application provided callback. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*