| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-07-09 | dcd(samd): implement iso alloc/activate | hathach | |
| Reserve the bank SIZE bucket once, re-enable per altsetting, and scrub the bank-ready state so a stale armed bank cannot send before the class re-arms. Co-Authored-By: Claude Fable 5 <[email protected]> Claude-Session: https://claude.ai/code/session_01HeF2gZ1M7GWkz6Av4BpKPg | |||
| 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. | |||
| 2025-11-19 | Merge remote-tracking branch 'tinyusb/master' into ↵ | HiFiPhile | |
| copilot/fix-dcd-edpt-xfer-issue Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-11-17 | make TUP_DCD_EDPT_ISO_ALLOC i.e dcd_edpt_iso_alloc()/dcd_edpt_iso_activate() ↵ | hathach | |
| as default driver implementation. dcd_edpt_close() is deprecated and will be removed from all driver in the future. | |||
| 2025-10-22 | Apply suggestions from code review | Zixun LI | |
| Co-authored-by: Copilot <[email protected]> | |||
| 2025-10-22 | Add is_isr parameter to dcd_edpt_xfer and dcd_edpt_xfer_fifo | copilot-swe-agent[bot] | |
| Co-authored-by: HiFiPhile <[email protected]> | |||
| 2025-10-15 | merge samd2x and saml2x bsp, add OPT_MCU_SAML2X to replace OPT_MCU_SAML21 & ↵ | hathach | |
| OPT_MCU_SAML22 | |||
| 2024-11-27 | Fix missing protoype warning, change TUD_EPBUF_TYPE_DEF order (#2889) | Ha Thach | |
| * change TUD_EPBUF_TYPE_DEF order * add and fix -Wmissing-prototypes warnings for cmake (skip make) | |||
| 2024-10-14 | change dcd_init() return from void to bool | hathach | |
| 2024-10-14 | change the tusb_rhport_init_t struct, exclude the rhport to make API more ↵ | hathach | |
| consistent | |||
| 2024-10-11 | fix fuzzing build | hathach | |
| 2024-05-27 | microchip samd: Add support for dcd_sof_enable(). | Andrew Leech | |
| 2022-10-19 | Merge pull request #1523 from maddyaby/dcd_edpt_open | Ha Thach | |
| Allow more endpoint packet sizes for SAMD | |||
| 2022-06-27 | samd: Fix a lock-up situation at high traffic. | robert-hh | |
| This PR fixes a transmit lock-up, which happens, when data is received and sent at the sime time at moderate to high speeds, like code which just echoes incoming data. In my case, an issue was reported here: https://github.com/micropython/micropython/issues/8521 | |||
| 2022-06-17 | Allow more endpoint packet sizes for SAMD | maddyaby | |
| Tested on SAMD51 - we can allow more packet sizes by checking that the set size value is greater than the requested packet size instead of exactly the same. | |||
| 2022-06-16 | Stub out dcd_edpt_close for samd | maddyaby | |
| Not having this prevents the device from finishing the mounting process. Tested on a SAMD51 and didn't seem to need to actually do anything in the close function. | |||
| 2022-03-07 | added dcd_sof_enable() stubs for all other ports | hathach | |
| 2022-02-25 | rename TUSB_OPT_DEVICE_ENABLED to CFG_TUD_ENABLED | hathach | |
| TUSB_OPT_DEVICE_ENABLED still usable for backward compatible | |||
| 2021-10-24 | remove ep descriptor wMaxPacketSize bitfield due to endian issue | hathach | |
| 2021-08-31 | clear stall and reset data toggle when open edpt | hathach | |
| required to pass one of msc test. | |||
| 2021-08-26 | add dcd_edpt_close_all() for clear existing configured state | hathach | |
| correctly responded to TD 9.13 Set Configuration Test | |||
| 2021-06-15 | add support SAML21 | sabas1080 | |
| 2021-04-09 | Add support for SAM L22 family | Joey Castillo | |
| 2021-01-08 | use dcd_event_bus_reset() with speed to replace bus_signal | hathach | |
| 2021-01-08 | comment clean up | hathach | |
| 2021-01-08 | update comment and correct the size to 8+2 | hathach | |
| 2021-01-08 | walkround for samd21 setup_packet overflow | hathach | |
| increase setup packet size from 8 to 12, since USB DMA controller is suspected to overflow the buffer with 2 extra bytes | |||
| 2020-08-22 | add OPT_MCU_SAMD11 | hathach | |
| skip ci build for example that need more ROM/RAM could fit into SAMD11 | |||
| 2020-07-23 | fix samd21 race condition with setup packet | hathach | |
| reproduced with Adafruit_TinyUSB_ArduinoCore port commit 11d669b4d2a40eb2fc5e51b2a9707a6de9d42363 and SAMD BSP 1.6.1 | |||
| 2020-06-25 | dcd_samd: Provide implementation for OPT_MCU_SAME5X | Jeff Epler | |
| 2020-06-24 | added OPT_MCU_SAME5X option | hathach | |
| 2020-04-30 | fix dcd samd race condition with setup packet | hathach | |
| setup packet can complete together with previous status (in & out). Always make sure to prepare valid buffer for holding setup packet when queuing control status. | |||
| 2020-04-17 | complete remove dcd_set_config(), fix unit test | hathach | |
| 2020-04-17 | mass rename tud/dcd_irq_handler to tud/dcd_init_handler | hathach | |
| 2020-04-11 | Merge branch 'master' into refactor-irqhandler | Ha Thach | |
| 2020-04-09 | implement dcd connect/disconnect for samd and nrf | hathach | |
| 2020-04-06 | mass rename dcd_isr() to dcd_irq_handler() | hathach | |
| 2020-04-06 | move irqhandler to application | hathach | |
| tud_isr() must be called by application to forward the irqhandle to the stack | |||
| 2019-12-27 | fix #247 | hathach | |
| 2019-12-26 | clean up | hathach | |
| 2019-12-26 | merge dcd_samd51 & dcd_samd21 into dcd_samd | hathach | |
