| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-01-06 | Merge branch 'master' into fix-fifo-memory-overflow | hathach | |
| 2022-12-24 | add tuh_cdc_peek() | hathach | |
| 2022-12-22 | fix stream read count computation | hathach | |
| 2022-12-22 | moving edpt_stream API into common tusb.c | hathach | |
| 2022-12-21 | rename TU_LOG_VAR to TU_LOG_PTR, print out setup of failed control transfer ↵ | hathach | |
| when LOG=1 | |||
| 2022-12-20 | fix hid host incorrect edpt release if failed to transmit | hathach | |
| add CDC_CONTROL_LINE_STATE_DTR/RTS, TUSB_INDEX_INVALID enum | |||
| 2022-12-16 | add common EPSIZE for bulk/iso in full and highspeed | hathach | |
| adding cdc host fifo tx/rx | |||
| 2022-12-16 | update fifo per PanRe review | hathach | |
| 2022-12-15 | use OSAL_MUTEX_REQUIRED to replace CFG_FIFO_MUTEX/TUSB_OPT_MUTEX | hathach | |
| add macro to swallow mutex API in order to simplify code with mutex | |||
| 2022-12-12 | fix int conversion warnings | hathach | |
| 2022-12-10 | clean up | hathach | |
| 2022-12-09 | add fifo implementation note | hathach | |
| - handle/fix double overflowed with write() - other minor clean upp | |||
| 2022-12-08 | enhance tu fifo | hathach | |
| - rename wr/rd absolute to index, and rel to pointer. - fix crash with _tu_fifo_remaining() - change get_relative_pointer() to idx2ptr() and merge with _ff_mod() | |||
| 2022-12-04 | Fix typos | Bastien Nocera | |
| 2022-11-28 | Retry a few times with transfers in enumeration since device can be unstable ↵ | hathach | |
| when starting up | |||
| 2022-11-04 | fix -wconversion-int and add minor comment | hathach | |
| 2022-11-04 | Merge branch 'master' into rp2040-hcd-bulk | Ha Thach | |
| 2022-10-13 | Add support for STM32U5 mcu | LynnL4 | |
| 2022-10-06 | Microchip PIC24/dsPIC33 device mode support | ReimuNotMoe | |
| 2022-09-13 | IAR doesn't support __attribute__((fallthrough)) | Ben Avison | |
| IAR generates warning Pa167 'the "fallthrough" attribute is not supported'. It doesn't generate warnings when one switch case falls through to another, so simply make TU_ATTR_FALLTHROUGH expand to an empty string. Also replace one instance of __attribute__ with the macro. | |||
| 2022-07-14 | abtract attribute fallthrough | hathach | |
| 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-24 | add more warning option, also fix -Wconversion with rp2040 | hathach | |
| -Wuninitialized, -Wunused, -Wredundant-decls | |||
| 2022-06-08 | make all hcd/dcd function used in isr into ram with ↵ | hathach | |
| __no_inline_not_in_flash_func() for faster irq handling result is 1KB of code moved from rom -> ram | |||
| 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-06-02 | add support for renesas ra family of mcus | Rafael Silva | |
| Signed-off-by: Rafael Silva <[email protected]> | |||
| 2022-05-31 | Merge pull request #1381 from hathach/add-sof-isr | Ha Thach | |
| Add SOF IRQ Handler | |||
| 2022-05-24 | Merge pull request #1451 from kasjer/kasjer/pic32-sanity-fixes | Ha Thach | |
| pic32 sanity fixes | |||
| 2022-05-21 | Merge branch 'master' into ch32v307 | Ha Thach | |
| 2022-05-13 | changes proposal to audio feedback computation | hathach | |
| 2022-05-01 | Add TU_BREAKPOINT for mips architecture | Jerzy Kasenberg | |
| _mips is provided by xc32-gcc | |||
| 2022-04-27 | clean up | hathach | |
| 2022-04-27 | add TU_ATTR_FAST_FUNC for rp2040 __not_in_flash() section | hathach | |
| 2022-04-22 | keep up with pio usb | hathach | |
| 2022-04-20 | add tud_task_ext(), tuh_task_ext() as exteneded version that take timeout ↵ | hathach | |
| and in_isr also allow exit tud_task,tuh_task after processing all events for running other background task for user | |||
| 2022-04-17 | tusb_types: | Skyler Mansfield | |
| Added descriptive strings for edpt_dir and edpt_type | |||
| 2022-03-23 | Clean up driver | Greg Davill | |
| 2022-03-22 | Fix typo | Greg Davill | |
| 2022-03-22 | Add WCH CH32V307 port | Greg Davill | |
| Add WCH mcu submodule Add CH32V307V-R1-1v0 bsp | |||
| 2022-03-19 | Implement power of two, shift, and float calculation | Reinhard Panhuber | |
| 2022-03-13 | add synchronous (blocking) support for usbh control transfer | hathach | |
| - add synchronous version of all get descriptor API - update bare example to use sync API for string descriptor - change order of index, language_id in tuh_descriptor_get_string() to match similar API of libusb - add index to tuh_descriptor_get_hid_report() | |||
| 2022-03-10 | remove obsolete device state | hathach | |
| 2022-03-10 | merge control stage host and device value | hathach | |
| 2022-03-09 | implement tu_edpt_release() | hathach | |
| 2022-03-09 | adding tusb_private.h to implement common edpt claim | hathach | |
| 2022-03-09 | add tusb_debug.h remove tusb_error.h | hathach | |
| move debug utils to new header | |||
| 2022-03-07 | Merge pull request #1374 from kasjer/kasjer/stm32wb55 | Ha Thach | |
| stm32wb55 support | |||
| 2022-03-07 | Add support for STM32WB mcu | Jerzy Kasenberg | |
| 2022-03-04 | add tuh_descriptor_get() and tuh_descriptor_device_get() | hathach | |
