2018-09-15 06:47:30 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Linaro Limited
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <mem.h>
|
|
|
|
#include <nordic/nrf52832.dtsi>
|
|
|
|
|
2018-12-19 17:10:37 +01:00
|
|
|
&flash0 {
|
|
|
|
reg = <0x00000000 DT_SIZE_K(256)>;
|
|
|
|
};
|
2018-09-15 06:47:30 +02:00
|
|
|
|
2018-12-19 17:10:37 +01:00
|
|
|
&sram0 {
|
|
|
|
reg = <0x20000000 DT_SIZE_K(32)>;
|
2018-09-15 06:47:30 +02:00
|
|
|
};
|
2019-01-10 19:17:02 +01:00
|
|
|
|
|
|
|
/ {
|
|
|
|
soc {
|
2023-07-27 11:52:32 +02:00
|
|
|
compatible = "nordic,nrf52832-qfab", "nordic,nrf52832",
|
|
|
|
"nordic,nrf52", "simple-bus";
|
2019-01-10 19:17:02 +01:00
|
|
|
};
|
|
|
|
};
|