21 lines
309 B
Plaintext
21 lines
309 B
Plaintext
|
/*
|
||
|
* Copyright (c) 2018 Linaro Limited
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#include <mem.h>
|
||
|
#include <nordic/nrf52840.dtsi>
|
||
|
|
||
|
/ {
|
||
|
flash-controller@4001E000 {
|
||
|
flash0: flash@0 {
|
||
|
reg = <0x00000000 DT_SIZE_K(1024)>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
sram0: memory@20000000 {
|
||
|
reg = <0x20000000 DT_SIZE_K(256)>;
|
||
|
};
|
||
|
};
|