| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-05-27 | Merge branch 'master' into additional_dcd_sof_enable | HiFiPhile | |
| 2024-05-27 | Fix tud_sof_cb_enable() return type. | HiFiPhile | |
| 2024-05-27 | Fix frame count in tud_sof_cb(). | HiFiPhile | |
| 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-24 | wch usbfs/usbhs need to specify which driver to use. for v307 default to ↵ | hathach | |
| highspeed | |||
| 2024-05-13 | Adjust logic. | HiFiPhile | |
| 2024-05-13 | Merge branch 'master' into test-mode-support | HiFiPhile | |
| 2024-05-09 | Little optimization. | HiFiPhile | |
| 2024-05-09 | Fix CI. | HiFiPhile | |
| 2024-05-09 | Convert to bit-field since it's more reliable. | HiFiPhile | |
| 2024-05-09 | Don't forget to queue SOF event. | HiFiPhile | |
| 2024-05-09 | Disable SOF on configuration change. | HiFiPhile | |
| 2024-05-09 | Move sof status into usbd_device_t. | HiFiPhile | |
| 2024-05-09 | Switch to weak default implementation. | HiFiPhile | |
| 2024-05-09 | Merge branch 'master' into patch-5 | HiFiPhile | |
| 2024-05-09 | Rework ci (#2631) | Ha Thach | |
| * add name field to usbd_class_driver_t * ci: use set matrix py script * add riscv32 and cmake support for ch32v307, fomu, gd32vf103 * update build_cmake.py to take --family --board --toolchain * separate hil test to its own workflow * move esp32 board into separated hil json * add make build to ci * remov build_make.py * build.py support esp32 board * setup toolchain support esp-idf * fix missing click * merge family in matrix build to reduce jobs * skip cifuzz since it still has issue with get_deps and click | |||
| 2024-04-30 | Add missing capability bit for CDC ACM serial break support | Trevor | |
| The send break capability bit is needed for serial break support with Linux and possibly MacOS hosts. [A recent Linux kernel patch made it check the ACM capability bits before sending a serial break](https://github.com/raspberrypi/linux/commit/19e321c3eedd4c681a49f532a196bead5d57205e). | |||
| 2024-04-16 | Merge pull request #1662 from Erlkoenig90/check-usbd-queue-overflow | Ha Thach | |
| Check for event queue overflow in usbd / dcd_event_handler | |||
| 2024-04-16 | add TU_ASSERT() to check for adding new usb event | hathach | |
| 2024-04-16 | don't check local endpoint stalled status, just carry the request for host. | hathach | |
| 2024-04-16 | USBD: When SET_FEATURE(ENDPOINT_HALT), the DTOG must be reset. | NConrad | |
| 2024-04-08 | revert usbd driver name change to be backward compatible | hathach | |
| 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-04-04 | Merge pull request #2421 from antoniovazquezblanco/debug | Ha Thach | |
| Log outbound xfer bytes while in debug | |||
| 2024-04-04 | minor update | Ha Thach | |
| 2024-04-01 | UAC2: refactor interrupt endpoint support. | HiFiPhile | |
| 2024-03-25 | Merge pull request #2515 from Lurcy38/ReAlignMaster | Ha Thach | |
| 2024-03-20 | improve uvc debug message | hathach | |
| 2024-03-14 | IAR Warning: Fixed due to an boolean operation between enum (Pa089) | henneboi | |
| Warning[Pa089]: enumerated type mixed with another enumerated type ...tusb_uac2_audio.c 199 This issue stops the build if we treat warning as error | |||
| 2024-03-13 | usbd only process last setup packet in the event queue | hathach | |
| 2024-03-11 | reformat code | hathach | |
| 2024-02-19 | Opt-out for USB Test-Mode | Rocky04 | |
| 2024-02-08 | missing \r\n after TU_LOG_BUF => moved \r\n to tu_print_buf() | IngHK | |
| 2024-02-07 | usbd: log outbound xfer bytes in debug | Antonio Vázquez Blanco | |
| 2024-01-15 | Missed static keyword | Rocky04 | |
| 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 | style changes | hathach | |
| 2024-01-12 | - change tuh_event_hook_cb, tud_event_hook_cb to weak default implementation | hathach | |
| - change code style | |||
| 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-12-13 | try to add samd51 to hil pool using doublereset (rpi gpio) and bossac | hathach | |
| 2023-11-24 | minor doc | hathach | |
| 2023-11-24 | Merge pull request #2303 from projectgus/feature/isr_event_hook | Ha Thach | |
| Add optional hooks for DCD and HCD events | |||
| 2023-11-24 | add optional event hook callback tud_event_hook_cb() and tuh_event_hook_cb() | hathach | |
| 2023-11-24 | rename to CFG_TUD_BTH_HISTORICAL_COMPATIBLE, move CFG_TUD_BTH_ISO_ALT_COUNT ↵ | hathach | |
| to tusb_option.h and mandatory for BTH driver | |||
| 2023-11-23 | Add optional hooks for DCD and HCD events | Angus Gratton | |
| These are intended to allow bare metal platforms with one-shot scheduling capabilities to schedule the TinyUSB task handlers whenever they know there is work for them to do. Signed-off-by: Angus Gratton <[email protected]> | |||
