:orphan: .. title:: STDOUT_CONSOLE .. option:: CONFIG_STDOUT_CONSOLE *Send stdout to console* Type: ``bool`` Help ==== This option directs standard output (e.g. printf) to the console device, rather than suppressing it entirely. See also EARLY_CONSOLE option. Direct dependencies =================== \ :option:`CONSOLE_HAS_DRIVER ` && !\ :option:`NATIVE_APPLICATION ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== .. highlight:: kconfig At ``lib/libc/Kconfig:133`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:33`` → ``lib/Kconfig:4`` Menu path: (Top) → C Library .. parsed-literal:: config STDOUT_CONSOLE bool "Send stdout to console" default y depends on \ :option:`CONSOLE_HAS_DRIVER ` && !\ :option:`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.)*