:orphan: .. title:: CONFIG_PRINTK .. kconfig:: CONFIG_PRINTK CONFIG_PRINTK ############# *Send printk() to console* Type: ``bool`` Help ==== .. code-block:: none This option directs printk() debugging output to the supported console device, rather than suppressing the generation of printk() output entirely. Output is sent immediately, without any mutual exclusion or buffering. Default ======= - y Symbols that select this symbol =============================== - \ :kconfig:`BOARD_ARDUINO_NANO_33_BLE_EN_USB_CONSOLE ` - \ :kconfig:`BOOT_BANNER ` - \ :kconfig:`LOG ` Symbols that imply this symbol ============================== - \ :kconfig:`LOG_MODE_MINIMAL ` - \ :kconfig:`LOG_MINIMAL ` Kconfig definition ================== At ``/debug/Kconfig:165`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:17`` Menu path: (Top) → Sub Systems and OS Services → Debugging Options .. code-block:: kconfig config PRINTK bool "Send printk() to console" default y help This option directs printk() debugging output to the supported console device, rather than suppressing the generation of printk() output entirely. Output is sent immediately, without any mutual exclusion or buffering. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*