| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-03-16 | Fix DSTS_FNSOF in dwc2.c | Reinhard Panhuber | |
| 2022-03-14 | Merge remote-tracking branch 'upstream/add-sof-isr' into add-sof-isr | Reinhard Panhuber | |
| 2022-03-14 | Add SOF callback function for feedback value determination in uac - wip! | Reinhard Panhuber | |
| 2022-03-14 | Merge branch 'master' into add-sof-isr | Ha Thach | |
| 2022-03-07 | added dcd_sof_enable() stubs for all other ports | hathach | |
| 2022-03-07 | implement dcd_sof_enable() for rp2040 | hathach | |
| 2022-03-07 | remove broadcom/synopssy (repalced by synopsys/dwc2) | hathach | |
| 2022-03-07 | Merge pull request #1379 from Qianhao2579/master | Ha Thach | |
| Modify the wrong macro definition code | |||
| 2022-03-07 | Merge pull request #1374 from kasjer/kasjer/stm32wb55 | Ha Thach | |
| stm32wb55 support | |||
| 2022-03-07 | Add support for STM32WB mcu | Jerzy Kasenberg | |
| 2022-03-07 | Modify the wrong macro definition code | QianHao | |
| 2022-03-04 | Merge pull request #1369 from tannewt/host_string_desc | Ha Thach | |
| Add host string descriptor functions | |||
| 2022-03-04 | fix naming, and build | hathach | |
| 2022-03-04 | correct qhd and qtd count for ehci/ohci | hathach | |
| 2022-03-04 | rename HCD_MAX_XFER to CFG_TUH_ENDPOINT_MAX | hathach | |
| minor clean up | |||
| 2022-03-04 | Merge pull request #1370 from hathach/fix-esp-idf | Ha Thach | |
| fix build with esp32s2, also use dwc2 for esp example | |||
| 2022-03-04 | fix build with esp32s2, also use dwc2 for esp example | hathach | |
| 2022-03-03 | Add host string descriptor functions | Scott Shawcroft | |
| Plus typo fixes, GCC11 array bounds fix, snprintf for malloc-free debug and pragmas for alignment checks. | |||
| 2022-02-28 | Merge pull request #1343 from Daft-Freak/patch-1 | Ha Thach | |
| Open OUT endpoint for HID host | |||
| 2022-02-26 | Merge pull request #1354 from hathach/mcu-specific | Ha Thach | |
| Mcu specific | |||
| 2022-02-26 | Merge pull request #1352 from ETCLabs/fix-ehci-isr-status-clear-error | Ha Thach | |
| Updated the clearing of the status register bits to use a straight '=… | |||
| 2022-02-26 | add TUP_USBIP_DWC2 | hathach | |
| 2022-02-26 | more internal rename | hathach | |
| 2022-02-26 | mcu specific rename | hathach | |
| 2022-02-26 | Merge pull request #1311 from Wini-Buh/CCRX_Ext | Ha Thach | |
| Solve problems with CCRX toolchain | |||
| 2022-02-25 | Updated the clearing of the status register bits to use a straight '=', ↵ | Tom Peterson | |
| rather than an '|='. Use of the latter caused an extra, unwanted read of the status register before the write-to-clear operation, which, in some cases, allowed new status bits to assert (relative to the initial read of the status register two statements earlier), and then be cleared blindly and unconditionally during the write-back. This had the potential (and, in my case, observed) effect of dropping the handling of an enabled interrupt. Ultimately, the system would lock up in a busy state, with no hope of clearing the condition. See Issue #1339 for more information. | |||
| 2022-02-25 | more symbol rename | hathach | |
| 2022-02-25 | internal symbol rename | hathach | |
| 2022-02-25 | rename and move dcd_attr.h to tusb_mcu_attr.h | hathach | |
| 2022-02-25 | rename TUSB_OPT_HOST_ENABLED to CFG_TUH_ENABLED | hathach | |
| 2022-02-25 | rename TUSB_OPT_DEVICE_ENABLED to CFG_TUD_ENABLED | hathach | |
| TUSB_OPT_DEVICE_ENABLED still usable for backward compatible | |||
| 2022-02-25 | improve rphort management for usbd | hathach | |
| 2022-02-23 | Support interrupt OUT in RP2040 HCD | Charlie Birks | |
| 2022-02-22 | Merge pull request #1280 from kasjer/kasjer/nrf5x-dma-race | Ha Thach | |
| nrf5x: Fix DMA access race condition | |||
| 2022-02-09 | Merge pull request #1304 from kkitayam/add_hcd_for_frdm_kl25z | Ha Thach | |
| Add hcd driver for frdm kl25z | |||
| 2022-02-02 | Merge branch 'hathach:master' into CCRX_Ext | Wini-Buh | |
| 2022-02-02 | Merge pull request #1291 from kasjer/kasjer/da1469x-fix-resume | Ha Thach | |
| da1469x: fix resume | |||
| 2022-02-01 | Merge branch 'CCRX_Ext' of https://github.com/Wini-Buh/tinyusb into CCRX_Ext | Roland | |
| 2022-02-01 | Modifications for CCRX toolchain | Roland | |
| 2022-01-28 | OHCI: Fix array out of bounds issue | Ryzee119 | |
| If using a USB hub, a request outside the array size can occur Original line: https://github.com/hathach/tinyusb/blob/ffb257ac17f162bc5a4c26596d7a1e954db98aa5/src/portable/ohci/ohci.h#L162 It can happen in a few places but one such example is here: https://github.com/hathach/tinyusb/blob/ffb257ac17f162bc5a4c26596d7a1e954db98aa5/src/portable/ohci/ohci.c#L460 ie. if HUB address is 5, this would be an array index out of bounds on control endpoints as `CFG_TUH_DEVICE_MAX+1` is only 5. This fix just includes num of hubs in the reserve array size. Fixing locally fixed this issue. | |||
| 2022-01-27 | Fix handling for pending transfers | kkitayam | |
| 2022-01-27 | Change hcd_edpt_xfer to send at the next SOF | kkitayam | |
| 2022-01-27 | Add handling for NAK response | kkitayam | |
| 2022-01-27 | Fix handling control transfer | kkitayam | |
| 2022-01-27 | Add HCD functions for KL25Z | kkitayam | |
| 2022-01-26 | fix mynewt build sunxi | hathach | |
| 2022-01-25 | Merge branch 'master' into master | Ha Thach | |
| 2022-01-20 | dcd_da1469x: Re-enable RX after resume | Jerzy Kasenberg | |
| Going to suspend states disable reception on non-0 RX endpoints. Now when USB resume condition is detected, all RX endpoints with pending transfers are resumed. | |||
| 2022-01-20 | dcd_da1469x: Fix over-run/under-run mask | Jerzy Kasenberg | |
| Bit mask enabling/disabling over-run/unde-run was shifted by one nibble, so interrupt was never enabled. It did not force any issue as this situation could only happen on ISO endpoints without DMA. | |||
| 2022-01-19 | Merge pull request #1265 from kkitayam/add_hcd_for_renesas_rx | Ha Thach | |
| Add HCD driver for Renesas RX | |||
