:orphan: .. title:: CONFIG_STDOUT_CONSOLE .. kconfig:: CONFIG_STDOUT_CONSOLE CONFIG_STDOUT_CONSOLE ##################### *Send stdout to console* Type: ``bool`` Help ==== .. code-block:: none This option directs standard output (e.g. printf) to the console device, rather than suppressing it entirely. See also EARLY_CONSOLE option. Direct dependencies =================== \ :kconfig:`CONSOLE_HAS_DRIVER ` && !\ :kconfig:`NATIVE_APPLICATION ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/libc/Kconfig:175`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:43`` → ``/Kconfig:4`` Menu path: (Top) → C Library .. code-block:: kconfig config STDOUT_CONSOLE bool "Send stdout to console" default y depends on CONSOLE_HAS_DRIVER && !NATIVE_APPLICATION help This option directs standard output (e.g. printf) to the console device, rather than suppressing it entirely. See also EARLY_CONSOLE option. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*