-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update USB library with esp32sx host and OTG dual-mode support
`USB::begin()` now requires parameter indicating mode (device or host)
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule USB
updated
22 files
+4 −2 | component.mk | |
+5 −1 | samples/Basic_Device/app/application.cpp | |
+24 −24 | samples/Basic_Device/basic_device.usbcfg | |
+3 −3 | samples/Basic_Host/app/application.cpp | |
+1 −1 | samples/Basic_Host/component.mk | |
+1 −1 | samples/CDC_MSC_HID_Host/app/application.cpp | |
+1 −1 | samples/HID_Composite_Device/app/application.cpp | |
+17 −47 | src/Arch/Esp32/init.cpp | |
+2 −1 | src/Arch/Host/init.cpp | |
+2 −1 | src/Arch/Rp2040/init.cpp | |
+68 −15 | src/USB.cpp | |
+14 −1 | src/USB.h | |
+10 −6 | src/USB/CDC/Device.cpp | |
+2 −2 | src/USB/CDC/Device.h | |
+2 −1 | src/USB/CDC/UsbSerial.cpp | |
+1 −0 | src/USB/CDC/UsbSerial.h | |
+38 −0 | src/USB/Descriptors.cpp | |
+2 −1 | src/USB/MSC/Device.cpp | |
+6 −0 | src/USB/VENDOR/xbox.cpp | |
+0 −0 | src/USB/VENDOR/xbox.h | |
+1 −1 | tinyusb | |
+174 −26 | tinyusb.patch |
This file contains 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