summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2025-06-04chore: squash previous commits from other branchesJames Sandison
2025-05-19dwc2 only enter critical in isr with multiple core CPUshathach
2025-05-16follow up to pr3118, interface also end with IAD. Add more checkshathach
2025-04-18enum For string descriptor (langid, manufacturer product, serila): always ↵hathach
get the first 2 bytes to determine the length first. otherwise, some device may have buffer overflow.
2025-03-24device cdc: rename tud_cdc_configure_fifo/_t to tud_cdc_configure/_thathach
add tx_overwritabe_if_not_connected for cdc driver configure
2025-03-06hack: force/overwrite endpoint mps to 64 for device that incorrectly report ↵hathach
512 bytes for bulk in fullspeed mode.
2025-03-06midi host: skip rx data with all zeroeshathach
2025-03-05Merge branch 'master' into fork/atoktoto/midihosthathach
# Conflicts: # src/host/usbh.c
2025-03-03- add tuh_descriptor_get_string_langid() APIhathach
- host enumeration always get language id, manufacturer, product and serial string. Which is required by some device such as 8bitdo
2025-02-24add tuh_midi_descriptor_cb()hathach
2025-02-21Merge branch 'master' into fork/atoktoto/midihosthathach
# Conflicts: # src/host/usbh.c
2025-02-17usbh always retry control transfer (max 3) in case of XFER_RESULT_FAILED.hathach
added tuh_connected()
2025-02-13update midi host to use endpoint stream APIhathach
2024-12-17enable CFG_TUD/THU_MEM_DCACHE_ENABLE for imxrt with M7 by defaulthathach
2024-11-28made change per reviews, remove dcd_edpt_close(), rename and move thing aroundhathach
2024-11-28Merge branch 'master' into fork/pschatzmann/rp2040-isohathach
2024-11-27Add support for the STM32C0 and the NUCLEO-C071RB.David (Pololu)
2024-11-27Fix 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-11-27default CFG_TUH_DWC2_DMA_ENABLE to 0hathach
2024-11-27update device_info example to work with p4 dcachehathach
2024-11-26msc host work ok with p4 dmahathach
2024-11-25change dcd_dcache_*() API return type from void to boolhathach
2024-11-22TUD_EPBUF_TYPE_DEF ncm_devicehathach
2024-11-22apply TUD_EPBUF_DEF for device: bth, dfu, hid, mschathach
2024-11-21use TUD_EPBUF_DEF to declare buffer memory for midihathach
2024-11-21- move freertos_hooks to board.chathach
- add device/midi_test_freertos example - update bth/dfu/midi device for cache line size
2024-11-21make sure usb buffer occupies whole cache line when DCACHE is enabled for ↵hathach
msc,cdc,hid HIL enable device DMA for p4
2024-11-20add CFG_TUD_MEM_DCACHE_ENABLE, CFG_TUD_MEM_DCACHE_LINE_SIZE optionhathach
2024-11-19Merge pull request #2881 from hathach/enhance-dwc2-dcdHa Thach
2024-11-16Make HS USB default for STM32H7RSChintalagiri Shashank
2024-11-16Add support for STM32H7RSxxChintalagiri Shashank
2024-11-14rename CFG_TUD_DWC2_DMA to CFG_TUD_DWC2_DMA_ENABLEhathach
2024-11-08get hcd work esp32p4 but only in slave mode. In DMA channel's HCDMA is ↵hathach
increased but data transfer over USB is not correct.
2024-11-04add tusb_time_millis_api() and default/weak tusb_time_delay_ms_api(). Which ↵hathach
is required for host and some device without RTOS.
2024-10-29update handle in/out, separate allocated and xfer result to make it easier ↵hathach
to manage. Fix channel disable/deallocated.
2024-10-25more progress on dwc2 hcd, initial code for edpt xferhathach
2024-10-18testing hcd with f723 due to h743eval issue with mfx vbus drive.hathach
2024-10-15RP2040 New ISO APIpschatzmann
2024-10-15move core init code to dwc2 common. update/correct build for esppressifhathach
2024-10-14change the tusb_rhport_init_t struct, exclude the rhport to make API more ↵hathach
consistent
2024-10-11change tusb_init(), tusb_rhport_init() to use init struct for expandabilityhathach
2024-10-10add new tusb_int_handler(rhport, in_isr) as common irq handlerhathach
update tusb_init() to take rhport and role, defined as macro with optional argument for backward compatible
2024-10-02Merge branch 'master' into fork/Maerdl/masterhathach
2024-10-01support stm32U0 deviceHaefner, Martin
2024-09-30added p4, seems to work well and enumeratedhathach
2024-09-30try to add esp32 p4 and esp-idf v5.3 supporthathach
2024-09-24add CFG_TUD_DWC2_DMA, make it compile time optionhathach
2024-09-11Merge pull request #2450 from HiFiPhile/vendor_fifoHa Thach
Allow vendor class to be used without FIFO.
2024-09-10reduce ep stream footprint by using is_mps512 since it only support bulk so farhathach
2024-09-10remove vendor ep_addr, use stream api insteadhathach