988e6670cb
/delete-node/ pointing at node labels needs to be out of the the tree hierarchy, fixes the error: devicetree error: zephyr/dts/arm/nordic/nrf52840_qfaa.dtsi:24 (column 16): parse error: expected node name Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
27 lines
384 B
Plaintext
27 lines
384 B
Plaintext
/*
|
|
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
#include <nordic/nrf52840.dtsi>
|
|
|
|
&flash0 {
|
|
reg = <0x00000000 DT_SIZE_K(1024)>;
|
|
};
|
|
|
|
&sram0 {
|
|
reg = <0x20000000 DT_SIZE_K(256)>;
|
|
};
|
|
|
|
/ {
|
|
soc {
|
|
compatible = "nordic,nrf52840-qfaa", "nordic,nrf52840",
|
|
"nordic,nrf52", "simple-bus";
|
|
};
|
|
|
|
};
|
|
|
|
/delete-node/ &usbd;
|