| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-12-29 | Merge branch 'master' of https://github.com/t123yh/tinyusb into t123yh-master | hathach | |
| 2021-12-27 | Fix hcd_edpt_clear_stall | kkitayam | |
| 2021-12-27 | Add statements for control VBUS | kkitayam | |
| 2021-12-27 | Add hcd for Renesas RX | kkitayam | |
| 2021-12-27 | Fix Mynewt build for Microchip PIC32MZ devices. | Jerzy Kasenberg | |
| definition of DEBUG breaks Microchip pic32 builds for Mynewt. When MCU is not VALENTYUSB_EPTRI there is no need to have any preprocessor definitions. It may not look like a big deal but for xc32 builds, compiler automatically force-includes some file that have structure with field name DEBUG that result in build error in dcd_eptri.c when this file is not really needed. Moving DEBUG and LOG_USB few lines down should not break eptri builds. | |||
| 2021-12-15 | Update midi_test endpoints and FT9xx code | Gordon McNab | |
| 2021-12-09 | Merge pull request #1233 from vmilea/rp2040_bugfix/ep_close | Ha Thach | |
| Handle the closing of endpoints on RP2040 | |||
| 2021-12-09 | Merge pull request #1221 from kasjer/kasjer/fix-nrf5x-vbus-race-condition | Ha Thach | |
| nrf5x: Fix race condition during startup | |||
| 2021-12-08 | Handle xfer events before closing EP | Valentin Milea | |
| 2021-12-08 | Update code to implement changes from upstream master | Gordon McNab | |
| 2021-12-08 | Merge branch 'master' into port-ft90x | Gordon McNab | |
| 2021-12-08 | nrf5x: Fix race condition during startup | Jerzy Kasenberg | |
| When NRF5x device is reset by software (after DFU for example), power event is ready from the beginning. When power interrupt is triggered before tud_init() finished USBD_IRQn is enabled before it would be enabled in tud_init(). This in turn may result in BUS RESET event being sent from USB interrupt to USB task when queue is not initialized yet. This scenario often happens in Mynewt build where queue creation takes more time. To prevent this scenario USBD_IRQn is not enabled in power event interrupt handler before dcd_init() was called. | |||
| 2021-12-07 | Remove buffer reclaim logs | Valentin Milea | |
| 2021-12-07 | Merge pull request #1213 from kkitayam/add_hcd_for_msp_exp432e401y | Ha Thach | |
| Add a HCD driver for MSP-EXP432E401Y | |||
| 2021-12-06 | Fix handling of RXRDY bit | Yunhao Tian | |
| 2021-12-05 | Change FIFO size to 4KB (not sure) | Yunhao Tian | |
| The datasheet says 2KB FIFO, but accroding to many code examples, the F1C100s has at least 4KB of FIFO memory. This is working with cdc_msc example, but I'm not sure, this should be checked. | |||
| 2021-12-05 | Fix a typo that leads to incorrect RX handling | Yunhao Tian | |
| 2021-12-05 | Add FIFO size check | Yunhao Tian | |
| 2021-12-05 | Close all EPs upon reset | Yunhao Tian | |
| 2021-12-05 | Save current EP before querying other EPs | Yunhao Tian | |
| 2021-12-04 | Handle the closing of endpoints on RP2040 | Valentin Milea | |
| 2021-12-04 | Add BSP support for F1C100s | Yunhao Tian | |
| 2021-12-04 | Modify sunxi_musb code | Yunhao Tian | |
| 2021-12-04 | Fix buffer overrun at pipe_read_packet() | kkitayam | |
| 2021-12-04 | Fix memory overrun at pipe_read_packet() | kkitayam | |
| 2021-12-03 | Merge branch 'master' into add_hcd_for_msp_exp432e401y | Ha Thach | |
| 2021-12-02 | more chipidea | hathach | |
| 2021-12-01 | more work to abstract chipidea driver | hathach | |
| 2021-12-01 | more ci abstract | hathach | |
| 2021-12-01 | Add support for Allwinner F1Cx00s family | Yunhao Tian | |
| Allwinner F1Cx00s family is a series of SoCs with Mentor MUSB controller and HS phy. It comes with a slightly different register space layout, and some quirks, so it's not multiplexed with the existing musb support library. This library currently requires to be compiled with https://github.com/hongxuyao/F1C100s_with_Keil_RTX4_emWin5 | |||
| 2021-12-01 | add chipidea highspeed controller | hathach | |
| add warning to transdimension for the rename | |||
| 2021-11-30 | Add register settings to handle a HUB | kkitayam | |
| 2021-11-30 | improve hcd_device_close() for rp2040 | hathach | |
| 2021-11-30 | implement hcd device close | rppicomidi | |
| 2021-11-29 | Add hcd_musb.c | kkitayam | |
| 2021-11-27 | Add a compile condition for dcd | kkitayam | |
| 2021-11-23 | more clean up | hathach | |
| 2021-11-23 | clean up | hathach | |
| 2021-11-23 | fix nrf easy dma race condition | hathach | |
| 2021-11-22 | Merge pull request #1206 from hathach/bcm-dwc2-address | Ha Thach | |
| Bcm dwc2 address | |||
| 2021-11-22 | use USB_OTG_GLOBAL_BASE instead of hard code value | hathach | |
| 2021-11-17 | clean up | hathach | |
| 2021-11-15 | set DCFG_XCVRDLY when using external ULPI highspeed phy | hathach | |
| 2021-11-08 | add missing musb type file | hathach | |
| 2021-11-08 | rename to simply OPT_MCU_MSP432E4, add msp432e to ci | hathach | |
| 2021-11-08 | musb work well with tm4c123 | hathach | |
| 2021-11-07 | Fix DCD_EVENT_XFER_COMPLETE was signaled, even after EP is closed | kkitayam | |
| 2021-11-06 | Implement dcd_edpt_xfer_fifo for dcd_musb | kkitayam | |
| 2021-11-06 | Add dcd_musb.c | kkitayam | |
| 2021-11-05 | RP2040 HCD: Move invalid ep->active assert in hw_trans_complete. The check ↵ | Liam Fraser | |
| for ep->active should only happen if a setup packet was just sent. Otherwise the transaction is handled in hw_handle_buff_status. | |||
