| 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 | 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-05-27 | osal add osal_task_get_current_handle() | 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 | |||
| 2025-12-22 | ThreadX OSAL header is added. Docs are updated. | Aleksei Musin | |
| 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-05-20 | rename osal_critcal to osal_spinlock | hathach | |
| add spinlock implementation for most rtos | |||
| 2025-01-21 | zephyr | hathach | |
| 2024-03-22 | update osal API | hathach | |
| add osal_semaphore_delete(), osal_mutex_delete(), osal_queue_delete() | |||
| 2023-03-17 | fix trailing space and new line | hathach | |
| temporarily disable codespell | |||
| 2023-01-02 | Fix IAR warning: Warning[Pe381]: extra ";" ignored | Mengsk | |
| 2022-12-15 | use OSAL_MUTEX_REQUIRED to replace CFG_FIFO_MUTEX/TUSB_OPT_MUTEX | hathach | |
| add macro to swallow mutex API in order to simplify code with mutex | |||
| 2022-04-20 | add msec timeout to osal_queue_receive(), tud_task() and tuh_task() both ↵ | hathach | |
| pending for event queue with timeout of 1 ms | |||
| 2022-02-25 | improve rphort management for usbd | hathach | |
| 2021-11-30 | Add support for Keil RTX4 OS abstraction layer | Yunhao Tian | |
| 2021-11-30 | Ignore certain compiler options on ARMCC | Yunhao Tian | |
| ARMCC also sets __GNU__ macro, but doesn't support GCC diagnostic pragmas. | |||
| 2021-10-14 | More warning cleanup | graham sanderson | |
| - physically suppress warnings in TinyUSB headers using pragmas so they don't break -Werror compilation of external files that include them - fix compiler warnings in rp2040 port - add cmake method to rp2040 port to allow an external project to suppress warnings in TinyUSB itself | |||
| 2021-02-26 | add rp2040 to host example build | hathach | |
| 2021-02-08 | add basic support for rt-thread | tfx2001 | |
| 2021-01-19 | RP2040 support | graham sanderson | |
| 2020-09-01 | add more logging to host stack | hathach | |
| tested host with lpc4357, don't use fpu with lpc m4 since it seems to cause hardfault (stack does not make use of fpu anyway). | |||
| 2020-05-22 | Merge branch 'master' into update-host | hathach | |
| 2020-05-20 | remove osal_queue_t const qhdl from osal API | hathach | |
| since it doesn't make any differences. | |||
| 2020-05-20 | added osal_queue_empty() API | hathach | |
| ported for osal none/freertos/mynewt | |||
| 2020-05-04 | temporarily remove osal_task_delay() from osal | hathach | |
| - add hcd_uframe_number() API, update EHCI to return uframe number - get host running on ea4357 | |||
| 2020-04-07 | Merge pull request #321 from pigrew/tweak20200331 | Ha Thach | |
| Misc. tweaks, and fix for USBTMC descriptors without an INT EP | |||
| 2020-04-06 | Use #define for OSAL_TIMEOUT_WAIT_FOREVER. | Nathan Conrad | |
| 2020-04-05 | allow application to implement its own os | hathach | |
| 2020-04-02 | Set OSAL_TIMEOUT_WAIT_FOREVER to be a const, to avoid a pedantic gcc warning ↵ | Nathan Conrad | |
| about signedness. | |||
| 2020-01-15 | Normalize line endings | Nathan Conrad | |
| 2019-10-18 | clean up tusb_verify | hathach | |
| 2019-05-14 | update license year to 2019 | hathach | |
| 2019-05-01 | osal clean up | hathach | |
| 2019-04-02 | clean up | hathach | |
| 2019-03-30 | usbd add connected, suspended, remote_wakeup | hathach | |
| - remove use of osal_queue_reset | |||
| 2019-03-24 | remove tusb_hal_millis() usage, less work for porting | hathach | |
| 2019-03-21 | update osal for mynewt | hathach | |
| 2019-03-20 | migrate license from BSD 3 clause to MIT | hathach | |
| 2018-12-13 | osal clean up | hathach | |
| remove OSAL_TASK_DEF, osal_task_create. Applicaton should create a task and call tinyusb_task(). This make API consistent with NO OS. | |||
| 2018-12-06 | change osal_semaphore_wait to return bool | hathach | |
| 2018-11-14 | change osal_queue_receive() signature | hathach | |
| - fix build issue with freertos | |||
| 2018-11-02 | clean up osal | hathach | |
| 2018-11-02 | add osal_mutex | hathach | |
| 2018-10-23 | merge osal_queue_send_isr to osal_queue_send, osal_semaphore_post_isr to ↵ | hathach | |
| osal_semaphore_post | |||
| 2018-09-04 | adding mynewt to osal | hathach | |
| 2018-09-02 | rename file | hathach | |
