1/*
2 * Copyright (c) 2022 STMicroelectronics
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&flash0 {
8	partitions {
9		/* Set 48KB of storage at the beginning of bank2 in order to have 3 sectors smaller than 32K
10		 * 	(nvs.h: uint16_t sector_size)
11		 */
12		storage_partition: partition@100000 {
13			label = "storage";
14			reg = <0x000100000 DT_SIZE_K(48)>;
15		};
16	};
17};
18