summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-01-31move errata to end of c filehathach
2023-01-31add e15 prefix or walkaround related functions, also minor refactorhathach
2023-01-31minor clean uphathach
2023-01-30Merge pull request #1768 from ftdigdm/port-ft90xHa Thach
Port ft90x
2023-01-30Merge pull request #1876 from hathach/support-iarHa Thach
Support iar build
2023-01-30iar L4hathach
2023-01-30Merge branch 'port-ft90x' of https://github.com/ftdigdm/tinyusb into port-ft90xGordon McNab
2023-01-30Merge branch 'hathach:master' into port-ft90xGordon McNab
2023-01-30Merge pull request #1870 from DRNadler/WindowsBuildFixHa Thach
Windows build fix for some mingw gnu make situations
2023-01-30minor clean uphathach
2023-01-30iar g4hathach
2023-01-30Merge branch 'port-ft90x' of https://github.com/ftdigdm/tinyusb into port-ft90xGordon McNab
2023-01-30iar h7hathach
2023-01-30Removed unrequired header file from debugging.Gordon McNab
2023-01-30Merge branch 'master' into support-iarhathach
2023-01-30hardcoded configPRIO_BITS for IAR build to pass CIhathach
2023-01-30fix typohathach
2023-01-30Merge branch 'master' into port-ft90xHa Thach
2023-01-30Merge pull request #1866 from DRNadler/mimxrt1024_evkHa Thach
Add support for NXP's mimxrt1024_evk evaluation board.
2023-01-30suppress rt1024 warnings and fix typohathach
2023-01-30Merge pull request #1875 from silvergasp/seed_corpusHa Thach
feat(fuzz): Adds seed corpus for cdc and msc classes
2023-01-30Merge pull request #1872 from kasjer/kasjer/nucleoh723Ha Thach
Add support for nucleo-h723zg
2023-01-29feat(fuzz): Adds seed corpus for cdc and msc classesNathaniel Brough
2023-01-26Add support for nucleo-h723zgJerzy Kasenberg
Mostly copy of stm32h743nucleo. Linker script generated by STM32CubeIDE. Since this device has only one HS USB board.h contains few defines that map on board HS USB to FS because there is no ULPI chip mounted on Nucleo board. For FreeRTOS build: Set interrupt priority for HS always and for FS if exists.
2023-01-26boards/stm32h7 update gpio clocksJerzy Kasenberg
GPIOE was turned on twice, changed to missing GPIOF. GPIOI is not present on all boards notably STM32H723 so clock in turned on only if present.
2023-01-24rp2040: shuffle hw_endpoint membersJonathan Bell
Ordering by element size prevents alignment holes, and as a consequence the host mode version of the struct is the same size as device, as pad bytes at the end are used instead.
2023-01-24rp2040: avoid device-mode state machine hangJonathan Bell
Don't mark IN buffers as available during the last 200us of a full-speed frame. This avoids a situation seen with the USB2.0 hub on a Raspberry Pi 4 where a late IN token before the next full-speed SOF can cause port babble and a corrupt ACK packet. The nature of the data corruption has a chance to cause device lockup. Use the next SOF to mark delayed buffers as available. This reduces available Bulk IN bandwidth by approximately 20%, and requires that the SOF interrupt is enabled while these transfers are ongoing. Inherit the top-level enable from the corresponding Pico-SDK flag. Applications that will not use the device in a situation where it could be plugged into a Pi 4 or Pi 400 (for example, when directly connected to a commodity hub or other host) can turn off the flag in the SDK. v2: use a field in hw_endpoint to mark pending. v3: Partial rewrite following review comments - Stub functions out if the workaround is not required - Only force-enable SOF while any vulnerable endpoints are active - Respect dcd_sof_enable() functionality - Get rid of all but necessary ifdef hackery - Fix a bug where the "endpoint lock" was used with an uninitialised pointer.
2023-01-24add iar --fpu optionhathach
2023-01-23rp2040: export hw_endpoint_start_next_buffer() and hw_endpoint_lock_update()Jonathan Bell
The next change to the driver requires the export of these functions. Leave the lock unimplemented for now. Also move hw_set and hw_clear aliases into the top-level header file.
2023-01-22When tools/top.mk finds it is running on Windows, it expects SHELL set to ↵Dave Nadler
cmd.exe. Some Windows development environments invoke a mingw version of gnu make with SHELL set to /bin/sh or /bin/bash (either explicitly or by default), in which case tinyUSB make fails when a $(shell...) command feeds DOS syntax to sh. We can't just use sh, as many Windows environments won't have unix utilities like realpath (used by this makefile for sh shell commands). This fix forces SHELL=cmd.exe on Windows and documents the issue. Also adds additional documentation to help the next person... With this fix, tinyUSB can be easily built and debugged in environments like NXP's MCUxpresso (import as a makefile project).
2023-01-22update stm32f7 to build with iarhathach
2023-01-22update f4 to build with iarhathach
2023-01-21add test_common_func.chathach
2023-01-21add icf for f1 mini2hathach
2023-01-21update stm32f1 to support iar buildhathach
2023-01-20fix: Change all static variables to thread when fuzzingNathaniel Brough
2023-01-20Add support for NXP's mimxrt1024_evk evaluation board.Dave Nadler
Tested AOK with device\cdc_msc_freertos example.
2023-01-20Add support for NXP's mimxrt1024_evk evaluation board.Dave Nadler
Tested AOK with device\cdc_msc_freertos example.
2023-01-20slightly update rule.mk for IARhathach
2023-01-20fix warnings with arithmetic on void* pointerhathach
2023-01-20add helper tu_desc_find/find2/find3hathach
2023-01-20fix warninghathach
2023-01-18Merge pull request #1847 from HiFiPhile/dwc2_iarHa Thach
dwc2: fix iar warnings
2023-01-18fix iar build with board_testhathach
2023-01-18dont use non-std strncasecmphathach
2023-01-18update iar cihathach
2023-01-18get most examples build with iarhathach
2023-01-18Allow config OS for RP2040Howard Su
2023-01-17update freertos example to build with iarhathach
2023-01-17update build script to support iar with CC=iccarm optionhathach