summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-11-16Merge pull request #1738 from kaysievers/midi-port-namesHa Thach
MIDI: support port name strings
2022-11-11MIDI: support port name stringsKay Sievers
This allows to set custom descriptive names for virtual MIDI ports/cables. A MIDI port offers different functionality on the same physical USB device. The names make it easier to distinguish one from the other.
2022-11-07Fix DCD build.Mengsk
2022-11-07Merge branch 'master' of https://github.com/hathach/tinyusb into bsp_412Mengsk
2022-11-07Add support for STM32L412.Mengsk
2022-11-04fix -wconversion-int and add minor commenthathach
2022-11-04Merge branch 'master' into rp2040-hcd-bulkHa Thach
2022-10-25Merge pull request #1698 from battlesnake/fix-attrs-on-struct-memberHa Thach
do not apply storage attributes to member of struct
2022-10-24keep alignment specMark K Cowan
2022-10-24Merge pull request #1676 from tswan-quasi/masterHa Thach
dcd_lpc_ip3511: isochronous support and endpoint accidental write fix
2022-10-24use dummy for all ZLP for ip3511, fix lpc55 build with DEBUG=1hathach
2022-10-21unused (void) casttswan-quasi
2022-10-22Merge pull request #1690 from tore-espressif/fix/espressif/iso_transfersHa Thach
esp: Fix Isochronous transfers
2022-10-20do not apply storage attributes to member of structMark K Cowan
2022-10-20typo fixtswan-quasi
2022-10-20dummy buffer only on EP0 OUT ZLPstswan-quasi
2022-10-19Merge pull request #1680 from LynnL4/port-stm32u5xxHa Thach
Port stm32u5xx
2022-10-19Merge pull request #1668 from kkitayam/add_support_for_mjpegHa Thach
Add support for MJPEG on UVC
2022-10-19Merge pull request #1523 from maddyaby/dcd_edpt_openHa Thach
Allow more endpoint packet sizes for SAMD
2022-10-18esp: Fix Isochronous transfersTomas Rezucha
On ESP32-S2/S3 ISO transfers must be configured for even or odd frame. Closes https://github.com/hathach/tinyusb/issues/1382
2022-10-17minor renamehathach
2022-10-14Merge pull request #1646 from battlesnake/feedback-prototype-fixHa Thach
audio_device: prototype added for function referenced before use
2022-10-13(void) rhport for unused parametertswan-quasi
2022-10-13Add support for STM32U5 mcuLynnL4
2022-10-12double cast of pointer to remove errortswan-quasi
2022-10-12Fix pointer type to calculate streaming parameterkkitayam
2022-10-11lpc55s69 isochronous, dummy address for endpoint buffers to prevent ↵tswan-quasi
accidental writes
2022-10-10Merge pull request #1623 from SudoMaker/masterHa Thach
Initial PIC32MM/MX & PIC24 support
2022-10-07Fix max payload size to clip at 1023kkitayam
2022-10-06Microchip PIC24/dsPIC33 device mode supportReimuNotMoe
2022-10-05Fix typo for log in dcd_rp2040.cmingpepe
2022-10-03Fix descriptor searchingkkitayam
2022-09-17audio_device: prototype added for function referenced before useMark K Cowan
2022-09-13Fix compile errorskkitayam
2022-09-13Change images to MJPEGkkitayam
2022-09-13Merge pull request #1629 from jmark1m/masterHa Thach
Fix bug #1628 by preventing shared irq slots for filling up
2022-09-13nrf5x: Fix reception of large ISO packetsJerzy Kasenberg
ISO packet size is up to 1023 for full speed device. Upon completion of ISO reception, reported length of incoming packet was truncated to one byte only. This results in incorrect data stream for higher bit rates 48 samples * 4 bytes per sample * 2 channels = 384 bytes of data and 128 was reported. There is no change in logic extending xact_len to uint16_t fixes the issue.
2022-09-13re-added code in pr 1438 to fix compile with h7 with 1 usb otghathach
2022-09-07Fix bug #1628 by preventing shared irq slots for filling upjmark1m
2022-09-03Initial PIC32MM/MX & PIC24 supportReimuNotMoe
2022-08-26nrf5x: Fix endpoint internal state when closedJerzy Kasenberg
Field started (regardind transfer) was only cleaed when transfer was finished. For audio devices set interface is called many times. When there is no audio (silence) set interface requests zero lenght bandwithd that in turn calls dcd_edpt_close(). When endpoint is closed due to set interface request transfer should not longer be started since it will block next start transfer with assert. This just sets 'started' to false when endpoint is closed.
2022-08-19Merge pull request #1569 from hathach/release-0.14.0Ha Thach
increase version to 0.14.0 for release
2022-08-17Merge pull request #1603 from Ryzee119/hub_improvHa Thach
Host hub clear port and device interrupts
2022-08-16Hub: Clear other port feature changesRyzee119
2022-08-16Hub: Handle hub device status change interruptRyzee119
2022-08-15Merge pull request #1489 from kasjer/kasjer/fix-nrf5x-dma-accessHa Thach
nrf5x: Fix DMA access
2022-08-15Hub: Rename port status callback to be more genericRyzee119
2022-08-15Hub: Expand hub helpers to handle device eventsRyzee119
2022-08-09dfu: Allow DFU coexistence with other interfacesJerzy Kasenberg
dfu_moded_open() only works correct when its called on DFU interface descriptor. It means that DFU is the only one interface in configuration or driver is called after all others interface drivers were tried and gave up. If other interface is supported and but driver for DFU is called first (this is the case for BTH and RNDIS). Code after while loop (that was not entered) has an TU_ASSERT that will make set_configuration to fail. Now TU_VERIFY is called first to make sure open code is called for DFU only and not other interface descriptors like in other drivers.
2022-08-01fix issue with TUD_OPT_HIGH_SPEEDhathach