summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-01-05Add Raspberry Pi Zero W and Zero 2 WScott Shawcroft
These are different Broadcom chips. The peripherals are essentially the same. The main differences are: * The CPU(s) * The interrupt controller * The peripheral base address (but not the peripherals that we use)
2021-12-31Merge pull request #1264 from kasjer/kasjer/make-files-for-xc32Ha Thach
build system: Changes for xc32 compiler
2021-12-30Merge pull request #1263 from kasjer/kasjer/mynewt-eptriHa Thach
Fix Mynewt build for Microchip PIC32MZ devices.
2021-12-27Fix Mynewt build for Microchip PIC32MZ devices.Jerzy Kasenberg
definition of DEBUG breaks Microchip pic32 builds for Mynewt. When MCU is not VALENTYUSB_EPTRI there is no need to have any preprocessor definitions. It may not look like a big deal but for xc32 builds, compiler automatically force-includes some file that have structure with field name DEBUG that result in build error in dcd_eptri.c when this file is not really needed. Moving DEBUG and LOG_USB few lines down should not break eptri builds.
2021-12-27build system: Changes for xc32 compilerJerzy Kasenberg
Three changes are needed to accommodate xc32 compiler build: - optimized build flag other than -Os added CFLAGS_OPTIMIZED that defaults to -Os but can be overridden in boards - build without -lnosys added LIBS_GCC with default libraries that can be changed in boards - build without LD_FILE specification if LD_FILE is empty -Wl,-T options is not added to LDFLAGS
2021-12-23Merge pull request #1260 from leptun/patch-1Ha Thach
Fix typo
2021-12-22Fix typoAlex Voinea
Oops. Made a typo in 6de423606fc9d512efb830b198c76f095a182a1c
2021-12-22Merge pull request #1258 from leptun/nucleo-f439ziHa Thach
nucleo-f439zi support
2021-12-21nucleo-f439zi supportAlex Voinea
2021-12-21Merge pull request #1255 from hathach/add-s3-devkitmHa Thach
Add s3 devkitm & devkitc
2021-12-21add s3 devkitchathach
2021-12-21skip ci for s3hathach
2021-12-20change ci to s3 to espressif_s3_devkitmhathach
2021-12-20add s3 devkitmhathach
2021-12-20Merge pull request #1252 from mkj/staticuartHa Thach
samd21: make uart_init() static
2021-12-20samd21: make uart_init() staticMatt Johnston
Avoids a linker conflict if programs are using the same function name.
2021-12-16Merge pull request #1244 from nxf58843/feature-kuiicHa Thach
Feature kuiic
2021-12-15Merge branch 'feature-kuiic' of https://github.com/nxf58843/tinyusb into ↵Greg Steiert
feature-kuiic
2021-12-15added KUIIC to supported boards listGreg Steiert
2021-12-13Merge branch 'hathach:master' into feature-kuiicnxf58843
2021-12-13Merge branch 'master' of https://github.com/hathach/tinyusb into feature-kuiicGreg Steiert
2021-12-13Merge pull request #1243 from hathach/g4-nucleoHa Thach
Add G4 support
2021-12-13Merge branch 'master' of https://github.com/hathach/tinyusb into feature-kuiicGreg Steiert
2021-12-13correct wiring notehathach
2021-12-13update doc to include g4hathach
2021-12-09Merge pull request #1233 from vmilea/rp2040_bugfix/ep_closeHa Thach
Handle the closing of endpoints on RP2040
2021-12-09update g4 bsphathach
2021-12-08added support for building uf2 fileGreg Steiert
2021-12-08adding support for KUIIC boardGreg Steiert
2021-12-09Merge pull request #1221 from kasjer/kasjer/fix-nrf5x-vbus-race-conditionHa Thach
nrf5x: Fix race condition during startup
2021-12-08Handle xfer events before closing EPValentin Milea
2021-12-08nrf5x: Fix race condition during startupJerzy Kasenberg
When NRF5x device is reset by software (after DFU for example), power event is ready from the beginning. When power interrupt is triggered before tud_init() finished USBD_IRQn is enabled before it would be enabled in tud_init(). This in turn may result in BUS RESET event being sent from USB interrupt to USB task when queue is not initialized yet. This scenario often happens in Mynewt build where queue creation takes more time. To prevent this scenario USBD_IRQn is not enabled in power event interrupt handler before dcd_init() was called.
2021-12-08try updating clock configure for g4 nucleo (not work yet)hathach
2021-12-07Remove buffer reclaim logsValentin Milea
2021-12-07Merge pull request #1222 from scoudreau/swo_loggerHa Thach
Remove unused-parameter errors when LOGGER=swo
2021-12-07Merge pull request #1213 from kkitayam/add_hcd_for_msp_exp432e401yHa Thach
Add a HCD driver for MSP-EXP432E401Y
2021-12-07skip host ci for tm4c due to sram overflowhathach
2021-12-07change uart baudrate for tm4c123 to 115200hathach
2021-12-07move hcd_musb.c include to family.mkhathach
2021-12-06Merge pull request #1227 from kkitayam/fix_dcd_musb_buffer_overrunHa Thach
Fix buffer overrun in dcd_musb driver
2021-12-04Handle the closing of endpoints on RP2040Valentin Milea
2021-12-04Fix buffer overrun at pipe_read_packet()kkitayam
2021-12-04Fix memory overrun at pipe_read_packet()kkitayam
2021-12-03Merge branch 'master' into add_hcd_for_msp_exp432e401yHa Thach
2021-12-03Merge pull request #1225 from perigoso/doc-requirementsHa Thach
after commit: eae4132 this dependency is no longer required
2021-12-02after commit: eae4132 this dependency is no longer requiredRafael Silva
Signed-off-by: Rafael Silva <[email protected]>
2021-12-02Merge pull request #1224 from hathach/chipidea-controllerHa Thach
rename transdimension to chipidea
2021-12-02minor doc updatehathach
2021-12-02Merge pull request #1223 from hathach/fix-s3-ciHa Thach
temporarily skip s3 build on ci
2021-12-02temporarily skip s3 build on cihathach