:orphan: .. title:: UART_CONSOLE .. option:: CONFIG_UART_CONSOLE *Use UART for console* Type: ``bool`` Help ==== 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 =================== .. highlight:: kconfig At ``boards/posix/native_posix/Kconfig.defconfig:53`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config UART_CONSOLE bool default y if \ :option:`SERIAL ` depends on \ :option:`CONSOLE ` && \ :option:`BOARD_NATIVE_POSIX ` ---- At ``drivers/console/Kconfig:47`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers .. parsed-literal:: config UART_CONSOLE bool "Use UART for console" select \ :option:`CONSOLE_HAS_DRIVER ` depends on \ :option:`SERIAL ` && \ :option:`SERIAL_HAS_DRIVER ` && \ :option:`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.)*