summaryrefslogtreecommitdiff
path: root/hw
AgeCommit message (Collapse)Author
2024-08-13minor update to cmake profilehathach
2024-08-13Fix stm32l0 clock init.HiFiPhile
2024-08-11fix spi_set_format() -Wnull-dereference when compiling with -Oshathach
2024-08-10fix build with rp2040 PICO_DEFAULT_SPI renamehathach
2024-08-08Merge pull request #2750 from hathach/fix-ch32v203-setupHa Thach
rework fsdev driver, fix ch32v203 race condition and stability issue
2024-08-05Merge pull request #2328 from HiFiPhile/rx_fbHiFiPhile
UAC2: Implement feedback by fifo counting.
2024-08-02add stm32f103ze_iarhathach
2024-08-01Merge pull request #2743 from hathach/header_fixGraham Sanderson
rp2040: add clocks.h as set_sys_clock_khz is moving there from stdlib.h
2024-08-01increase freerto min task stack for some stm32hathach
2024-07-29add explcit dependencygraham sanderson
2024-07-29add clocks.h as set_sys_clock_khz is moving there from stdlib.hgraham sanderson
2024-07-28Merge branch 'master' of https://github.com/hathach/tinyusb into rx_fbHiFiPhile
2024-07-25Combined DCD MUSB implementationsBrent Kowal
Combined the new MAX32 MUSB implementation with the existing (TI) implementation to provide generic code base for working the MUSB DCD peripheral. - Added abstraction calls for FIFO setup, EP registers, Ctrl registers and interrupt setup. - Combined TM4C and MSP432E into a single header file. - Created musb_max32.h, and removed the MAX32 specific C implementation. - Updated MAX32 build system to use dcd_musb.c. - Added MAX32 conditions for cdc_dual_ports example descriptors missed during first testing.
2024-07-23fsdev read/write packet use unaligned functionhathach
2024-07-23update fsdev bsp for hil testinghathach
2024-07-22fix a bug in fsdev introduced by #1942hathach
2024-07-19fix build with makehathach
2024-07-19add lpc11u37 for hil rpihathach
2024-07-19Merge pull request #2723 from liamfraser/rp2040_tweaksHa Thach
RP2040 tweaks
2024-07-19Fix STM32F7 FS port build.HiFiPhile
2024-07-19add ra4m1 ek for hil testhathach
2024-07-18not all GCC compiler builds support --no-warn-rwx-segments; ↵graham sanderson
check_linker_flag is not available in all supported version of CMake, so just allow it to be passed in
2024-07-18fix make buildhathach
2024-07-18add unique id for imxrthathach
2024-07-17add FreeRTOSConfig.h for da1469hathach
2024-07-17add family cmake/make for da1469x boardshathach
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