| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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. | |||
| 2023-01-20 | Add support for NXP's mimxrt1024_evk evaluation board. | Dave Nadler | |
| Tested AOK with device\cdc_msc_freertos example. | |||
| 2023-01-20 | fix warning | hathach | |
| 2023-01-18 | get most examples build with iar | hathach | |
| 2023-01-18 | Allow config OS for RP2040 | Howard Su | |
| 2023-01-17 | update freertos example to build with iar | hathach | |
| 2023-01-17 | update all f0 board to build with iar | hathach | |
| 2023-01-17 | update makefile to support iar build starting with stm32f070 | hathach | |
| 2023-01-12 | minor clean up. ch32v307 has issue with uart LOG=2 (skipping characters) | hathach | |
| 2023-01-12 | add button support | hathach | |
| 2023-01-12 | rename board to lower case ch32v307v-r1-1v0 | hathach | |
| 2023-01-12 | rename link file | hathach | |
| 2023-01-12 | fix redundant-decls warnings with USART_Printf_Init() | hathach | |
| 2023-01-12 | rename driver with dcd_ to be consitent with other ports | hathach | |
| 2023-01-12 | add note for openocd with wch, also add wch-riscv.cfg | hathach | |
| 2023-01-08 | temporarily suppress redundant-decls due to USART_Printf_Init() | hathach | |
| fix codespell | |||
| 2023-01-07 | Merge branch 'master' into ch32v307 | Ha Thach | |
| 2022-12-15 | Update SDK for FT9xx to include 3rdparty sources | Gordon McNab | |
| 2022-12-13 | Fix ifdefs for disabled uart stdio in rp2040 family | Louis Burda | |
| 2022-12-04 | more typos | hathach | |
| 2022-12-04 | Fix typos | Bastien Nocera | |
| 2022-11-30 | More configurable board options | Gordon McNab | |
| 2022-11-30 | Fix script issues with paths including spaces from env variable. | Gordon McNab | |
| $(FT90X_TOOLCHAIN) or even $(TOP) may have spaces. Quote to fix. | |||
| 2022-11-30 | Merge branch 'hathach:master' into port-ft90x | 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-30 | Merge pull request #1756 from benishor/master | Ha Thach | |
| Added board description for electro-smith daisy seed | |||
| 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-28 | update pico-pio-usb submodule and its warnings suppress | hathach | |
| 2022-11-24 | Update to v2.6.0 library | Gordon McNab | |
| 2022-11-24 | Added board description for electro-smith daisy seed | Adrian Scripca | |
| 2022-11-21 | Merge branch 'master' into midihost | Andrzej Tokarski | |
| 2022-11-21 | add board_getchar() for non-blocking getchar() | hathach | |
| 2022-11-21 | host msc example work well with rp2040 pio-usb | hathach | |
| 2022-11-19 | Merge branch 'hathach:master' into midihost | Andrzej Tokarski | |
| 2022-11-18 | update uart read for lpc18/43 for testing | hathach | |
