:orphan: .. title:: UART_CONSOLE .. option:: CONFIG_UART_CONSOLE *Use UART for console* Type: ``bool`` Help ==== .. code-block:: none Enable this option to use one UART for console. Make sure CONFIG_UART_CONSOLE_ON_DEV_NAME is also set correctly. Direct dependencies =================== (\ :option:`CONSOLE ` && \ :option:`BOARD_NATIVE_POSIX `) || (\ :option:`SERIAL ` && \ :option:`SERIAL_HAS_DRIVER ` && \ :option:`CONSOLE `) *(Includes any dependencies from ifs and menus.)* Default ======= - y if \ :option:`SERIAL ` Symbols selected by this symbol =============================== - \ :option:`CONSOLE_HAS_DRIVER ` Symbols that select this symbol =============================== - \ :option:`USB_UART_CONSOLE ` Kconfig definitions =================== At ``/posix/native_posix/Kconfig.defconfig:59`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. code-block:: kconfig config UART_CONSOLE bool default y if SERIAL depends on CONSOLE && BOARD_NATIVE_POSIX ---- At ``/console/Kconfig:47`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers .. code-block:: kconfig config UART_CONSOLE bool "Use UART for console" select CONSOLE_HAS_DRIVER depends on SERIAL && SERIAL_HAS_DRIVER && CONSOLE help Enable this option to use one UART for console. Make sure CONFIG_UART_CONSOLE_ON_DEV_NAME is also set correctly. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*