summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2026-03-12correct default value for CFG_TUD_VENDOR_TX/RX_BUFSIZEhathach
2026-03-12also update metrics.json for prhathach
2026-03-12refactor(vendor/cdc): add CFG_TUD_CDC_RX_NEED_ZLP and CFG_TUD_VENDOR_RX_NEED_ZLPhathach
2026-03-12refactor(config): separate endpoint buffer sizes into RX and TX definitions ↵hathach
for clarity and flexibility
2026-03-11rename .rx_multiple_packet_transfer to .rx_need_zlphathach
2026-03-11Merge branch 'master' into zlp-hs-on-fshathach
2026-03-11Merge pull request #3352 from hathach/ep0_directHa Thach
Use EP0 buffer directly if it's large enough
2026-03-11refactor(usbd): replace `_usbd_ctrl_epbuf` with `usbd_get_ctrl_buf()` for ↵hathach
cleaner abstraction and consistency across modules
2026-03-11Merge branch 'master' into ep0_directhathach
2026-03-11Merge pull request #3548 from hathach/migrate-mcux-rtHa Thach
migrate imxrt to use new mcux-devices-rt
2026-03-11Merge branch 'master' into ep0_directhathach
# Conflicts: # hw/bsp/same7x/boards/same70_qmtech/board.cmake # hw/bsp/same7x/boards/same70_xplained/board.cmake # hw/bsp/same7x/family.cmake
2026-03-11migrate imxrt to use new mcux-devices-rthathach
2026-03-11Merge pull request #3545 from hathach/remove-div-tusb-fifoHa Thach
remove expensive div in HWFIFO_ADDR_NEXT_N()
2026-03-11Merge pull request #3546 from michael-membrowse/masterHa Thach
fix secret issue in membrowse-comment
2026-03-10fix secret issue in membrowse-commentMichael Rogov Papernov
2026-03-10Merge pull request #3530 from hathach/hcd_ip3516Ha Thach
Add IP3516 HCD support
2026-03-10remove expensive div in HWFIFO_ADDR_NEXT_N()hathach
2026-03-10fix make lpc51 buildhathach
2026-03-10Merge pull request #3540 from michael-membrowse/membrowse_commitHa Thach
MemBrowse: PR comment github workflow with message template
2026-03-10fix typohathach
2026-03-10update lpc55 bsp to use mcx config tool, move led/button/uart and usb port ↵hathach
power to generated pinmux
2026-03-10set new membrowse comment github workflow with comment messageMichael Rogov Papernov
2026-03-10Merge pull request #3543 from YixingShen/masterHa Thach
_end_of_control_descriptor return when std.bNumEndpoints > 0
2026-03-09Merge branch 'master' of https://github.com/YixingShen/tinyusbYixingShen
2026-03-09revert _end_of_control_descriptor to Revision: ↵YixingShen
0a45308a296251e4376815b21f89f0038c75a60e
2026-03-09Merge pull request #3541 from hathach/fix-3525Ha Thach
Refactor and validate USB device descriptor handling
2026-03-09fix(usbh): correct memcpy usage to ensure proper alignment with `offsetof` ↵hathach
in device descriptor handling
2026-03-09refactor: add desc_device_noheader_t to simplify get device descriptor localhathach
2026-03-09usbh device descriptor validation, also check ep size > 0hathach
2026-03-09Merge pull request #3536Ha Thach
Fix ep_ctrl_mask() corrupting opposite direction's ENDPTCTRL bits
2026-03-09Merge pull request #3538 from sidcha/fix-hwfifo-PMA-pointerHa Thach
Fix hwfifo PMA pointer advance on ring buffer wrap
2026-03-09Merge pull request #3532 from YixingShen/masterHa Thach
_open_vc_itf parsing error when vc->std.bNumEndpoints != 0
2026-03-09extend video control parsing to include class-specific VC endpoint descriptorhathach
2026-03-08tinyusb: fix hwfifo PMA pointer advance on ring buffer wrapSiddharth Chandrasekaran
In hwff_push_n() and hwff_pull_n(), the HWFIFO_ADDR_NEXT_N call after processing the linear part of a wrap-around read/write used the data byte count (lin_even) as the address stride increment. On STM32 FSDEV PMA, data_stride=2 and addr_stride=4, so the pointer must advance by (lin_even / data_stride) * addr_stride bytes, not lin_even bytes. Fixes: 74e59e433 ("fix hwfifo pull/push n with address stride > 0") Signed-off-by: Siddharth Chandrasekaran <[email protected]>
2026-03-07Fix ep_ctrl_mask() corrupting opposite direction's ENDPTCTRL bitsgab-k
2026-03-07Merge branch 'master' of https://github.com/YixingShen/tinyusbYixingShen
2026-03-07fixed _end_of_control_descriptor logic. wTotalLength does not include ↵YixingShen
Standard Endpoint Descriptor and Class-specific VC Interrupt Endpoint Descriptor, so fix that _end_of_control_descriptor include Standard Endpoint Descriptor and Class-specific VC Interrupt Endpoint Descriptor. It will also fix _close_vc_itf, _open_vc_itf. _find_desc_entity parsing.
2026-03-07Merge branch 'hathach:master' into master沈玴興
2026-03-07Merge pull request #3529 from hathach/mtt_hubHa Thach
Add MTT hub support
2026-03-07Merge pull request #3519 from hathach/samx7x_updateHa Thach
refresh dcd_samx7x
2026-03-07open hub mtt interface in 1 callhathach
2026-03-07Merge pull request #3531 from hathach/hil-mtpHa Thach
enable hil test for mtp
2026-03-07remove dma_desc_thathach
2026-03-07- update SAME70 BSP: remove unused definitions, consolidate startup fileshathach
- and add unique ID - add freertos
2026-03-07update hil test: remove unused ctypes, add fallback for skip boardshathach
2026-03-07Update src/class/video/video_device.c沈玴興
Co-authored-by: Copilot <[email protected]>
2026-03-07cleanupYixingShen
2026-03-07fixed _open_vc_itf parsingYixingShen
Standard Interface Descriptor (Video Control) Video Control Header Descriptor Video Control Camera Terminal Descriptor Video Control Output Terminal Descriptor Standard Endpoint Descriptor Class-Specific VC Interrupt Endpoint Descriptor Video Control Header Descriptor's wTotalLength = Header Descriptor + Camera Terminal Descriptor + Output Terminal Descriptor _end_of_control_descriptor is Output Terminal Descriptor End the "end" should +7 for _find_desc searchig Standard Endpoint Descriptor
2026-03-06fix CIHiFiPhile
Signed-off-by: HiFiPhile <[email protected]>
2026-03-06enable hil test for mtphathach