1/*
2 * Copyright (c) 2019 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&flashcontroller0 {
8	reg = <0x00000000 DT_SIZE_K(4096)>;
9};
10
11&flash0 {
12	reg = <0x00000000 DT_SIZE_K(4096)>;
13
14	partitions {
15		compatible = "fixed-partitions";
16
17		settings_file_partition: partition@0 {
18			label = "settings_file_partition";
19			reg = <0x00000000 0x00010000>;
20		};
21	};
22};
23