Skip to content

Commit 3d2713b

Browse files
committed
samples: usb: cdc_acm_bridge: Add overlay for ESP32-S3-GEEK
Add an overlay to use the Waveshare ESP32-S3-GEEK dongle as a USB-to-serial adapter. Signed-off-by: Chen Xingyu <[email protected]>
1 parent 3603eaa commit 3d2713b

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* Copyright (c) 2025 Chen Xingyu <[email protected]>
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
/ {
7+
uart-bridge0 {
8+
compatible = "zephyr,uart-bridge";
9+
peers = <&cdc_acm_uart0 &uart0>;
10+
};
11+
};
12+
13+
&usb_serial {
14+
status = "disabled";
15+
};
16+
17+
&zephyr_udc0 {
18+
status = "okay";
19+
20+
cdc_acm_uart0: cdc_acm_uart0 {
21+
compatible = "zephyr,cdc-acm-uart";
22+
label = "Zephyr USB CDC-ACM";
23+
};
24+
};

0 commit comments

Comments
 (0)