1/*
2 * Copyright (c) 2024 Silicon Laboratories Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&flash0 {
8	partitions {
9		compatible = "fixed-partitions";
10		#address-cells = <1>;
11		#size-cells = <1>;
12
13		code_partition: partition@0 {
14			label = "code_partition";
15			reg = <0x0000000 DT_SIZE_K(2048-8-16)>;
16		};
17
18		storage_partition: partition@1FA000 {
19			label = "storage";
20			reg = <0x01FA000 DT_SIZE_K(16)>;
21		};
22	};
23};
24