| 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-06-22 | address review | HiFiPhile | |
| 2026-06-22 | Merge remote-tracking branch 'tinyusb/master' into pr-osal-spin-deinit | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-06-22 | osal: add missing osal_spin_deinit() | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-06-21 | fix(host): release spinlock in tuh_deinit to fix multi-rebuild panic | renjie | |
| tuh_rhport_init() calls osal_spin_init(&_usbh_spin), which under OPT_OS_PICO claims a hardware spinlock via critical_section_init(). There was no osal_spin_deinit(), so tuh_deinit() never released it: every host init/deinit cycle leaked one spinlock. RP2350 has a small spinlock pool, so a few usb_host rebuilds exhaust it and hw_claim_unused_from_range() panics (the long-standing "crashes on the 4th rebuild" bug). Add osal_spin_deinit() to all OSAL backends (critical_section_deinit for pico; no-op for none/freertos) and call it in tuh_deinit(). Verified 20/20 deinit+rebuild cycles on RP2350-Zero and Waveshare RP2350-USB-A (previously panicked on the 4th). Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]> | |||
| 2026-05-29 | Implement asynchronous control transfer queuing for USB host stack | hathach | |
| - Added a pending FIFO queue for asynchronous control transfers when the active slot is busy. - Introduced `control_xfer_dispatch_pending` to handle queued transfers on slot availability. - Improved synchronization for blocking and non-blocking transfer modes, preventing deadlocks in RTOS. - Refactored and renamed related functions for clarity and consistency. - Enhanced error handling and callback invocation for failed or stale transfers. | |||
| 2026-05-27 | osal add osal_task_get_current_handle() | hathach | |
| 2026-03-27 | osal/mynewt: fix queue receive tiemout | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2026-03-13 | remove TUSB_MCU_VENDOR_ESPRESSIF, use ESP_PLATFORM for Espressif | hathach | |
| 2026-03-05 | add IAR warning flags to cmake build and fix them | hathach | |
| 2026-03-05 | improve threadx support, add multi ROTS support for board_test and msc_dual_lun | hathach | |
| 2026-03-05 | Merge branch 'master' into fork/armusin/threadx_osal | hathach | |
| 2026-02-27 | add osal_time_millis() to osal requirement | hathach | |
| implement tusb_time_millis_api() with osal_time_millis() when OS is not NONE | |||
| 2026-02-27 | add back deferred attachment queue, retry get hub port status if reset ↵ | hathach | |
| change not set after 20ms | |||
| 2026-02-09 | Merge branch 'hathach:master' into threadx_osal | Aleksei Musin | |
| 2026-02-09 | clean | Aleksei Musin | |
| 2025-12-30 | tusb_fifo remove item_size make it fifo of bytes | hathach | |
| 2025-12-22 | Remove trailing whitespace | Aleksei Musin | |
| 2025-12-22 | ThreadX OSAL header is added. Docs are updated. | Aleksei Musin | |
| 2025-12-16 | make fifo access mode fixed addr work with 16 bit also | hathach | |
| 2025-11-19 | Merge pull request #3151 from HiFiPhile/lock_cnt | Ha Thach | |
| osal/none: add nested count to spin lock | |||
| 2025-11-19 | return if spin is underflow | hathach | |
| 2025-11-07 | fix more alerts found by pvs-studio | hathach | |
| 2025-11-07 | osal/none: add nested count to spin lock | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-11-03 | fixing alert by scanning tool | hathach | |
| 2025-10-28 | fix Identifiers that start with '__' or '_[A-Z]' are reserved. | hathach | |
| fix compiling with nuc family | |||
| 2025-10-24 | fix more warnings | hathach | |
| 2025-10-24 | fix several warnings | hathach | |
| 2025-09-17 | Replace old delay functions by tusb_time_delay_ms_api | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-08-24 | Fix osal_spin_unlock for mynewt | Jerzy Kasenberg | |
| Mynewt version for osal_spin_unlock() called OS_ENTER_CRITICAL instead of OS_EXIT_CRITICAL. Signed-off-by: Jerzy Kasenberg <[email protected]> | |||
| 2025-05-21 | osal_spin skipping lock/unlock when executed in isr | hathach | |
| 2025-05-20 | rename osal_critcal to osal_spinlock | hathach | |
| add spinlock implementation for most rtos | |||
| 2025-05-19 | implement osal critical for none/freertos/pico-sdk | hathach | |
| 2025-05-19 | add osal_critical API() for use with dwc2 | hathach | |
| 2025-02-11 | remove freeeRTOSConfig in examples | hathach | |
| 2025-01-21 | zephyr | hathach | |
| 2024-06-27 | remove double semicolon since ISO C not allow it | Davide Gerhard | |
| ISO C does not allow extra ';' outside of a function [-Werror=pedantic] | |||
| 2024-04-16 | add TU_ASSERT() to check for adding new usb event | hathach | |
| 2024-03-25 | add delete API for rtthread | hathach | |
| 2024-03-22 | update osal API | hathach | |
| add osal_semaphore_delete(), osal_mutex_delete(), osal_queue_delete() | |||
| 2024-02-16 | use rt-thread 5+ mq recv api | Kai | |
| 2023-11-23 | minor-update | hathach | |
| 2023-08-03 | add osal queue name if needed | hathach | |
| also mass change configQUEUE_REGISTRY_SIZE = 4 | |||
| 2023-08-03 | Merge branch 'master' into pr2091 | hathach | |
| 2023-08-03 | Revert "Name queues for easier FreeRTOS debugging with task- and queue-aware ↵ | hathach | |
| debuggers" This reverts commit 11fba59319d81fb9502fbf399abb4fe27cf3fa29. | |||
| 2023-07-18 | osal_none: make it possible to override the task delay function | Aladdin Bakosh | |
| 2023-06-28 | Name queues for easier FreeRTOS debugging with task- and queue-aware debuggers | Dave Nadler | |
| 2023-06-01 | For FreeRTOS kernel-aware debugging, when queue registry is enabled, label ↵ | Dave Nadler | |
| tinyUSB queue | |||
| 2023-03-17 | fix trailing space and new line | hathach | |
| temporarily disable codespell | |||
| 2023-02-22 | move and add optional tusb_app_virt_to_phys/tusb_app_phys_to_virt | hathach | |
| also add place holder for tusb_app_dcache_flush() and tusb_app_dcache_invalidate() | |||
