Skip to content
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

Upgrade to Adafruit TinyUSB 3.1.5 #2206

Merged
merged 1 commit into from
Jun 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/Adafruit_TinyUSB_Arduino
Submodule Adafruit_TinyUSB_Arduino updated 76 files
+51 −12 .github/workflows/githubci.yml
+1 −1 examples/CDC/cdc_multi/cdc_multi.ino
+4 −0 examples/DualRole/Simple/device_info_max3421e/device_info_max3421e.ino
+1 −1 library.properties
+25 −0 src/class/audio/audio.h
+74 −54 src/class/audio/audio_device.c
+13 −16 src/class/audio/audio_device.h
+5 −2 src/class/bth/bth_device.c
+1 −0 src/class/bth/bth_device.h
+38 −9 src/class/cdc/cdc_device.c
+7 −0 src/class/cdc/cdc_device.h
+15 −5 src/class/cdc/cdc_host.c
+2 −1 src/class/cdc/cdc_host.h
+5 −2 src/class/dfu/dfu_device.c
+1 −0 src/class/dfu/dfu_device.h
+5 −2 src/class/dfu/dfu_rt_device.c
+1 −0 src/class/dfu/dfu_rt_device.h
+297 −201 src/class/hid/hid.h
+175 −188 src/class/hid/hid_device.c
+235 −0 src/class/hid/hid_device.h
+52 −3 src/class/hid/hid_host.c
+10 −1 src/class/hid/hid_host.h
+30 −6 src/class/midi/midi_device.c
+1 −0 src/class/midi/midi_device.h
+24 −2 src/class/msc/msc_device.c
+4 −0 src/class/msc/msc_device.h
+7 −1 src/class/msc/msc_host.c
+2 −1 src/class/msc/msc_host.h
+5 −2 src/class/net/ecm_rndis_device.c
+105 −11 src/class/net/ncm.h
+749 −377 src/class/net/ncm_device.c
+7 −20 src/class/net/net_device.h
+25 −0 src/class/usbtmc/usbtmc.h
+36 −6 src/class/usbtmc/usbtmc_device.c
+19 −13 src/class/usbtmc/usbtmc_device.h
+46 −8 src/class/vendor/vendor_device.c
+1 −0 src/class/vendor/vendor_device.h
+50 −11 src/class/video/video_device.c
+1 −0 src/class/video/video_device.h
+1 −0 src/common/tusb_common.h
+2 −1 src/common/tusb_compiler.h
+1 −1 src/common/tusb_debug.h
+29 −2 src/common/tusb_fifo.c
+9 −16 src/common/tusb_fifo.h
+70 −8 src/common/tusb_mcu.h
+9 −10 src/common/tusb_private.h
+10 −21 src/common/tusb_types.h
+4 −4 src/common/tusb_verify.h
+23 −13 src/device/dcd.h
+252 −134 src/device/usbd.c
+22 −8 src/device/usbd.h
+13 −11 src/device/usbd_pvt.h
+4 −1 src/host/hcd.h
+6 −2 src/host/hub.c
+6 −7 src/host/hub.h
+167 −112 src/host/usbh.c
+20 −2 src/host/usbh.h
+2 −4 src/host/usbh_pvt.h
+3 −0 src/osal/osal.h
+17 −2 src/osal/osal_freertos.h
+31 −30 src/osal/osal_mynewt.h
+16 −1 src/osal/osal_none.h
+43 −63 src/osal/osal_pico.h
+36 −24 src/osal/osal_rtthread.h
+32 −29 src/osal/osal_rtx4.h
+209 −141 src/portable/analog/max3421/hcd_max3421.c
+8 −3 src/portable/microchip/samd/dcd_samd.c
+270 −355 src/portable/nordic/nrf5x/dcd_nrf5x.c
+13 −0 src/portable/raspberrypi/rp2040/dcd_rp2040.c
+14 −6 src/portable/raspberrypi/rp2040/hcd_rp2040.c
+231 −201 src/portable/synopsys/dwc2/dcd_dwc2.c
+25 −8 src/portable/synopsys/dwc2/dwc2_type.h
+31 −35 src/tusb.c
+0 −2 src/tusb.h
+55 −23 src/tusb_option.h
+1 −0 tools/update-usbh_helper.py