summaryrefslogtreecommitdiff
path: root/hw
AgeCommit message (Collapse)Author
2024-07-12Merge pull request #2688 from HiFiPhile/3511_rtosHa Thach
LPC55: FreeRTOS fix
2024-07-11Pre-commit fixes.Brent Kowal
Resolve codespell and EOF errors found in the pre-commit CI task.
2024-07-10Minor build system fixBrent Kowal
Correct a case-sensitive file extension issue in the MAX32690 build scripts. Did not present itself as an issue under MinGW or MSYS, just Linux.
2024-07-10BSP CleanupBrent Kowal
- Added MSDK flash rules for CMake - Removed partial IAR support. Uniform GCC support across MAX32 parts - Updated build scripts for correctly signing the MAX32651 - Added README files for the BSPs to describe flashing and limitiations
2024-07-10skip FLASH_ function to reduce dependencyhathach
2024-07-10enable full 224KB flash for ch32v203 with flash enhanced read mode in ↵hathach
SystemInit (better with startup). add flash with wlink-rs
2024-07-05add board_reset_to_bootloader(), try to implement that for ch32v203 but not ↵hathach
working yet
2024-07-02MAX32650/1/2 SupportBrent Kowal
Added support for the MAX32650/1/2 series parts - MAX32650FTHR, MAX32650EvKit, MAX32651EvKit - Added special flash rule for MAX32651 due to signing required - Added depencies to flash-msdk rules for executable
2024-07-02MAX32666 SupportBrent Kowal
Added support for the MAX32666, Boards MAX32666EvKit and MAX32666FTHR.
2024-07-02Build System UpdatesBrent Kowal
Updated MAX32690 and MAX78002 linker and cmake scripts to work with CMake + Ninja build system. Verified all example projects build with the tools/build.py script for both board, and both make and cmake build systems.
2024-07-01Add MAX78002 SupportBrent Kowal
-Added support for MAX78002, MAX78002EVKIT -Added provisions for remaining MAX32 USB parts
2024-07-01AD-APARD32690-SL Support and CleanupBrent Kowal
- Added BSP for AD-APARD32690-SL board (apard32690) - Ran clang-formatting on previously committed code - Removed LOG messages from dcd_max32.c
2024-06-28Initial Commit for MAX32 SupportBrent Kowal
Initial commit for the port of TUSB to MAX32xxx parts, staring with MAX32690 - Added dcd_max32.c (based on dcd_musb.c) for interfacing with the peripheral - Added MAX32690 part family support - Added max32690evkit board support - Updated examples for unique EP number requirement - Updated get_deps.py to fetch the MSDK Known Issues / Additional Testing Required - msc_dual_lun only shown 1 volume on Windows - USBTMC does not have a valid Windowsdriver - DFU does not have a valid Windows driver - WebUSB is "Device not Recognized" - Need to test build scripts with IAR and Clang
2024-06-27Make FreeRTOS config work with Cortex-M33.HiFiPhile
2024-06-27update lpc55 bsp for rtos use.HiFiPhile
2024-06-25change COMPILE_DEFINE to CFLAGS_CLI for cmake/makehathach
2024-06-21add new ch32v203g6u board, sysfreq is defined in board.cmake/mkhathach
2024-06-18add optional COMPILE_DEFINE from cmake clihathach
2024-06-15Merge pull request #2672 from tinic/masterHa Thach
Add support for STM32U535xx/STM32U545xx
2024-06-14minor updatehathach
2024-06-14more updatehathach
2024-06-14add ch32v103 bsp support, compile but does not run, probably due to ↵hathach
compile/linker issue
2024-06-14use stock core_riscv.h for ch32 v2 v3hathach
2024-06-12Use STREQUAL instead of EQUAL to fix the cmake build.Tinic Uro
2024-06-12Use correct definition.Tinic Uro
2024-06-12Fix pin definitions.Tinic Uro
2024-06-12Merge branch 'hathach:master' into mastertinic
2024-06-12Make it work.Tinic Uro
2024-06-12Add missing files.Tinic Uro
2024-06-12Add stm32u545nucleo board.Tinic Uro
2024-06-06add c6 devkit, tested with max3421ehathach
2024-05-31Merge branch 'master' of https://github.com/hathach/tinyusb into rx_fbHiFiPhile
2024-05-24increase version as pre-releases, still need more clean up before actual relesaehathach
2024-05-24change default clock to 144mhzhathach
2024-05-24add ch32 support for fsdev driver. v20x can select fsdev or usbfs with ↵hathach
make/cmake PORT=0/1. default to fsdev
2024-05-24wch usbfs/usbhs need to specify which driver to use. for v307 default to ↵hathach
highspeed
2024-05-21- minor update to ep_set_response_and_toggle/xfer_data_packethathach
- merge USBHS_ISO_ACT_FLAG, USBHS_TRANSFER_FLAG handler since they are similar - improve uart output - add note for link speed in bus reset
2024-05-20use correct wch usbhs, usbfs for ch32v307 using CFG_TUD_MAX_SPEEDhathach
2024-05-20- update ch203 family to allow to specify flash and ram size. Introducehathach
- add ch32v203_ro_1v0 board - CFG_EXAMPLE_MSC_DUAL_READONLY to build msc_dual_lun for ch32v203
2024-05-20temp codehathach
2024-05-16change default risv-gcc to riscv-none-elf- and add _zicsr extensionhathach
add cmake for ch32v20x, skip freertos examples for CH32V20X, also skip net webserver due to lack of RAM update to use openocd with wlinke adapter
2024-05-15add CH32V20x USB OTG/FS driverMatthew Tran
2024-05-15implement max3421e hcd_edpt_abort_xfer()hathach
2024-05-13Ci tweak3 (#2643)Ha Thach
- enable --one-per-family to build 1 board per family, also skip family if board specified in -b also present - minimize ci run for push event - only build one board per family - skip hil test on both pi4 and hfp - full build will be runn for PR event - IAR always build 1 board per family regardless of event - update build.py to optimize make - remove all setup python since we don't really need it
2024-05-11Merge remote-tracking branch 'remotes/tinyusb/master' into rx_fbHiFiPhile
2024-05-10More ci tweak (#2636)Ha Thach
* change concurrency group to ${{ github.workflow }}-${{ github.ref }} * use argparse for build.py hil_test.py, remove the need to install click * move ci win/mac to build_cmake.yml * rename build_family.yml to build_util.yml * build_util.yml support esp32 * integrate build-espressif into build.yml * build.py support make with --board option * add get_deps action * update hil test to reuse action
2024-05-10Merge remote-tracking branch 'remotes/tinyusb/master' into rx_fbHiFiPhile
2024-05-09Rework ci (#2631)Ha Thach
* add name field to usbd_class_driver_t * ci: use set matrix py script * add riscv32 and cmake support for ch32v307, fomu, gd32vf103 * update build_cmake.py to take --family --board --toolchain * separate hil test to its own workflow * move esp32 board into separated hil json * add make build to ci * remov build_make.py * build.py support esp32 board * setup toolchain support esp-idf * fix missing click * merge family in matrix build to reduce jobs * skip cifuzz since it still has issue with get_deps and click
2024-05-08Merge remote-tracking branch 'remotes/tinyusb/master' into rx_fbHiFiPhile
2024-05-06fix typohathach