:orphan: .. title:: CONFIG_NATIVE_POSIX_STDOUT_CONSOLE .. kconfig:: CONFIG_NATIVE_POSIX_STDOUT_CONSOLE CONFIG_NATIVE_POSIX_STDOUT_CONSOLE ################################## *Print to the host terminal stdout* Type: ``bool`` Help ==== .. code-block:: none Zephyr's printk messages will be directed to the host terminal stdout. Direct dependencies =================== \ :kconfig:`NATIVE_POSIX_CONSOLE ` && \ :kconfig:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/console/Kconfig:286`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers → Use the host terminal for console .. code-block:: kconfig config NATIVE_POSIX_STDOUT_CONSOLE bool "Print to the host terminal stdout" default y depends on NATIVE_POSIX_CONSOLE && CONSOLE help Zephyr's printk messages will be directed to the host terminal stdout. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*