summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2024-02-29Merge remote-tracking branch 'remotes/hathach/master' into cdch_upgradeIngHK
2024-02-26work around possible RP2040 erratumTaylor Yu
RP2040 device controller does not seem to clear pending transactions configured in EP0 buffer controls when the host aborts a control transfer. This causes assertion failures, including when a buffer AVAILABLE flag set for a previous transfer causes an unexpected transaction completion.
2024-02-26add notification support for device class USBTMC.Tommie Gannert
The ep_int_in is already used for responding to USB488 READ_STATUS_BYTE requests, but that EP is defined for all of USBTMC. This extends the functionality to let callers send notifications and receive ACKs.
2024-02-24fixed compiler warning src/tusb.cIngHK
2024-02-24Merge remote-tracking branch 'remotes/hathach/master' into cdch_upgradeIngHK
2024-02-24improved PL2303 TU_LOGsIngHK
2024-02-24improved TU_LOGsIngHK
2024-02-24small changes & code styleIngHK
2024-02-24updated contribution, readme and some commentsIngHK
2024-02-24added PL2303 supportIngHK
2024-02-24improved CP210x supportIngHK
2024-02-24improved FTDI supportIngHK
2024-02-24created set_line_coding_sequence() and void ↵IngHK
set_line_coding_stage1_complete() to be reused by FTDI & CP210x
2024-02-24fixed CFG_TUH_CDC_LINE_CONTROL_ON_ENUM handling. only set if defined. value ↵IngHK
0 is also valid
2024-02-24fixed #2448 CH34x ch34x_set_line_coding() callback bugIngHK
2024-02-24improved ACM checksIngHK
2024-02-24added continue enum after config failIngHK
2024-02-24created set_function_call()IngHK
2024-02-24changed to use of p_cdc->requested_line_stateIngHK
2024-02-24changed to use of p_cdc->requested_line_codingIngHK
2024-02-24splitted cdch_internal_control_complete() into driver's ↵IngHK
_internal_control_complete() and moved them into driver's sections. no functional change
2024-02-24only save/restore CLK_RECOVER_IRC_EN/CTRL if ↵hathach
FSL_FEATURE_USB_KHCI_IRC48M_MODULE_CLOCK_ENABLED is defined to 1
2024-02-23improved TU_LOGsIngHK
2024-02-23sorted driver functions into Control Request, Driver API, Enumeration and ↵IngHK
Helper. no functional changes
2024-02-24Merge pull request #2168 from emb4fun/nxp_k64Ha Thach
Added support for the NXP K64 series
2024-02-24fix build with cpu without USB_CLK_RECOVER using old dcd_khci driverhathach
2024-02-24frdm k64f usb work well, add kinetis_k to ci cmakehathach
2024-02-22Revert "Merge branch 'hathach:master' into MCX"Jerry Palacios
This reverts commit 6afd4a57896f9c9e794de3ab6eabc73d18be4bd0, reversing changes made to 5c14bd13da211ff2679115b0dba96ac80c1a516c.
2024-02-22Merge branch 'hathach:master' into MCXjerpa77
2024-02-22Merge pull request #2487 from hathach/update-cdc_msc_freertos-exampleHa Thach
slightly change cdc_msc_freertos example
2024-02-22slightly change cdc_msc_freertos examplehathach
2024-02-22Merge pull request #2420 from zx96/use-cfg-tud-msc-log-levelHa Thach
msc_device: Fix check for including MSC lookup tables
2024-02-20MCX A and MCX N merged to MCX familyJerry Palacios
2024-02-20video_device: fix uninitialized warningBob Abeles
2024-02-20Merge pull request #2463 from kasjer/kasjer/nrf5x-isoout-corruption-detectionHa Thach
nrf5x: Handle ISOOUT CRC errors
2024-02-19Opt-out for USB Test-ModeRocky04
2024-02-19fix wrong volatile usage in ohci gtdHa Thach
2024-02-19Merge pull request #2389 from IngHK/improve_debug_printsHa Thach
improved hex debug print, improved USBH debug prints, added pid/vid debug print
2024-02-16use rt-thread 5+ mq recv apiKai
2024-02-15Do not enable the Mode mismatch interrupt source, it is not clearedChris Desjardins
If this interrupt ever hits it will result in an infinite interrupt loop as it is never cleared.
2024-02-14fixed #2469IngHK
2024-02-12nrf5x: Handle ISOOUT CRC errorsJerzy Kasenberg
NRF5x USB controller can detect ISO OUT CRC errors. In such case USBEVENT is signaled with EVENTCAUSE_ISOOUTCRC set. Even if controller detects corrupted ISO OUT packet it allows to data transfer from ednpoint to RAM however packet is corrupted and code could just as well drop packet altogether. With current implementation incoming ISO OUT packets were put in FIFO and exact information how much data already in FIFO is correct was hard to keep track of. If was observed that on certain configurations HS hub when FS device was connected occasionally sent invalid (short) packet. In such case if packet length was reported odd audio stream was not recognizable any more. With this change corrupted packets are not passed to upper layers and are silently dropped.
2024-02-08missing \r\n after TU_LOG_BUF => moved \r\n to tu_print_buf()IngHK
2024-02-07frdmmcxa153 files addedJerry Palacios
2024-02-07Back to originalJerry Palacios
2024-02-07usbd: log outbound xfer bytes in debugAntonio Vázquez Blanco
2024-02-07Merge remote-tracking branch 'remotes/hathach/master' into improve_debug_printsIngHK
2024-02-07changes after reviewIngHK
2024-02-06Merge pull request #2442 from IngHK/hidh_mounted_fixHa Thach
HIDh tuh_hid_mounted() returns true before process set config is completed
2024-02-04Merge branch 'hathach:master' into nxp_k64Michael Fischer