| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-03-02 | fix(dcd/dwc2): Do not modify FS PHY registers on HS PHY ESP32-P4 | Tomas Rezucha | |
| 2026-03-01 | Merge pull request #3514 from sauloverissimo/fix/midi-device-cable-demux | Zixun LI | |
| midi device: add cable-aware stream read (tud_midi_n_demux_stream_read) | |||
| 2026-02-25 | midi device: add cable-aware stream read (tud_midi_n_demux_stream_read) | Saulo Veríssimo | |
| The existing tud_midi_n_stream_read() accepts a cable_num parameter but ignores it — all cables share a single FIFO and stream parser state, so data from different virtual cables is silently mixed together. Add tud_midi_n_demux_stream_read() which returns the cable number of the data that was actually read. It peeks at each USB-MIDI event packet header before consuming it and stops when the next packet belongs to a different cable, allowing callers to dispatch per-cable without losing data. Implementation details: - Mirrors the host-side tuh_midi_stream_read() approach: tu_edpt_stream_peek for cable inspection, CIN-based byte count (USB MIDI 1.0 Table 4-1), leftover handling via existing midi_driver_stream_t - *p_cable_num initialized to 0xff sentinel so callers can detect "no data" even when return value is 0 - Cable-change check (total_read > 0 guard) covers both leftover-originated reads and freshly consumed packets - TU_VERIFY uses explicit != NULL comparisons, consistent with codebase style - Note: shares stream->buffer with tud_midi_n_stream_read(); do not mix calls on the same interface - Adds single-interface convenience wrapper tud_midi_demux_stream_read() Closes #1838 | |||
| 2026-02-25 | fix CDC host FTDI multiple channel loop | hathach | |
| fix typos for ftdi_process_set_config() add J-Link GDB + RTT logging instructions | |||
| 2026-02-23 | refactor: streamline high-speed PHY detection and configuration in DWC2 driver | hathach | |
| 2026-02-23 | refactor: improve high-speed PHY handling and FIFO configuration in DWC2 driver | hathach | |
| 2026-02-22 | Apply suggestions from code review | Zixun LI | |
| Co-authored-by: Copilot <[email protected]> | |||
| 2026-02-22 | refactor speed check | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-02-21 | check femtoPHY speed | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-02-21 | fix ci | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-02-20 | refactor config option | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-02-19 | Fix a couple indentations | Cédric Berger | |
| 2026-02-19 | Introduce TUH_CFGID_PHY_SPEED configure option | Cédric Berger | |
| 2026-02-19 | Better variable/function names | Cédric Berger | |
| 2026-02-14 | add(usbh.c): LOG1 debug message when no address available for hub | Roman Leonov | |
| 2026-02-13 | use CFG_TUD_CONFIGURE_DWC2_DEFAULT to make it easier to add more value | hathach | |
| 2026-02-13 | add CFG_TUD_VBUS_SENSE, that could allow to skip tud_configure() for fixed ↵ | hathach | |
| vbus sensing simplify dwc2_stm32_gccfg_cfg() using guid value | |||
| 2026-02-13 | Merge branch 'refs/heads/master' into dwc2_vbus | hathach | |
| 2026-02-11 | Merge remote-tracking branch 'origin/master' into msc_stall | hathach | |
| 2026-02-11 | device/msc: only defer prepare_cbw() from STATUS_SENT when EP OUT stalled | hathach | |
| 2026-02-11 | Update tusb_verify.h | Cédric Berger | |
| 2026-02-11 | Introduce CFG_TUSB_DEBUG_BREAKPOINT hook | Cédric Berger | |
| 2026-02-07 | minor update | hathach | |
| 2026-02-06 | adjust handle_xfer_in logic to simplify ZLP handling | hathach | |
| 2026-02-06 | Merge branch 'refs/heads/master' into musb_fix | hathach | |
| 2026-02-05 | Merge pull request #3472 from hathach/u0_fix | Ha Thach | |
| fix stm32u0 data stride | |||
| 2026-02-05 | reverse pma size check to reduce duplication | hathach | |
| 2026-02-03 | Fix DFU descriptor version from 1.0.1 (0x0101) to 1.1.0 (0x0110) | copilot-swe-agent[bot] | |
| Co-authored-by: hathach <[email protected]> | |||
| 2026-02-01 | Actually exit the loop in addition to logging. ENOTENOUGHCOFFEE | Cédric Berger | |
| 2026-02-01 | Limit events processed by tud_task_ext() / tuh_task_ext() | Cédric Berger | |
| 2026-01-31 | dwc2: add stm32n6 DMA regions | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-01-31 | dwc2: add vbus sense config | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-01-30 | dcd/dwc2: Fix SEDET unable to be cleared on stm32u5 | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-01-26 | fix stm32u0 data stride | Zixun LI | |
| Signed-off-by: Zixun LI <[email protected]> | |||
| 2026-01-26 | device/msc: skip command stage if EP out is stalled | Zixun LI | |
| Signed-off-by: Zixun LI <[email protected]> | |||
| 2026-01-24 | Fix macro directive for FSDEV of CH32V20x | Mitsumine Suzu | |
| 2026-01-16 | fix stream write racing | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-01-15 | dcd/musb: fix zlp IN | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-01-15 | dcd/musb: fix unaligned cast | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-01-14 | Merge remote-tracking branch 'tinyusb/master' into bsp_h7_tm4c | Zixun LI | |
| 2026-01-14 | remove no-fifo mode in edpt stream API | hathach | |
| update vendor_device.c for direct usbd xfer when either RX/TX BUFSIZE is 0 i.e CFG_TUD_VENDOR_TXRX_BUFFERED = 0 | |||
| 2026-01-14 | dcd/musb: fix IAR build | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-01-14 | bsp: add TI EK-TM4C1294XL | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-01-13 | Merge pull request #3424 from hathach/fifo_read_epsize | Ha Thach | |
| limit fifo read size to ep_bufsize regardless ep_buf is used or not | |||
| 2026-01-13 | Merge pull request #3439 from hathach/mtp_zlp | Ha Thach | |
| device/mtp: queue ZLP when needed | |||
| 2026-01-13 | minor clean up | hathach | |
| separate tud_mtp_data_send() and tud_mtp_data_receive() | |||
| 2026-01-12 | Fix compiler warning | Gabriel Chouinard | |
| 2026-01-12 | Merge branch 'refs/heads/master' into mtp_zlp | hathach | |
| 2026-01-10 | remove transfer_type from hw_endpoint | hathach | |
| 2026-01-09 | enable dedicated hwfifo for rp2 | hathach | |
