| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-12-04 | more typos | hathach | |
| 2022-12-04 | Fix typos | Bastien Nocera | |
| 2022-11-23 | rework tuh_msc_complete_cb_t signature to use new tuh_msc_complete_data_t | hathach | |
| add user arg to all scsi command API that support complete callback | |||
| 2022-11-21 | Merge branch 'master' into midihost | Andrzej Tokarski | |
| 2022-11-21 | Explicit type conversion | atoktoto | |
| 2022-11-21 | Explicit type conversion | atoktoto | |
| 2022-11-21 | Fix usb-hub data transfer problems by AndrewCapon | atoktoto | |
| 2022-11-21 | whitespace | hathach | |
| 2022-11-19 | Fix usb hubs | atoktoto | |
| 2022-11-13 | Added explicit conversions | atoktoto | |
| 2022-11-13 | Removed unused function prototype | atok | |
| 2022-11-13 | Simple MIDI rx example | atok | |
| 2022-11-13 | Get rid of implicit uint conversions | atok | |
| 2022-11-13 | Make USB MIDI device code allow a device with no Audio Control interface | rppicomidi | |
| 2022-11-13 | Add MIDI host support to tinyusb | rppicomidi | |
| 2022-10-26 | PanRe refactor applied: s{_int_ctr_}{_int_}g; s{_INT_CTR_}{_INT_}g; | Mark K Cowan | |
| 2022-10-26 | clean up descriptor search for interrupt endpoint | Mark K Cowan | |
| 2022-10-25 | Merge pull request #1698 from battlesnake/fix-attrs-on-struct-member | Ha Thach | |
| do not apply storage attributes to member of struct | |||
| 2022-10-24 | fixed spec reference | Mark K Cowan | |
| 2022-10-24 | keep alignment spec | Mark K Cowan | |
| 2022-10-23 | UAC2 supports interrupt-endpoint for providing control-change notifications ↵ | Mark K Cowan | |
| to the host | |||
| 2022-10-20 | do not apply storage attributes to member of struct | Mark K Cowan | |
| 2022-10-19 | Merge pull request #1668 from kkitayam/add_support_for_mjpeg | Ha Thach | |
| Add support for MJPEG on UVC | |||
| 2022-10-15 | hid: add configurable report size for fido | gaoyichuan | |
| 2022-10-15 | hid: add fido hid descriptor templates | gaoyichuan | |
| 2022-10-12 | Fix pointer type to calculate streaming parameter | kkitayam | |
| 2022-10-07 | Fix max payload size to clip at 1023 | kkitayam | |
| 2022-10-03 | Fix descriptor searching | kkitayam | |
| 2022-09-17 | audio_device: prototype added for function referenced before use | Mark K Cowan | |
| 2022-09-13 | Move variable into its own curly-brace scope | Ben Avison | |
| IAR generates warning Pe546 'transfer of control bypasses initialization of variable "invInvTag"'. | |||
| 2022-09-13 | Remove unused static data | Ben 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-13 | Don't assume different enum types can be combined | Ben Avison | |
| IAR generates warning Pa089 'enumerated type mixed with another enumerated type'. | |||
| 2022-09-13 | Don't assume ints automatically convert to enums | Ben Avison | |
| IAR generates warning Pe188 'enumerated type mixed with another type'. | |||
| 2022-09-13 | Remove unreachable code | Ben 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-13 | Refactor 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-13 | Fix compile errors | kkitayam | |
| 2022-09-13 | Change images to MJPEG | kkitayam | |
| 2022-08-09 | dfu: Allow DFU coexistence with other interfaces | Jerzy 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-19 | Merge pull request #1514 from maddyaby/audiod_typo | Ha Thach | |
| Fix typo in audiod_rx_done_cb in audio_device.c | |||
| 2022-07-19 | Merge pull request #1568 from hathach/revert-hid-callback-len-temporarily | Ha Thach | |
| temporarily revert len back to uint8_t in tud_hid_report_complete_cb() 0.14.0 release | |||
| 2022-07-18 | Merge pull request #1531 from pigrew/usbtmc_highspeed | Ha Thach | |
| USBTMC: Fixes and support for high-speed USB | |||
| 2022-07-17 | temporarily revert len back to uint8_t in tud_hid_report_complete_cb() for ↵ | hathach | |
| up coming release | |||
| 2022-07-09 | USBTMC: explicit type conversions fix | NConrad | |
| 2022-07-01 | mimxrt: Change OPT_MCU_MIMXRT1xXX to OPT_MCU_MIMXRT. | robert-hh | |
| Which fits both MIMXRT10XX and MIMXRT11XX. | |||
| 2022-06-30 | mimxrt: Add/change definitions for MIMXRT11XX boards. | robert-hh | |
| These are mostly identical to the MIMXRT10XX, with one tiny difference. | |||
| 2022-06-27 | suppress error with net example | hathach | |
| 2022-06-27 | fix all warnings with host rp2040 | hathach | |
| 2022-06-27 | fix all device examples warnings | hathach | |
| 2022-06-27 | Merge branch 'master' into add-more-warnings | hathach | |
| 2022-06-27 | change report len in hid API from uint8_t to uint16_t | hathach | |
| 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() | |||
