:orphan: .. title:: CONFIG_RAM_CONSOLE .. kconfig:: CONFIG_RAM_CONSOLE CONFIG_RAM_CONSOLE ################## *Use RAM console* Type: ``bool`` Help ==== .. code-block:: none Emit console messages to a RAM buffer "ram_console" which can be examined at runtime with a debugger. Useful in board bring-up if there aren't any working serial drivers. Direct dependencies =================== \ :kconfig:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :kconfig:`CONSOLE_HAS_DRIVER ` Kconfig definition ================== At ``/console/Kconfig:101`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers .. code-block:: kconfig config RAM_CONSOLE bool "Use RAM console" select CONSOLE_HAS_DRIVER depends on CONSOLE help Emit console messages to a RAM buffer "ram_console" which can be examined at runtime with a debugger. Useful in board bring-up if there aren't any working serial drivers. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*