:orphan: .. title:: CONFIG_RAM_CONSOLE_BUFFER_SIZE .. kconfig:: CONFIG_RAM_CONSOLE_BUFFER_SIZE CONFIG_RAM_CONSOLE_BUFFER_SIZE ############################## *Ram Console buffer size* Type: ``int`` Help ==== .. code-block:: none Size of the RAM console buffer. Messages will wrap around if the length is exceeded. Direct dependencies =================== \ :kconfig:`RAM_CONSOLE ` && \ :kconfig:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1024 Kconfig definition ================== At ``/console/Kconfig:109`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers → Use RAM console .. code-block:: kconfig config RAM_CONSOLE_BUFFER_SIZE int "Ram Console buffer size" default 1024 depends on RAM_CONSOLE && CONSOLE help Size of the RAM console buffer. Messages will wrap around if the length is exceeded. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*