| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-05-04 | add default implementation for tuh_hid_report_received_cb() | hathach | |
| 2026-05-04 | fix usbd control to support wLength hack | hathach | |
| 2026-05-04 | refactor: replace `tu_edpt_state_t` struct with `uint8_t` and update all ↵ | hathach | |
| endpoint state handling methods and accesses | |||
| 2026-05-04 | refactor `usbd.c`: extract `process_std_device_request` for clarity | hathach | |
| 2026-05-04 | refactor `usbd.c`: centralize control transfer state management into ↵ | hathach | |
| `_usbd_dev` structure and remove `usbd_control_reset` | |||
| 2026-04-29 | deprecated `usbd_control.c` and merge its functionality into `usbd.c` | hathach | |
| 2026-04-29 | clean up | hathach | |
| 2026-04-28 | Merge branch 'master' into fork/kira-live/master | hathach | |
| # Conflicts: # src/device/usbd_control.c | |||
| 2026-04-26 | usbd_control: consolidate status stage ep selection | hathach | |
| Extract the "which endpoint is the Status stage on" rule into a single TU_ATTR_ALWAYS_INLINE helper, and use it from both status_stage_xact() and the completion callback. Replaces the two-operand wLength/direction check with a direct endpoint-match comparison, matching the first operand's pattern. Per USB 2.0 §9.3.1, when wLength == 0 the bmRequestType Direction bit is ignored and the Status stage is always IN; otherwise the Status stage is opposite to the Data stage direction. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]> | |||
| 2026-04-25 | Merge branch 'master' into musb-followup-3594 | hathach | |
| # Conflicts: # src/common/tusb_types.h # src/portable/mentor/musb/dcd_musb.c | |||
| 2026-04-25 | separate pipe0 since it is 1 packet per transfer, merge PIPE0 STATUS PENDING | hathach | |
| 2026-04-25 | clean up | hathach | |
| 2026-04-25 | musb more ep0 refactor. add back remaining_ctrl for correct ep0 state ↵ | hathach | |
| transition. handle status out to make sure xfer_complete() not called before dcd_edpt_xfer() | |||
| 2026-04-24 | musb migrate to ep0_state, remove setup packet from dcd data | hathach | |
| 2026-04-24 | refactor musb ep0 xfer | hathach | |
| 2026-04-24 | Merge pull request #3597 from canokeys/big-endian-for-setup-packets | Zixun LI | |
| fix #3596: big-endian host support for SETUP packet handling | |||
| 2026-04-24 | fix zero wLength request in control request | akari | |
| 2026-04-23 | musb double packet for epout | hathach | |
| 2026-04-23 | Merge pull request #3590 from ↵ | Ha Thach | |
| hathach/copilot/extract-hcd-pma-buffer-errata-workaround Refactor STM32 FSDEV PMA errata delay into shared static inline helper and apply to DCD/HCD with overridable timing | |||
| 2026-04-23 | Merge pull request #3601 from hathach/fix-conversion-warnings | Ha Thach | |
| Fix some -Wconversion warnings | |||
| 2026-04-22 | Add ESP32-S31 as a supported MCU in TinyUSB | igor.masar | |
| 2026-04-22 | musb implement double buffer for tx | hathach | |
| 2026-04-21 | enable double buffer for tm4c | hathach | |
| 2026-04-21 | minor clean up | hathach | |
| 2026-04-21 | optimize pipe_state_t sram for port with CFG_TUD_ENDPOINT_ONE_DIRECTION_ONLY. | hathach | |
| separate process_edpt_n() to process_epin() and process_epout() | |||
| 2026-04-21 | refactor interrupt handling and add `pipe_write` to fix IN ZLP issue | hathach | |
| 2026-04-21 | replace `TUD_ENDPOINT_ONE_DIRECTION_ONLY` with ↵ | hathach | |
| `CFG_TUD_ENDPOINT_ONE_DIRECTION_ONLY` for improved configuration consistency across examples and core sources | |||
| 2026-04-20 | fix usbnet hardcode speed. disable hil test for now | hathach | |
| 2026-04-20 | improving transfer tracking and adding support for un-armed Rx data handling | hathach | |
| 2026-04-17 | use single volatile counter | hathach | |
| 2026-04-17 | remove duplicated tu_le16toh since we have converted the endian when setup. | Fan DANG | |
| 2026-04-17 | tinyusb.mk: Remove duplicate usbc.c entry. | Andrew Leech | |
| Signed-off-by: Andrew Leech <[email protected]> | |||
| 2026-04-17 | Merge pull request #3594 | Ha Thach | |
| Fix musb RXRDY Clearing | |||
| 2026-04-17 | fix some Wconversion warnings | hathach | |
| 2026-04-14 | Merge branch 'hathach:master' into big-endian-for-setup-packets | Dang Fan | |
| 2026-04-13 | introduce two more macros to follow tinyusb's style | Fan DANG | |
| 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). | |||
| 2026-04-11 | Fix musb RXRDY Clearing | Brent Kowal | |
| Resolves an issue in the musb handle_xfer_out function where not all execution paths cleared the MUSB_RXCSRL1_RXRDY bit, causing the RX interface to hang and no longer communicate with the host. Signed-off-by: Brent Kowal <[email protected]> | |||
| 2026-04-10 | Update src/portable/synopsys/dwc2/dcd_dwc2.c | Ha Thach | |
| Co-authored-by: Copilot <[email protected]> | |||
| 2026-04-10 | clean up | hathach | |
| 2026-04-10 | fix DWC2 FIFO depth values for STM32 families | hathach | |
| 2026-04-10 | debloat the workaround | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-04-10 | Allow STM32 FSDEV delay override macros to satisfy 32-bit guard | copilot-swe-agent[bot] | |
| Agent-Logs-Url: https://github.com/hathach/tinyusb/sessions/b35badc2-444a-4329-b136-f314591cf693 Co-authored-by: HiFiPhile <[email protected]> | |||
| 2026-04-10 | Restore errata context comment on inline delay helper | copilot-swe-agent[bot] | |
| Agent-Logs-Url: https://github.com/hathach/tinyusb/sessions/8588a09c-d4e5-4284-8944-47ae4e2a2a1f Co-authored-by: HiFiPhile <[email protected]> | |||
| 2026-04-10 | Make fsdev errata delay helper static inline | copilot-swe-agent[bot] | |
| Agent-Logs-Url: https://github.com/hathach/tinyusb/sessions/8588a09c-d4e5-4284-8944-47ae4e2a2a1f Co-authored-by: HiFiPhile <[email protected]> | |||
| 2026-04-10 | add dwc2_clock_init() to have nrf54 initial sequence. currently stub for ↵ | hathach | |
| other ports. add board_uart_read() for nrf | |||
| 2026-04-09 | rename ep_fifo_size (bytes) to otg_dfifo_depth (words) | hathach | |
| 2026-04-09 | Polish FSDEV delay code readability | copilot-swe-agent[bot] | |
| Agent-Logs-Url: https://github.com/hathach/tinyusb/sessions/3ec0d5b6-cb8e-48ff-8606-3371beb1efcb Co-authored-by: HiFiPhile <[email protected]> | |||
| 2026-04-09 | Clarify STM32U0 delay-default frequency usage | copilot-swe-agent[bot] | |
| Agent-Logs-Url: https://github.com/hathach/tinyusb/sessions/3ec0d5b6-cb8e-48ff-8606-3371beb1efcb Co-authored-by: HiFiPhile <[email protected]> | |||
| 2026-04-09 | Simplify delay loop comment in shared FSDEV helper | copilot-swe-agent[bot] | |
| Agent-Logs-Url: https://github.com/hathach/tinyusb/sessions/3ec0d5b6-cb8e-48ff-8606-3371beb1efcb Co-authored-by: HiFiPhile <[email protected]> | |||
