Skip to content

Commit

Permalink
Merge pull request #7 from kkitayam/tinyusb_1.5.0
Browse files Browse the repository at this point in the history
Update tinyusb to 1.5.0
  • Loading branch information
kkitayam committed Oct 1, 2023
2 parents 2a5adbe + cb4f685 commit b46e256
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ $ cmake --build build_pico

# License

- Procject's source code files are licensed under MIT license.
- Project's source code files are licensed under MIT license.
- [TinyUSB](https://github.com/hathach/tinyusb) is licensed under the MIT license.
- [CMSIS](https://github.com/ARM-software/CMSIS_5) is licensed under the Apache 2.0 license.
2 changes: 1 addition & 1 deletion lib/tinyusb
Submodule tinyusb updated 68 files
+2 −0 src/class/audio/audio.h
+5 −1 src/class/audio/audio_device.c
+25 −13 src/class/cdc/cdc.h
+5 −8 src/class/cdc/cdc_device.c
+2 −3 src/class/cdc/cdc_device.h
+414 −84 src/class/cdc/cdc_host.c
+135 −68 src/class/cdc/cdc_host.h
+1 −1 src/class/cdc/cdc_rndis_host.c
+9 −0 src/class/hid/hid.h
+1 −1 src/class/hid/hid_device.c
+27 −2 src/class/hid/hid_device.h
+2 −1 src/class/hid/hid_host.c
+1 −1 src/class/hid/hid_host.h
+54 −28 src/class/msc/msc_host.c
+15 −8 src/class/msc/msc_host.h
+1 −1 src/class/net/ecm_rndis_device.c
+1 −1 src/class/net/ncm_device.c
+1 −1 src/class/usbtmc/usbtmc.h
+42 −45 src/class/usbtmc/usbtmc_device.c
+1 −1 src/class/usbtmc/usbtmc_device.h
+79 −0 src/class/video/video.h
+171 −65 src/class/video/video_device.c
+2 −2 src/common/tusb_compiler.h
+9 −9 src/common/tusb_debug.h
+271 −213 src/common/tusb_fifo.c
+79 −24 src/common/tusb_fifo.h
+18 −0 src/common/tusb_mcu.h
+109 −1 src/common/tusb_private.h
+42 −2 src/common/tusb_types.h
+13 −17 src/device/usbd.c
+11 −9 src/device/usbd.h
+105 −87 src/host/usbh.c
+9 −5 src/host/usbh.h
+5 −0 src/host/usbh_classdriver.h
+14 −7 src/osal/osal.h
+56 −28 src/osal/osal_freertos.h
+12 −0 src/osal/osal_none.h
+1 −1 src/osal/osal_rtthread.h
+182 −96 src/portable/bridgetek/ft9xx/dcd_ft9xx.c
+1 −1 src/portable/dialog/da146xx/dcd_da146xx.c
+3 −3 src/portable/ehci/ehci.c
+5 −5 src/portable/ehci/ehci.h
+17 −1 src/portable/espressif/esp32sx/dcd_esp32sx.c
+786 −0 src/portable/microchip/pic/dcd_pic.c
+3 −3 src/portable/microchip/pic32mz/usbhs_registers.h
+2 −2 src/portable/microchip/samd/dcd_samd.c
+3 −3 src/portable/microchip/samx7x/dcd_samx7x.c
+3 −2 src/portable/nordic/nrf5x/dcd_nrf5x.c
+1 −1 src/portable/nuvoton/nuc505/dcd_nuc505.c
+79 −52 src/portable/nxp/lpc_ip3511/dcd_lpc_ip3511.c
+1 −1 src/portable/ohci/ohci.c
+1 −1 src/portable/ohci/ohci.h
+109 −79 src/portable/raspberrypi/rp2040/dcd_rp2040.c
+300 −287 src/portable/raspberrypi/rp2040/hcd_rp2040.c
+131 −35 src/portable/raspberrypi/rp2040/rp2040_usb.c
+51 −17 src/portable/raspberrypi/rp2040/rp2040_usb.h
+1 −1 src/portable/renesas/usba/hcd_usba.c
+14 −4 src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c
+4 −0 src/portable/st/stm32_fsdev/dcd_stm32_fsdev_pvt_st.h
+1 −1 src/portable/sunxi/dcd_sunxi_musb.c
+1 −1 src/portable/sunxi/musb_def.h
+7 −4 src/portable/synopsys/dwc2/dcd_dwc2.c
+13 −3 src/portable/synopsys/dwc2/dwc2_stm32.h
+1 −1 src/portable/valentyusb/eptri/dcd_eptri.c
+345 −0 src/portable/wch/ch32v307/ch32_usbhs_reg.h
+391 −0 src/portable/wch/ch32v307/dcd_usbhs.c
+226 −17 src/tusb.c
+17 −7 src/tusb_option.h

0 comments on commit b46e256

Please sign in to comment.