forked from hathach/tinyusb
-
Notifications
You must be signed in to change notification settings - Fork 37
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
Open
igi540
wants to merge
1
commit into
release/v0.18
Choose a base branch
from
feat/tinyusb_esp32h4_support
base: release/v0.18
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
7d6744b
to
85bde45
Compare
fbd4fdc
to
f561d9e
Compare
f561d9e
to
2d402c1
Compare
2d402c1
to
d3fd3af
Compare
roma-jam
reviewed
Sep 11, 2025
@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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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