1/* 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}; 31 32&zephyr_udc0 { 33 cdc_acm_uart0 { 34 compatible = "zephyr,cdc-acm-uart"; 35 }; 36}; 37