:orphan: .. title:: CONFIG_UART_NATIVE_POSIX .. kconfig:: CONFIG_UART_NATIVE_POSIX CONFIG_UART_NATIVE_POSIX ######################## *UART driver for native\_posix* Type: ``bool`` Help ==== .. code-block:: none This enables a UART driver for the POSIX ARCH with up to 2 UARTs. For the first UART port, the driver can be configured to either connect to the terminal from which native_posix was run, or into one dedicated pseudoterminal for that UART. Direct dependencies =================== (\ :kconfig:`SERIAL ` && \ :kconfig:`BOARD_NATIVE_POSIX `) || (\ :kconfig:`ARCH_POSIX ` && \ :kconfig:`SERIAL `) *(Includes any dependencies from ifs and menus.)* Default ======= - y Symbols selected by this symbol =============================== - \ :kconfig:`SERIAL_HAS_DRIVER ` Kconfig definitions =================== At ``/posix/native_posix/Kconfig.defconfig:37`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config UART_NATIVE_POSIX bool default y depends on SERIAL && BOARD_NATIVE_POSIX ---- At ``/serial/Kconfig.native_posix:3`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:26`` → ``/serial/Kconfig:108`` Menu path: (Top) → Device Drivers → Serial Drivers .. code-block:: kconfig config UART_NATIVE_POSIX bool "UART driver for native_posix" select SERIAL_HAS_DRIVER depends on ARCH_POSIX && SERIAL help This enables a UART driver for the POSIX ARCH with up to 2 UARTs. For the first UART port, the driver can be configured to either connect to the terminal from which native_posix was run, or into one dedicated pseudoterminal for that UART. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*