| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-03-16 | add ra4m1_ek board | hathach | |
| 2023-03-16 | rename ra board name | hathach | |
| 2023-03-16 | rename file link to rusb2 | hathach | |
| 2023-03-16 | fix HAL_Delay no effect bug on st platform | tyustli | |
| 2023-03-11 | remove ra submodules | hathach | |
| 2023-03-11 | Merge branch 'master' into renesas-ra | hathach | |
| 2023-03-10 | fix ci | hathach | |
| 2023-03-10 | remove the rest of mcu submodules | hathach | |
| 2023-03-10 | remove most of the submodules | hathach | |
| 2023-03-10 | starting to remove submodule cmsis5 and nrfx | hathach | |
| 2023-03-09 | Merge pull request #1931 from branalba/master | Ha Thach | |
| For STM32H7 BSP boards, initialize RCC_...TypeDef structs as empty | |||
| 2023-03-08 | Merge branch 'master' into renesas-ra | hathach | |
| 2023-03-06 | Merge pull request #1933 from kilograham/rp2040_llvm_tweaks | Ha Thach | |
| make rp2040 code compile cleanly with LLVM embedded toochain for ARM. | |||
| 2023-03-06 | more ci fix | hathach | |
| 2023-03-06 | fix iar ci | hathach | |
| 2023-03-06 | change gcc to 10.3 due to freeRTOS warning | hathach | |
| 2023-03-03 | clean up f0 warnings | hathach | |
| 2023-03-02 | rp2040: Fixup lib and example compile for LLVM Embedded Toolchain for ARM | graham sanderson | |
| 2023-02-28 | In some STM32H7 BSP variants, initialized RCC_PeriphCLKInitStruct instances ↵ | Brandon Alba | |
| as empty | |||
| 2023-02-28 | Initialized all RCC init structs for all STM32H7 BSP variants as empty | Brandon Alba | |
| 2023-02-22 | Merge pull request #1796 from Sinitax/master | Ha Thach | |
| Fix ifdefs for disabled uart stdio in rp2040 family | |||
| 2023-02-22 | revert some changes | hathach | |
| 2023-02-22 | move check LIB_PICO_STDIO_UART to board.h | hathach | |
| 2023-02-14 | update pico-pio-usb to include data pid fix (0.5.1) | hathach | |
| 2023-02-13 | forget to add metro 1011 linker | hathach | |
| 2023-02-13 | add uf2 linker for metro m7 1011 | hathach | |
| 2023-02-13 | fix typo | hathach | |
| 2023-02-13 | add metro m7 1011 board def (not running yet) | hathach | |
| 2023-02-12 | Turn data cache on | caleb crome | |
| This fixes https://github.com/hathach/tinyusb/issues/1894. I'm not really sure if this is the correct way to fix it, and I have not tested on all the rest of the family members, however, this lets the i.MX1010 work again. The problem: the latest SDK update does not enable the data cache by default This causes an assert in board_init() when attemping to control clock gating. I haven't investigated further as to *why* it's a problem, but it is a problem. | |||
| 2023-02-06 | * don't force dependency on pico-pio-usb submodule | graham sanderson | |
| * suppress compiler warning/errors especially in pico-pio-usb * disable use of pico-pio-usb on gcc 11.3+ for now as it doesn't compile | |||
| 2023-01-31 | Merge pull request #1779 from P33M/rp2040_device_babble_fix | Ha Thach | |
| rp2040: avoid device-mode state machine hang | |||
| 2023-01-30 | Merge pull request #1768 from ftdigdm/port-ft90x | Ha Thach | |
| Port ft90x | |||
| 2023-01-30 | iar L4 | hathach | |
| 2023-01-30 | iar g4 | hathach | |
| 2023-01-30 | Merge branch 'port-ft90x' of https://github.com/ftdigdm/tinyusb into port-ft90x | Gordon McNab | |
| 2023-01-30 | iar h7 | hathach | |
| 2023-01-30 | Removed unrequired header file from debugging. | Gordon McNab | |
| 2023-01-30 | Merge branch 'master' into support-iar | hathach | |
| 2023-01-30 | Merge branch 'master' into port-ft90x | Ha Thach | |
| 2023-01-30 | Merge pull request #1866 from DRNadler/mimxrt1024_evk | Ha Thach | |
| Add support for NXP's mimxrt1024_evk evaluation board. | |||
| 2023-01-30 | suppress rt1024 warnings and fix typo | hathach | |
| 2023-01-26 | Add support for nucleo-h723zg | Jerzy 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-26 | boards/stm32h7 update gpio clocks | Jerzy 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-24 | rp2040: avoid device-mode state machine hang | Jonathan 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-24 | add iar --fpu option | hathach | |
| 2023-01-22 | update stm32f7 to build with iar | hathach | |
| 2023-01-22 | update f4 to build with iar | hathach | |
| 2023-01-21 | add icf for f1 mini2 | hathach | |
| 2023-01-21 | update stm32f1 to support iar build | hathach | |
| 2023-01-20 | Add support for NXP's mimxrt1024_evk evaluation board. | Dave Nadler | |
| Tested AOK with device\cdc_msc_freertos example. | |||
