-
Notifications
You must be signed in to change notification settings - Fork 38
feat(usb): Add ESP32-H4 support in tinyusb #59
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
Conversation
7d6744b
to
85bde45
Compare
fbd4fdc
to
f561d9e
Compare
f561d9e
to
2d402c1
Compare
2d402c1
to
d3fd3af
Compare
@igi540 Please base this feature branch on Also please add H4 to the table in README.rst https://github.com/espressif/tinyusb/blob/master/README.rst |
d3fd3af
to
64f3c25
Compare
64f3c25
to
31d316d
Compare
15234fa
to
ec38d47
Compare
Hi @igi540, you can rebase now to unlock the CI. |
Add ESP32-H4 as a supported MCU in TinyUSB and wire it into build/runtime: - CMakeLists: map IDF target esp32h4 → OPT_MCU_ESP32H4, family=esp32sx - tusb_option.h: define OPT_MCU_ESP32H4 - tusb_mcu.h: enable DWC2 USBIP for H4 - dcd_dwc2.c: add H4 USB_WRAP field aliases (wrap_* → legacy names) - dwc2_esp32.h: add H4 controller entry (FS base/IRQ, ep caps) - family.c: include H4 in USB init/PHY setup - idf_component.yml: add esp32h4 target This enables TinyUSB examples to build for ESP32-H4.
ec38d47
to
ce70f24
Compare
@tore-espressif there was no changes since the last revision v0.18.0~4, so we can release another revision with H4 support. |
Add ESP32-H4 as a supported MCU in TinyUSB and wire it into build/runtime:
This enables TinyUSB examples to build for ESP32-H4.
Upstream PR: hathach#3252