summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2023-02-10update version to 0.15.0hathach
add changelog
2023-02-04change length in tud_hid_report_complete_cb() from uint8 to uint16hathach
2023-02-01Merge pull request #1877 from hathach/fix-host-cdc-without-iadHa Thach
Fix host cdc without iad
2023-01-31Merge pull request #1779 from P33M/rp2040_device_babble_fixHa Thach
rp2040: avoid device-mode state machine hang
2023-01-31fix typoshathach
2023-01-31fix host issue when mounting an CDC device without IADhathach
2023-01-31move errata to end of c filehathach
2023-01-31add e15 prefix or walkaround related functions, also minor refactorhathach
2023-01-31minor clean uphathach
2023-01-30Merge pull request #1768 from ftdigdm/port-ft90xHa Thach
Port ft90x
2023-01-30Merge branch 'master' into support-iarhathach
2023-01-30hardcoded configPRIO_BITS for IAR build to pass CIhathach
2023-01-30fix typohathach
2023-01-30Merge branch 'master' into port-ft90xHa Thach
2023-01-24rp2040: shuffle hw_endpoint membersJonathan Bell
Ordering by element size prevents alignment holes, and as a consequence the host mode version of the struct is the same size as device, as pad bytes at the end are used instead.
2023-01-24rp2040: avoid device-mode state machine hangJonathan Bell
Don't mark IN buffers as available during the last 200us of a full-speed frame. This avoids a situation seen with the USB2.0 hub on a Raspberry Pi 4 where a late IN token before the next full-speed SOF can cause port babble and a corrupt ACK packet. The nature of the data corruption has a chance to cause device lockup. Use the next SOF to mark delayed buffers as available. This reduces available Bulk IN bandwidth by approximately 20%, and requires that the SOF interrupt is enabled while these transfers are ongoing. Inherit the top-level enable from the corresponding Pico-SDK flag. Applications that will not use the device in a situation where it could be plugged into a Pi 4 or Pi 400 (for example, when directly connected to a commodity hub or other host) can turn off the flag in the SDK. v2: use a field in hw_endpoint to mark pending. v3: Partial rewrite following review comments - Stub functions out if the workaround is not required - Only force-enable SOF while any vulnerable endpoints are active - Respect dcd_sof_enable() functionality - Get rid of all but necessary ifdef hackery - Fix a bug where the "endpoint lock" was used with an uninitialised pointer.
2023-01-23rp2040: export hw_endpoint_start_next_buffer() and hw_endpoint_lock_update()Jonathan Bell
The next change to the driver requires the export of these functions. Leave the lock unimplemented for now. Also move hw_set and hw_clear aliases into the top-level header file.
2023-01-21update stm32f1 to support iar buildhathach
2023-01-20fix warnings with arithmetic on void* pointerhathach
2023-01-20add helper tu_desc_find/find2/find3hathach
2023-01-18Merge pull request #1847 from HiFiPhile/dwc2_iarHa Thach
dwc2: fix iar warnings
2023-01-12Merge pull request #1405 from gregdavill/ch32v307Ha Thach
Add WCH CH32V307 port
2023-01-12add TUP_RHPORT_HIGHSPEED for ch32v307hathach
2023-01-12add dcd_remote_wakeup() stubhathach
2023-01-12rename driver with dcd_ to be consitent with other portshathach
2023-01-12add note for openocd with wch, also add wch-riscv.cfghathach
2023-01-11dwc2: fix IAR warnings.MasterPhi
2023-01-09Merge pull request #1843 from HiFiPhile/ip3511Ha Thach
ip3511 : Fix IAR build.
2023-01-08ip3511 : Fix IAR build.MasterPhi
2023-01-07Merge branch 'master' into ch32v307Ha Thach
2023-01-07Merge pull request #1820 from Staacks/masterHa Thach
Fix UVC probe and commit on MacOS
2023-01-07minor clean uphathach
2023-01-07remove _ff_overflowed() due to lack of usehathach
2023-01-07simplify _ff_correct_read_index()hathach
2023-01-07reverse idx2ptr() arguments to be consistenthathach
2023-01-07update advance_pointer/backward_pointer to use depth instead of fifo, also ↵hathach
rename to advance/backward_index
2023-01-07simplify _tu_fifo_count() and _tu_fifo_remaining(), also rename to ↵hathach
_ff_count() and _ff_remaining()
2023-01-07simplify and remove _tu_fifo_empty, _tu_fifo_full. Also correct full ↵hathach
condition check
2023-01-07minor clean uphathach
2023-01-06minimize tu_fifo size to 16hathach
- remove non_used_index_space - packed overwritable with item_size
2023-01-06minor clean uphathach
2023-01-06Merge branch 'master' into fix-fifo-memory-overflowhathach
2023-01-06Merge pull request #1837 from pete-pjb/masterHa Thach
Fix typo in audio.h. Specifiy _ctrl_xfer struct in CFG_TUSB_MEM_SECTION in usbh.c
2023-01-04More warning fixesMengsk
2023-01-03Fix typo in audio.h. Specifiy _ctrl_xfer struct in CFG_TUSB_MEM_SECTIONpete-pjb
Add NULL check to loop in list_remove_qhd_by_addr() function in ehci.c
2023-01-02Fix IAR warning: Warning[Pe381]: extra ";" ignoredMengsk
2022-12-27Fix UVC probe and commit on MacOSStaacks
2022-12-27fix ncm warninghathach
2022-12-26Merge pull request #1801 from tyustli/tyustli_sem_resetHa Thach
[add] semaphore reset support for rt-thread
2022-12-24add tuh_cdc_peek()hathach