18 lines
297 B
Plaintext
18 lines
297 B
Plaintext
|
/*
|
||
|
* Copyright 2024 NXP
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
/ {
|
||
|
chosen {
|
||
|
zephyr,ram-console = &snippet_ram_console;
|
||
|
};
|
||
|
|
||
|
snippet_ram_console: memory@93d00000 {
|
||
|
compatible = "zephyr,memory-region";
|
||
|
reg = <0x93d00000 DT_SIZE_K(4)>;
|
||
|
zephyr,memory-region = "RAM_CONSOLE";
|
||
|
};
|
||
|
};
|