Lines Matching +full:is +full:- +full:ram
1 .. _snippet-ram-console:
3 RAM Console Snippet (ram-console)
6 .. code-block:: console
8 west build -S ram-console [...]
13 This snippet redirects console output to a RAM buffer. The RAM console
14 buffer is a global array located in RAM region by default, whose address
15 is unknown before building. The RAM console driver also supports using
16 a dedicated section for the RAM console buffer with prefined address.
18 How to enable RAM console buffer section
21 Add board dts overlay to this snippet to add property ``zephyr,ram-console``
22 in the chosen node and memory-region node with compatible string
23 :dtcompatible:`zephyr,memory-region` as the following:
25 .. code-block:: DTS
29 zephyr,ram-console = &snippet_ram_console;
33 compatible = "zephyr,memory-region";
35 zephyr,memory-region = "RAM_CONSOLE";