summaryrefslogtreecommitdiff
path: root/src/class
AgeCommit message (Collapse)Author
2022-12-04more typoshathach
2022-12-04Fix typosBastien Nocera
2022-11-23rework tuh_msc_complete_cb_t signature to use new tuh_msc_complete_data_thathach
add user arg to all scsi command API that support complete callback
2022-11-21Merge branch 'master' into midihostAndrzej Tokarski
2022-11-21Explicit type conversionatoktoto
2022-11-21Explicit type conversionatoktoto
2022-11-21Fix usb-hub data transfer problems by AndrewCaponatoktoto
2022-11-21whitespacehathach
2022-11-19Fix usb hubsatoktoto
2022-11-13Added explicit conversionsatoktoto
2022-11-13Removed unused function prototypeatok
2022-11-13Simple MIDI rx exampleatok
2022-11-13Get rid of implicit uint conversionsatok
2022-11-13Make USB MIDI device code allow a device with no Audio Control interfacerppicomidi
2022-11-13Add MIDI host support to tinyusbrppicomidi
2022-10-26PanRe refactor applied: s{_int_ctr_}{_int_}g; s{_INT_CTR_}{_INT_}g;Mark K Cowan
2022-10-26clean up descriptor search for interrupt endpointMark K Cowan
2022-10-25Merge pull request #1698 from battlesnake/fix-attrs-on-struct-memberHa Thach
do not apply storage attributes to member of struct
2022-10-24fixed spec referenceMark K Cowan
2022-10-24keep alignment specMark K Cowan
2022-10-23UAC2 supports interrupt-endpoint for providing control-change notifications ↵Mark K Cowan
to the host
2022-10-20do not apply storage attributes to member of structMark K Cowan
2022-10-19Merge pull request #1668 from kkitayam/add_support_for_mjpegHa Thach
Add support for MJPEG on UVC
2022-10-15hid: add configurable report size for fidogaoyichuan
2022-10-15hid: add fido hid descriptor templatesgaoyichuan
2022-10-12Fix pointer type to calculate streaming parameterkkitayam
2022-10-07Fix max payload size to clip at 1023kkitayam
2022-10-03Fix descriptor searchingkkitayam
2022-09-17audio_device: prototype added for function referenced before useMark K Cowan
2022-09-13Move variable into its own curly-brace scopeBen Avison
IAR generates warning Pe546 'transfer of control bypasses initialization of variable "invInvTag"'.
2022-09-13Remove unused static dataBen Avison
This affects struct rspMsg in usbtmc_app.c (unconditionally) and uint8_t termChar in usbtmc_device.c (when NDEBUG is defined). IAR generates warning Pe550 'variable was set but never used'.
2022-09-13Don't assume different enum types can be combinedBen Avison
IAR generates warning Pa089 'enumerated type mixed with another enumerated type'.
2022-09-13Don't assume ints automatically convert to enumsBen Avison
IAR generates warning Pe188 'enumerated type mixed with another type'.
2022-09-13Remove unreachable codeBen Avison
IAR generates warning Pe111 'statement is unreachable'. In a couple of cases, replace return statements with TU_ATTR_FALLTHROUGH; because some compilers apparently can't figure out that the return statements are unreachable but do whinge about an imagined fall-through without them!
2022-09-13Refactor pointer arithmetic on void*Ben Avison
This is a GCC extension, illegal in ISO C. IAR generates errors Pa152 'these operand types cannot be used here' and Pe852 'expression must be a pointer to a complete object type'. Replace with uint8_t*.
2022-09-13Fix compile errorskkitayam
2022-09-13Change images to MJPEGkkitayam
2022-08-09dfu: Allow DFU coexistence with other interfacesJerzy Kasenberg
dfu_moded_open() only works correct when its called on DFU interface descriptor. It means that DFU is the only one interface in configuration or driver is called after all others interface drivers were tried and gave up. If other interface is supported and but driver for DFU is called first (this is the case for BTH and RNDIS). Code after while loop (that was not entered) has an TU_ASSERT that will make set_configuration to fail. Now TU_VERIFY is called first to make sure open code is called for DFU only and not other interface descriptors like in other drivers.
2022-07-19Merge pull request #1514 from maddyaby/audiod_typoHa Thach
Fix typo in audiod_rx_done_cb in audio_device.c
2022-07-19Merge pull request #1568 from hathach/revert-hid-callback-len-temporarilyHa Thach
temporarily revert len back to uint8_t in tud_hid_report_complete_cb() 0.14.0 release
2022-07-18Merge pull request #1531 from pigrew/usbtmc_highspeedHa Thach
USBTMC: Fixes and support for high-speed USB
2022-07-17temporarily revert len back to uint8_t in tud_hid_report_complete_cb() for ↵hathach
up coming release
2022-07-09USBTMC: explicit type conversions fixNConrad
2022-07-01mimxrt: Change OPT_MCU_MIMXRT1xXX to OPT_MCU_MIMXRT.robert-hh
Which fits both MIMXRT10XX and MIMXRT11XX.
2022-06-30mimxrt: Add/change definitions for MIMXRT11XX boards.robert-hh
These are mostly identical to the MIMXRT10XX, with one tiny difference.
2022-06-27suppress error with net examplehathach
2022-06-27fix all warnings with host rp2040hathach
2022-06-27fix all device examples warningshathach
2022-06-27Merge branch 'master' into add-more-warningshathach
2022-06-27change report len in hid API from uint8_t to uint16_thathach
since HS interrupt endpoint can be up to 1024, 8-bit is not enough. affected APIs are: - tud_hid_n_report() / tud_hid_report() - tud_hid_report_complete_cb()