| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-07-02 | license: use SPDX identifiers for src/ headers (#3749) | Ha Thach | |
| * license: use SPDX identifiers for src/ headers Replace the full ~20-line MIT license boilerplate on every src/ file with a two-line SPDX tag (SPDX-FileCopyrightText + SPDX-License-Identifier), following the REUSE convention used by CircuitPython and the Linux kernel. Removes ~3500 lines of duplicated boilerplate. | |||
| 2026-04-13 | fix(device): big-endian host support for SETUP packet handling | Fan DANG | |
| 1. Add TU_LITTLE_ENDIAN_BITFIELD / TU_BIG_ENDIAN_BITFIELD macros in tusb_compiler.h (GCC and IAR), following Linux kernel style. 2. Update bmAttributes (tusb_desc_endpoint_t) and bmRequestType_bit (tusb_control_request_t) in tusb_types.h to use these macros with explicit #error fallback if undefined. 3. Add tu_le16toh() conversion in dcd_event_setup_received() for wValue/wIndex/wLength. Tested on CIU98320B (big-endian ARM Cortex-M, full-speed HID keyboard). | |||
| 2025-11-21 | dcd: add tud_configure() | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-11-19 | Merge remote-tracking branch 'tinyusb/master' into ↵ | HiFiPhile | |
| copilot/fix-dcd-edpt-xfer-issue Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-11-17 | make TUP_DCD_EDPT_ISO_ALLOC i.e dcd_edpt_iso_alloc()/dcd_edpt_iso_activate() ↵ | hathach | |
| as default driver implementation. dcd_edpt_close() is deprecated and will be removed from all driver in the future. | |||
| 2025-11-11 | Merge remote-tracking branch 'tinyusb/master' into ↵ | HiFiPhile | |
| copilot/fix-dcd-edpt-xfer-issue Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-11-04 | Fixed more alert found by PVS-Studio | hathach | |
| 2025-10-31 | Merge remote-tracking branch 'tinyusb/master' into ↵ | HiFiPhile | |
| copilot/fix-dcd-edpt-xfer-issue Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-10-24 | fix more warnings | hathach | |
| 2025-10-22 | Add is_isr parameter to dcd_edpt_xfer and dcd_edpt_xfer_fifo | copilot-swe-agent[bot] | |
| Co-authored-by: HiFiPhile <[email protected]> | |||
| 2025-09-17 | Update weak callbacks to new syntax | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2024-11-25 | change dcd_dcache_*() API return type from void to bool | hathach | |
| 2024-11-20 | have p4 dma somewhat working but having issue with buffer that does not ↵ | hathach | |
| occupy the whole cache line | |||
| 2024-10-14 | change dcd_init() return from void to bool | hathach | |
| 2024-10-14 | change the tusb_rhport_init_t struct, exclude the rhport to make API more ↵ | hathach | |
| consistent | |||
| 2024-10-11 | fix fuzzing build | hathach | |
| 2024-10-11 | change dcd_init() to take rhport struct | hathach | |
| 2024-08-19 | remove weak from dcd_edpt_close() for port without TUP_DCD_EDPT_ISO_ALLOC | hathach | |
| 2024-08-19 | fix ci build | hathach | |
| 2024-08-19 | implement dcd_edpt_iso_alloc/dcd_edpt_iso_activate for musb. video_capture ↵ | hathach | |
| example with iso kind of work but not smoothly. audio example does not seems to work as expected | |||
| 2024-07-30 | add edpt0_open(), slightly update dtog | hathach | |
| 2024-07-25 | fix race condition where reset event cleaar setup count | hathach | |
| 2024-07-12 | simplify dwc2 test mode | hathach | |
| - all dwc2 ip seems to support test mode in both fs/hs -> remove TUP_USBIP_DWC2_TEST_MODE - remove dcd_check_test_mode_support(), all should be supported - move enum tusb_feature_test_mode_t to tusb_types.h | |||
| 2024-05-24 | minor clean up | hathach | |
| 2024-05-24 | add ch32 support for fsdev driver. v20x can select fsdev or usbfs with ↵ | hathach | |
| make/cmake PORT=0/1. default to fsdev | |||
| 2024-05-13 | Adjust logic. | HiFiPhile | |
| 2024-05-13 | Merge branch 'master' into test-mode-support | HiFiPhile | |
| 2024-04-08 | add class driver deinit | hathach | |
| 2024-04-08 | Implements tuh_deinit() and tud_deinit() to uninitialize host/device mode. | Felix "xq" Queißner | |
| 2024-01-15 | Merge branch 'master' into test-mode-support | Rocky04 | |
| 2024-01-15 | Removed whitespace | Rocky04 | |
| 2024-01-15 | Change to control complete cb | Rocky04 | |
| 2024-01-15 | Add DWC2 Test Mode SUpport | Rocky04 | |
| 2024-01-12 | Merge pull request #2239 from XelaRellum/bugfix_stm32_fsdev_keil | Ha Thach | |
| Fixes #1018 the weak dcd_edpt0_status_complete for Keil Compiler | |||
| 2023-11-24 | minor doc | hathach | |
| 2023-08-29 | Fix the weak dcd_edpt0_status_complete for Keil Compiler | Alexander Mueller | |
| The Keil compiler seems to have different semantics and the defined function was never called. The same is probably true for the other weak functions. I can change those too. | |||
| 2023-06-16 | fix build warnings | hathach | |
| 2023-06-09 | move protocol message to stack, disable battery in PWR's CR3 | hathach | |
| there is still issue with CC1/CC2 pull down resistor and vstate is not correct. | |||
| 2023-05-23 | Enhance chipidea (#2075) | Ha Thach | |
| * update chipidea dcd, remove manual ep_count and use DCCPARAMS to get number of endpoint instead * add dcd dcache for chipidea * add cmake for lpc18 * add makefile build for mcx * use fork of mcu sdk * fix ci build with nrf * flash rp2040 with openocd | |||
| 2023-03-17 | fix trailing space and new line | hathach | |
| temporarily disable codespell | |||
| 2023-02-28 | Merge pull request #1828 from HiFiPhile/stm32_fsdev | Ha Thach | |
| stm32_fsdev & ISO EP buffer allocation improvements | |||
| 2023-01-13 | fix: Replace device calls to memcpy with tu_memcpy_s | Nathaniel Brough | |
| Introduces a new function tu_memcpy_s, which is effectively a backport of memcpy_s. The change also refactors calls to memcpy over to the more secure tu_memcpy_s. | |||
| 2022-12-29 | UAC : Enable fifo based transfer on stm32_fsdev | Mengsk | |
| 2022-12-29 | Add dcd_edpt_iso_alloc() / dcd_edpt_iso_activate() for ISO EP buffer management. | Mengsk | |
| 2022-06-24 | fix redundant-decls warnings by usbd/usbh | hathach | |
| 2022-05-31 | Merge pull request #1381 from hathach/add-sof-isr | Ha Thach | |
| Add SOF IRQ Handler | |||
| 2022-04-18 | clean up pio driver | hathach | |
| 2022-03-07 | added dcd_sof_enable(), tud_sof_isr_set() | hathach | |
| make number of interface configurable (default to 8) CFG_TUD_INTERFACE_MAX | |||
| 2022-02-26 | more internal rename | hathach | |
| 2022-02-25 | rename and move dcd_attr.h to tusb_mcu_attr.h | hathach | |
