-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Add Waveshare ESP32-S3-GEEK board #100588
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
d9ef400 to
2b26f26
Compare
| status = "okay"; | ||
| }; | ||
|
|
||
| zephyr_udc0: &usb_otg {}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just curious: No need for status = "okay"; on this board?
It will not be initialized unless Kconfig also enables USB.
It seems status = "okay"; on i.e. boards/espressif/esp32s3_devkitc/esp32s3_devkitc_procpu.dts.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, only one of usb_serial or usb_otg can be enabled at a time because they share the same USB port. On the DevKitC, the USB-to-serial function is provided by the on-board CP2102, so the SoC's internal usb_serial is not used, and the USB-C receptacle is intended for usb_otg.
On this dongle, however, the USB-A plug is the only way to program or access the console unless an external USB-to-serial adapter is attached. For this reason, the USB port is by default used for usb_serial.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very insightful, thank you! I am leaving the thread open for other reviewers.
|
CI is currently stuck on this: |
e221a9d to
3d2713b
Compare
Add support for the Waveshare ESP32-S3-GEEK USB dongle. It features an ESP32-S3R2 with 2 MB PSRAM, a 16 MB on-board Flash, a 1.14" LCD, and a microSD slot. Signed-off-by: Chen Xingyu <[email protected]>
Add an overlay to use the Waveshare ESP32-S3-GEEK dongle as a USB-to-serial adapter. Signed-off-by: Chen Xingyu <[email protected]>
3d2713b to
01d3f21
Compare
|



This PR adds support for the Waveshare ESP32-S3-GEEK USB dongle.
The board features an ESP32-S3R2 with 2 MB PSRAM, 16 MB on-board flash, a 1.14" LCD, and a microSD slot.
It also introduces an overlay for the
cdc_acm_bridgesample, allowing the dongle to be used as a USB-to-serial adapter.