1/*
2 * Copyright 2025 Google LLC
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	uart-bridge0 {
9		compatible = "zephyr,uart-bridge";
10		peers = <&cdc_acm_uart0 &arduino_serial>;
11	};
12
13};
14
15&arduino_serial {
16	status = "okay";
17};
18
19&zephyr_udc0 {
20	cdc_acm_uart0: cdc_acm_uart0 {
21		compatible = "zephyr,cdc-acm-uart";
22		label = "Zephyr USB CDC-ACM";
23	};
24};
25