Created
November 12, 2025 15:26
-
-
Save szczys/2d455cf39a7566dd5b4921cf125fadb2 to your computer and use it in GitHub Desktop.
Zephyr overlay file for using USB-CDC with the Raspberry Pi Pico2 w
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| / { | |
| chosen { | |
| zephyr,shell = &cdc_acm_uart0; | |
| zephyr,console = &cdc_acm_uart0; | |
| }; | |
| }; | |
| &zephyr_udc0 { | |
| cdc_acm_uart0: cdc_acm_uart0 { | |
| status = "okay"; | |
| compatible = "zephyr,cdc-acm-uart"; | |
| label = "Zephyr USB CDC-ACM"; | |
| }; | |
| }; |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This
app.overlaygets the Raspberry Pi Pico2 w working with the Zephyr USB-CDC sample.