| 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-03-07 | open hub mtt interface in 1 call | hathach | |
| 2026-03-06 | fix ci | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-03-06 | usbh: support MTT hub | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-12-11 | refactor usbh_class_driver_t's open() to return number of driver len instead ↵ | hathach | |
| of bool. help to simplify parsing configuration | |||
| 2025-05-13 | fix warnings, minor clean up | hathach | |
| 2025-05-06 | usbh: force removed device in the same bus info, before setting address. | hathach | |
| usbh: move code around hub: queue status endpoint for detach/remove event | |||
| 2025-04-24 | refactor hub driver and move port reset on connection change to usbh. | hathach | |
| hub: add hub_port_get_status_local(), ignore resp in hub_port_get_status(pot != 0) usbh properly deboucning with hub/rootport accordingly to usb specs, also add 10ms of reset recovery | |||
| 2025-03-03 | - add tuh_descriptor_get_string_langid() API | hathach | |
| - host enumeration always get language id, manufacturer, product and serial string. Which is required by some device such as 8bitdo | |||
| 2025-02-19 | more hub improve, handle more failed transfer with polling interrupt status ↵ | hathach | |
| endpoint | |||
| 2025-02-19 | complete separate hub epbuf from itf | hathach | |
| add hub_get_status(), hub_clear_feature() | |||
| 2025-02-19 | move status_change to epbuf | hathach | |
| improve hub_xfer_cb() rename internal complete function | |||
| 2025-02-17 | usbh always retry control transfer (max 3) in case of XFER_RESULT_FAILED. | hathach | |
| added tuh_connected() | |||
| 2025-02-17 | improve hub: retry if hub interrupt endpoint failed | hathach | |
| bump up pio-usb to latest | |||
| 2024-03-22 | implement tuh_init() | hathach | |
| change usbh driver init() return type from void to bool | |||
| 2024-03-22 | adding deinit() stub for usbh/hcd class driver | hathach | |
| add TUSB_VERSION_BUILD, also add TUSB_VERSION_NUMBER | |||
| 2024-01-07 | [HUB] Fix double status xfer | Ryzee119 | |
| 2023-08-15 | more minor clean up | hathach | |
| - also rename usbh_classdriver.h to usbh_pvt.h to consitent with usbd | |||
| 2023-08-07 | Add tuh_rhport_is_active() and tuh_rhport_reset_bus() | hathach | |
| - also improve ehci bus reset - seperate bus reset delay and contact debouncing delay in enumeration | |||
| 2023-07-25 | fix unaligned hub status_change | hathach | |
| 2023-05-29 | slightly clean up | hathach | |
| 2023-05-29 | check status_change is not zero first | hathach | |
| 2023-05-29 | Even when we get an empty "status change" interrupt from the hub, schedule ↵ | Ivo Popov | |
| another interrupt poll. During enumeration, when there are multiple devices attached to the hub as it's plugged into the Pi Pico, enumeration hangs, because we get a "status change" callback with value zero. With this patch, we retry several times on "zero" status change callbacks, until eventually we succeed. This is the cheapo hub that exhibits this behavior, but I assume it's not the only one: https://www.amazon.com/gp/product/B083RQMC7S. While debugging this, I consulted the implementation in the Linux kernel. There, hub setup explicitly checks each port individually, before starting to depend on "status change" interrupts: https://elixir.bootlin.com/linux/latest/source/drivers/usb/core/hub.c#L1133. We probably should do something like that here, but it's a much bigger change. | |||
| 2023-05-16 | correct EHCI reporting failed xfer (instead of stalled) when device is unplugged | hathach | |
| 2023-03-24 | separate CFG_TUSB_MEM_SECTION and CFG_TUSB_MEM_ALIGN to | hathach | |
| - CFG_TUD_MEM_SECTION and CFG_TUD_MEM_ALIGN - CFG_TUH_MEM_SECTION and CFG_TUH_MEM_ALIGN - fix missing mem section and align for host | |||
| 2023-03-17 | fix trailing space and new line | hathach | |
| temporarily disable codespell | |||
| 2022-08-16 | Hub: Clear other port feature changes | Ryzee119 | |
| 2022-08-16 | Hub: Handle hub device status change interrupt | Ryzee119 | |
| 2022-08-15 | Hub: Rename port status callback to be more generic | Ryzee119 | |
| 2022-08-15 | Hub: Expand hub helpers to handle device events | Ryzee119 | |
| 2022-06-24 | fix redundant-decls warnings by usbd/usbh | hathach | |
| 2022-05-29 | Hub: Retry port status transfer if failed | Ryzee119 | |
| 2022-03-19 | rename usbh_edpt_open() to tuh_edpt_open() | hathach | |
| 2022-03-19 | add parse config descriptor to example | hathach | |
| move usbh_edpt_open() to public API, remove rhport from its signature | |||
| 2022-03-18 | move daddr into xfer struct | hathach | |
| 2022-03-17 | rename user_arg to user_data | hathach | |
| 2022-03-17 | rename tuh_control_xfer_t to tuh_xfer_t | hathach | |
| 2022-03-17 | slightly change the signature of tuh_control_xfer | hathach | |
| 2022-03-17 | change return type of callback to void | hathach | |
| 2022-03-17 | remove const in xfer callback | hathach | |
| 2022-03-17 | move result into transfer struct | hathach | |
| 2022-03-17 | change tuh_control_xfer_t struct | hathach | |
| 2022-03-12 | rework usbh enumeration process using user arg from control transfer as state | hathach | |
| 2022-03-11 | rework usbh control xfer | hathach | |
| - change API of tuh_control_xfer and its callback - rename tuh_control_complete_cb_t to tuh_control_xfer_cb_t - add user argument to control callback - migrate usbh and hub | |||
| 2022-03-10 | fix enumeration issue when plugging hub with multiple devices attached | hathach | |
| 2022-03-04 | rename HCD_MAX_XFER to CFG_TUH_ENDPOINT_MAX | hathach | |
| minor clean up | |||
| 2022-02-25 | rename TUSB_OPT_HOST_ENABLED to CFG_TUH_ENABLED | hathach | |
| 2021-08-23 | sepearate CFG_TUH_DEVICE_MAX and CFG_TUH_HUB | hathach | |
| separate dev0 from _usbh_devices pool to save sram | |||
| 2021-08-23 | add hcd attr, add note for ehci framelist on NXP derivative | hathach | |
| 2021-08-23 | rename CFG_TUSB_HOST_DEVICE_MAX to CFG_TUH_DEVICE_MAX | hathach | |
