CONFIG_RAM_CONSOLE¶
Use RAM console
Type: bool
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.
Defaults¶
No defaults. Implicitly defaults to n.
Symbols selected by this symbol¶
Kconfig definition¶
At <Zephyr Driver>/console/Kconfig:101
Included via Kconfig:8 → Kconfig.zephyr:42 → <Zephyr Driver>/Kconfig:14
Menu path: (Top) → Device Drivers → Console drivers
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.)