summaryrefslogtreecommitdiff
path: root/src/device/usbd.c
AgeCommit message (Collapse)Author
2024-05-09Convert to bit-field since it's more reliable.HiFiPhile
2024-05-09Don't forget to queue SOF event.HiFiPhile
2024-05-09Disable SOF on configuration change.HiFiPhile
2024-05-09Move sof status into usbd_device_t.HiFiPhile
2024-05-09Switch to weak default implementation.HiFiPhile
2024-05-09Merge branch 'master' into patch-5HiFiPhile
2024-05-09Rework 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-16Merge pull request #1662 from Erlkoenig90/check-usbd-queue-overflowHa Thach
Check for event queue overflow in usbd / dcd_event_handler
2024-04-16add TU_ASSERT() to check for adding new usb eventhathach
2024-04-16don't check local endpoint stalled status, just carry the request for host.hathach
2024-04-16USBD: When SET_FEATURE(ENDPOINT_HALT), the DTOG must be reset.NConrad
2024-04-08revert usbd driver name change to be backward compatiblehathach
2024-04-08add class driver deinithathach
2024-04-04Merge pull request #2421 from antoniovazquezblanco/debugHa Thach
Log outbound xfer bytes while in debug
2024-04-04minor updateHa Thach
2024-03-20improve uvc debug messagehathach
2024-03-13usbd only process last setup packet in the event queuehathach
2024-03-11reformat codehathach
2024-02-19Opt-out for USB Test-ModeRocky04
2024-02-08missing \r\n after TU_LOG_BUF => moved \r\n to tu_print_buf()IngHK
2024-02-07usbd: log outbound xfer bytes in debugAntonio Vázquez Blanco
2024-01-15Missed static keywordRocky04
2024-01-15Merge branch 'master' into test-mode-supportRocky04
2024-01-15Change to control complete cbRocky04
2024-01-15Add DWC2 Test Mode SUpportRocky04
2024-01-12- change tuh_event_hook_cb, tud_event_hook_cb to weak default implementationhathach
- change code style
2023-11-24add optional event hook callback tud_event_hook_cb() and tuh_event_hook_cb()hathach
2023-11-23Add optional hooks for DCD and HCD eventsAngus 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]>
2023-09-14BugRocky04
2023-09-14Fixign errorsRocky04
2023-09-14Missing semicolonRocky04
2023-09-14SOF ISR controlRocky04
2023-09-06minor debug clean uphathach
2023-08-15more minor clean uphathach
- also rename usbh_classdriver.h to usbh_pvt.h to consitent with usbd
2023-08-08Bad line break at startRocky04
2023-08-08Remove port from SOF callbackRocky04
2023-08-08Adding support for a SOF callbackRocky04
2023-08-07Correcting commentsRocky04
2023-08-07Fixing wrong callback placementRocky04
2023-08-02Set unmounted on configuration resetRocky04
2023-07-20improve logging, allow easier to turn off usbd, driver logginghathach
can be useful when focusing on let's say usbh
2023-06-07able to response with good crchathach
2023-05-16usbd: fix control transfer issue for chipidea hs when previous status and ↵hathach
new setup complete in the same isr frame change usbd edpt busy/stalled/claimed value to 0/1 instead of (true/false) since they are 1-bit field.
2023-03-22use tud_inited() instead of tusb_inited()hathach
2023-03-17fix trailing space and new linehathach
temporarily disable codespell
2023-02-28Merge pull request #1828 from HiFiPhile/stm32_fsdevHa Thach
stm32_fsdev & ISO EP buffer allocation improvements
2023-02-28rename ep_num to ep_idx, minor clean uphathach
2023-02-22use tu_static instead of static _fuzz_threadhathach
2023-02-22rename maros from FUZZ to _FUZZ, change TU_STATIC to static _fuzz_threadhathach
2023-01-20fix: Change all static variables to thread when fuzzingNathaniel Brough