| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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-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() | |||
| 2022-06-27 | fix most warnings with rp2040 -wconversion | hathach | |
| 2022-06-26 | USBTMC: Handle busy interrupt in. | NConrad | |
| 2022-06-24 | USBTMC: Manually stall and unstall EP when clear(ENDPOINT_HALT) is received. | NConrad | |
| 2022-06-24 | fix redundant-decls warnings by usbd/usbh | hathach | |
| 2022-06-24 | add more warning option, also fix -Wconversion with rp2040 | hathach | |
| -Wuninitialized, -Wunused, -Wredundant-decls | |||
| 2022-06-21 | Update USBTMC driver to support dynamic packet sizes (based on descriptor). | NConrad | |
| 2022-06-17 | correct bulk size for highspeed endpoint in dynamic_configuration and usbtmc ↵ | hathach | |
| exmaples | |||
| 2022-06-16 | Fix typo in audiod_rx_done_cb in audio_device.c | Maddy | |
| 2022-06-07 | add TU_ATTR_FAST_FUNC for audio sof isr call chain | hathach | |
| 2022-06-02 | rhport argument in usbd_ API() is not used (always use the initialized port) | hathach | |
| remove the usage of TUD_OPT_RHPORT in class driver | |||
| 2022-05-31 | Merge pull request #1381 from hathach/add-sof-isr | Ha Thach | |
| Add SOF IRQ Handler | |||
| 2022-05-31 | clean up tud_audio_set_itf_cb() invocation | hathach | |
| 2022-05-31 | comment out fifo count method for now | hathach | |
| 2022-05-27 | adding feedback fifo count (WIP) | hathach | |
| 2022-05-27 | wrap feedback and compute to its own struct/union | hathach | |
| 2022-05-19 | prototype for feedback method | hathach | |
| 2022-05-19 | rename tud_audio_sof_isr() to tud_audio_feedback_interval_isr() | hathach | |
| - also add interval_log2 to isr callback - also rename other variables | |||
| 2022-05-13 | fix ci build | hathach | |
| 2022-05-13 | changes proposal to audio feedback computation | hathach | |
| 2022-04-16 | Generalize feedback value min and max | Reinhard Panhuber | |
| 2022-04-09 | Introduce 3 fb calc options: NO_SOF_BY_USER, SOF_BY_AUDIO_D, SOF_BY_USER | Reinhard Panhuber | |
| 2022-04-01 | hid example work well | hathach | |
| 2022-03-20 | Disable SOF ISR feedback calcuation by default s.t. examples still work | Reinhard Panhuber | |
| 2022-03-20 | Streamline call of tud_audio_set_itf_cb() within audiod_set_interface() | Reinhard Panhuber | |
| 2022-03-20 | Add magic checks | Reinhard Panhuber | |
| 2022-03-20 | Streamline feedback calc, find fb interval from descriptors, inc. checks | Reinhard Panhuber | |
| 2022-03-19 | Implement power of two, shift, and float calculation | Reinhard Panhuber | |
| 2022-03-19 | rename usbh_edpt_open() to tuh_edpt_open() | hathach | |
| 2022-03-19 | add parse config descriptor to example | hathach | |
| move usbh_edpt_open() to public API, remove rhport from its signature | |||
| 2022-03-18 | implement tuh_edpt_xfer() for non-control | hathach | |
| 2022-03-18 | move daddr into xfer struct | hathach | |
| 2022-03-17 | rename user_arg to user_data | hathach | |
| 2022-03-17 | rename tuh_control_xfer_t to tuh_xfer_t | hathach | |
