blob: 778a1edce5ad3b86ef5594a706cf301523a547f3 [file] [log] [blame]
Andrzej Puzdrowski3f092bd2020-02-17 13:25:32 +01001/*
2 * Copyright (c) 2020 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/delete-node/ &boot_partition;
8/delete-node/ &slot0_partition;
9/delete-node/ &slot1_partition;
10
11&flash0 {
12 partitions {
13 compatible = "fixed-partitions";
14 #address-cells = <1>;
15 #size-cells = <1>;
16
17 boot_partition: partition@0 {
18 label = "mcuboot";
19 reg = <0x000000000 0x00010000>;
20 };
21 slot0_partition: partition@10000 {
22 label = "image-0";
23 reg = <0x000010000 0x000074000>;
24 };
25 slot1_partition: partition@75000 {
26 label = "image-1";
27 reg = <0x00084000 0x000074000>;
28 };
29 };
30};
Roman Okhrimenko977b3752022-03-31 14:40:48 +030031
32&zephyr_udc0 {
33 cdc_acm_uart0 {
34 compatible = "zephyr,cdc-acm-uart";
35 label = "CDC_ACM_0";
36 };
37};