| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-02-04 | change length in tud_hid_report_complete_cb() from uint8 to uint16 | hathach | |
| 2023-01-31 | fix typo issue #1859 | hathach | |
| 2023-01-30 | Merge pull request #1768 from ftdigdm/port-ft90x | Ha Thach | |
| Port ft90x | |||
| 2023-01-30 | hardcoded configPRIO_BITS for IAR build to pass CI | hathach | |
| 2023-01-30 | Merge branch 'master' into port-ft90x | Ha Thach | |
| 2023-01-20 | fix warning | hathach | |
| 2023-01-18 | fix iar build with board_test | hathach | |
| 2023-01-18 | dont use non-std strncasecmp | hathach | |
| 2023-01-18 | get most examples build with iar | hathach | |
| 2023-01-17 | update freertos example to build with iar | hathach | |
| 2023-01-07 | Merge branch 'master' into ch32v307 | Ha Thach | |
| 2022-12-05 | Merge pull request #1767 from pete-pjb/master | Ha Thach | |
| Allow the use of non-static allocation for FreeRTOS mutexes & queues | |||
| 2022-12-05 | clean osal_freertos, update freertos examples to work with ↵ | hathach | |
| configSUPPORT_DYNAMIC_ALLOCATION only note: for example to build with configSUPPORT_STATIC_ALLOCATION = 0, one of heap_n.c must be included in makefile/cmake | |||
| 2022-12-04 | more typos | hathach | |
| 2022-12-04 | Fix typos | Bastien Nocera | |
| 2022-11-30 | Add endpoint definitions for more example projects. | Gordon McNab | |
| 2022-11-30 | Add FT9xx for cdc_dual_ports | Gordon McNab | |
| Fix handling of interrupt endpoints. i.e. no ZLPs. Fix the assignation of endpoint types. Add button support for MM900evx boards. On board support do not block for UART input. | |||
| 2022-11-29 | Fix transfers issues with FT9xx | Gordon McNab | |
| Correct USB FIFO use for setup data phases (OUT transfers). We cannot stop traffic on the control endpoint so we set a flag and pull data from host when tinyUSB requests it from the USB FIFO. Extend this for all endpoints although currently not required. Rename all instances of ft90x which can apply to ft93x as ft9xx. Add support for the cdc_dual_ports example for ft9xx. Add LED pin definition for board LED in a simple to access place on the Bridgetek MM900EVx boards. | |||
| 2022-11-28 | Fix issue with the CDC SetLineCoding request | Gordon McNab | |
| The SetLineCoding would fail as host would send the SETUP OUT phase before tinyUSB had setup a transaction for it. ft9xx port would ignore the transfer since there was no valid transaction setup for it. One SETUP data phase packet is cached now. | |||
| 2022-11-21 | host msc example work well with rp2040 pio-usb | hathach | |
| 2022-11-18 | update uart read for lpc18/43 for testing | hathach | |
| 2022-10-12 | Rename descriptor macros for consistency | kkitayam | |
| 2022-10-08 | Add motion jpeg | kkitayam | |
| 2022-10-06 | Fix pointer | kkitayam | |
| 2022-09-13 | Fix compile errors | kkitayam | |
| 2022-09-13 | Change images to MJPEG | kkitayam | |
| 2022-08-23 | Remove Hardcoded interface numbers from video descriptors | Ahmed El-Sharnoby | |
| Removing the Hardcoded interface numbers from the video descriptors allow the user to add other interfaces before or after the Video Control Interface and Video Streaming Interface | |||
| 2022-08-03 | add 'stm32l052dap52' (STM32L052K8 MCU) board target | Peter Lawrence | |
| 'dap52' is Olimex's name of their STM32L052-based fork of 'dap42' | |||
| 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-12 | RP@040: rework CMake for compiler warnings | graham sanderson | |
| 2022-07-12 | minor update to webusb serial example | hathach | |
| 2022-06-29 | Merge pull request #1539 from hathach/improve-ci | Ha Thach | |
| Improve ci | |||
| 2022-06-29 | fix end symbol for samx7x and same5x | hathach | |
| 2022-06-29 | skip freertos example for F1C100S | hathach | |
| 2022-06-28 | update rp2040 warnings | hathach | |
| - remove "-Wno-stringop-overflow -Wno-array-bounds" - skip -Wconversion for gcc 9 and prior - suppress_tinyusb_warnings only when building with gcc 9 and below | |||
| 2022-06-28 | Merge branch 'master' into rp2040_warning | hathach | |
| 2022-06-27 | rework suppress_tinyusb_warnings | graham sanderson | |
| * gcc 9.2.1 has some spurious -Wconversion warnings * cmake 3.18 and above require set_target_properties to be added from the target directory (so added it to all examples) * fixed a few warnings in a couple of examples | |||
| 2022-06-27 | suppress error with net example | hathach | |
| 2022-06-27 | prevent error on specific warnings for net lwip & dual example for 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-24 | USBTMC: Update test python code to use the new pyvisa namespace, and other ↵ | NConrad | |
| misc fixes | |||
| 2022-06-24 | suppress redundant-decls warnings for freertos examples | hathach | |
| 2022-06-24 | add more warning option, also fix -Wconversion with rp2040 | hathach | |
| -Wuninitialized, -Wunused, -Wredundant-decls | |||
| 2022-06-21 | Update USBTMC descriptors to support high speed, set USB version to 2.0.0 ↵ | NConrad | |
| for all cases. | |||
| 2022-06-17 | correct bulk size for highspeed endpoint in dynamic_configuration and usbtmc ↵ | hathach | |
| exmaples | |||
