├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── porting.md │ └── question.md ├── pull_request_template.md └── workflows │ ├── build.yml │ └── trigger.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── changelog.md ├── docs ├── boards.md ├── concurrency.md ├── getting_started.md └── porting.md ├── examples ├── device │ ├── audio_test │ │ ├── .skip.MCU_SAMD11 │ │ ├── .skip.MCU_SAME5X │ │ ├── .skip.MCU_SAMG │ │ ├── Makefile │ │ └── src │ │ │ ├── main.c │ │ │ ├── tusb_config.h │ │ │ └── usb_descriptors.c │ ├── board_test │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── sdkconfig.defaults │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── main.c │ │ │ └── tusb_config.h │ ├── cdc_dual_ports │ │ ├── Makefile │ │ └── src │ │ │ ├── main.c │ │ │ ├── tusb_config.h │ │ │ └── usb_descriptors.c │ ├── cdc_msc │ │ ├── .skip.MCU_SAMD11 │ │ ├── Makefile │ │ ├── ses │ │ │ ├── cdc_msc_hid.emProject │ │ │ ├── lpc11u6x │ │ │ │ ├── LPC1100_Startup.s │ │ │ │ ├── LPC1100_Target.js │ │ │ │ ├── LPC11U68_MemoryMap.xml │ │ │ │ ├── LPC11U6x_Registers.xml │ │ │ │ ├── LPC11U6x_Vectors.s │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── lpc11u6x.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── lpc13xx │ │ │ │ ├── LPC1300_Startup.s │ │ │ │ ├── LPC1300_Target.js │ │ │ │ ├── LPC1347FBD64_MemoryMap.xml │ │ │ │ ├── LPC13Uxx_Registers.xml │ │ │ │ ├── LPC13Uxx_Vectors.s │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── lpc13xx.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── lpc175x_6x │ │ │ │ ├── LPC1700_Startup.s │ │ │ │ ├── LPC1700_Target.js │ │ │ │ ├── LPC1769_MemoryMap.xml │ │ │ │ ├── LPC176x5x_Registers.xml │ │ │ │ ├── LPC176x5x_Vectors.s │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── lpc175x_6x.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── lpc18xx │ │ │ │ ├── LPC1800_Startup.s │ │ │ │ ├── LPC1800_Target.js │ │ │ │ ├── LPC1857_MemoryMap.xml │ │ │ │ ├── LPC18xx_Registers.xml │ │ │ │ ├── LPC18xx_Vectors.s │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── lpc18xx.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── lpc40xx │ │ │ │ ├── LPC4000_Startup.s │ │ │ │ ├── LPC4000_Target.js │ │ │ │ ├── LPC4088FBD208_MemoryMap.xml │ │ │ │ ├── LPC408x_7x_Registers.xml │ │ │ │ ├── LPC408x_7x_Vectors.s │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── lpc40xx.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── lpc43xx │ │ │ │ ├── LPC4300_Startup.s │ │ │ │ ├── LPC4300_Target.js │ │ │ │ ├── LPC4357 Cortex-M4_MemoryMap.xml │ │ │ │ ├── LPC43xx_Registers.xml │ │ │ │ ├── LPC43xx_Vectors.s │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── lpc43xx.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── nrf5x │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── nRF52840_xxAA_MemoryMap.xml │ │ │ │ ├── nRF52840_xxAA_s140v6_MemoryMap.xml │ │ │ │ ├── nRF_Target.js │ │ │ │ ├── nrf52840_Registers.xml │ │ │ │ ├── nrf5x.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── samd21 │ │ │ │ ├── ATSAMD21G18A_MemoryMap.xml │ │ │ │ ├── ATSAMD21G18A_Registers.xml │ │ │ │ ├── ATSAMD21G18A_Vectors.s │ │ │ │ ├── SAMD21_Startup.s │ │ │ │ ├── SAMD21_Target.js │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── samd21.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── samd51 │ │ │ │ ├── ATSAMD51J19A_MemoryMap.xml │ │ │ │ ├── ATSAMD51J19A_Registers.xml │ │ │ │ ├── ATSAMD51J19A_Vectors.s │ │ │ │ ├── SAMD51_Startup.s │ │ │ │ ├── SAMD51_Target.js │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── samd51.emProject │ │ │ │ └── thumb_crt0.s │ │ │ └── stm32f4 │ │ │ │ ├── STM32F407VG_MemoryMap.xml │ │ │ │ ├── STM32F40x_Registers.xml │ │ │ │ ├── STM32F40x_Vectors.s │ │ │ │ ├── STM32F4xx_Startup.s │ │ │ │ ├── STM32F4xx_Target.js │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── stm32f4.emProject │ │ │ │ └── thumb_crt0.s │ │ └── src │ │ │ ├── main.c │ │ │ ├── msc_disk.c │ │ │ ├── tusb_config.h │ │ │ └── usb_descriptors.c │ ├── cdc_msc_freertos │ │ ├── .skip.MCU_CXD56 │ │ ├── .skip.MCU_MSP430x5xx │ │ ├── .skip.MCU_SAMD11 │ │ ├── .skip.MCU_VALENTYUSB_EPTRI │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── sdkconfig.defaults │ │ ├── ses │ │ │ ├── cdc_msc_hid_freertos.emProject │ │ │ ├── lpc175x_6x │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ ├── LPC1700_Startup.s │ │ │ │ ├── LPC1700_Target.js │ │ │ │ ├── LPC1769_MemoryMap.xml │ │ │ │ ├── LPC176x5x_Registers.xml │ │ │ │ ├── LPC176x5x_Vectors.s │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── lpc175x_6x.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── nrf5x │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── nRF52840_xxAA_MemoryMap.xml │ │ │ │ ├── nRF_Target.js │ │ │ │ ├── nrf52840_Registers.xml │ │ │ │ ├── nrf5x.emProject │ │ │ │ └── thumb_crt0.s │ │ │ ├── samd21 │ │ │ │ ├── ATSAMD21G18A_MemoryMap.xml │ │ │ │ ├── ATSAMD21G18A_Registers.xml │ │ │ │ ├── ATSAMD21G18A_Vectors.s │ │ │ │ ├── SAMD21_Startup.s │ │ │ │ ├── SAMD21_Target.js │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── samd21.emProject │ │ │ │ └── thumb_crt0.s │ │ │ └── samd51 │ │ │ │ ├── ATSAMD51J19A_MemoryMap.xml │ │ │ │ ├── ATSAMD51J19A_Registers.xml │ │ │ │ ├── ATSAMD51J19A_Vectors.s │ │ │ │ ├── SAMD51_Startup.s │ │ │ │ ├── SAMD51_Target.js │ │ │ │ ├── flash_placement.xml │ │ │ │ ├── samd51.emProject │ │ │ │ └── thumb_crt0.s │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── freertos_hook.c │ │ │ ├── main.c │ │ │ ├── msc_disk.c │ │ │ ├── tusb_config.h │ │ │ └── usb_descriptors.c │ ├── dfu_rt │ │ ├── Makefile │ │ └── src │ │ │ ├── main.c │ │ │ ├── tusb_config.h │ │ │ └── usb_descriptors.c │ ├── dynamic_configuration │ │ ├── .skip.MCU_SAMD11 │ │ ├── Makefile │ │ └── src │ │ │ ├── main.c │ │ │ ├── msc_disk.c │ │ │ ├── tusb_config.h │ │ │ └── usb_descriptors.c │ ├── hid_composite │ │ ├── Makefile │ │ └── src │ │ │ ├── main.c │ │ │ ├── tusb_config.h │ │ │ ├── usb_descriptors.c │ │ │ └── usb_descriptors.h │ ├── hid_composite_freertos │ │ ├── .skip.MCU_CXD56 │ │ ├── .skip.MCU_MSP430x5xx │ │ ├── .skip.MCU_SAMD11 │ │ ├── .skip.MCU_VALENTYUSB_EPTRI │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── sdkconfig.defaults │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── freertos_hook.c │ │ │ ├── main.c │ │ │ ├── tusb_config.h │ │ │ ├── usb_descriptors.c │ │ │ └── usb_descriptors.h │ ├── hid_generic_inout │ │ ├── Makefile │ │ ├── boards.js │ │ ├── hid_test.js │ │ ├── hid_test.py │ │ └── src │ │ │ ├── main.c │ │ │ ├── tusb_config.h │ │ │ └── usb_descriptors.c │ ├── hid_multiple_interface │ │ ├── Makefile │ │ └── src │ │ │ ├── main.c │ │ │ ├── tusb_config.h │ │ │ └── usb_descriptors.c │ ├── midi_test │ │ ├── Makefile │ │ └── src │ │ │ ├── main.c │ │ │ ├── tusb_config.h │ │ │ └── usb_descriptors.c │ ├── msc_dual_lun │ │ ├── .skip.MCU_SAMD11 │ │ ├── Makefile │ │ └── src │ │ │ ├── main.c │ │ │ ├── msc_disk_dual.c │ │ │ ├── tusb_config.h │ │ │ └── usb_descriptors.c │ ├── net_lwip_webserver │ │ ├── .skip.MCU_LPC11UXX │ │ ├── .skip.MCU_LPC13XX │ │ ├── .skip.MCU_MSP430x5xx │ │ ├── .skip.MCU_NUC121 │ │ ├── .skip.MCU_SAMD11 │ │ ├── .skip.MCU_STM32L0 │ │ ├── Makefile │ │ └── src │ │ │ ├── arch │ │ │ └── cc.h │ │ │ ├── lwipopts.h │ │ │ ├── main.c │ │ │ ├── tusb_config.h │ │ │ └── usb_descriptors.c │ ├── uac2_headset │ │ ├── Makefile │ │ └── src │ │ │ ├── main.c │ │ │ ├── tusb_config.h │ │ │ ├── usb_descriptors.c │ │ │ └── usb_descriptors.h │ ├── usbtmc │ │ ├── Makefile │ │ ├── src │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── tusb_config.h │ │ │ ├── usb_descriptors.c │ │ │ ├── usbtmc_app.c │ │ │ └── usbtmc_app.h │ │ └── visaQuery.py │ └── webusb_serial │ │ ├── Makefile │ │ └── src │ │ ├── main.c │ │ ├── tusb_config.h │ │ ├── usb_descriptors.c │ │ └── usb_descriptors.h ├── host │ └── cdc_msc_hid │ │ ├── .only.MCU_LPC175X_6X │ │ ├── .only.MCU_LPC177X_8X │ │ ├── .only.MCU_LPC18XX │ │ ├── .only.MCU_LPC40XX │ │ ├── .only.MCU_LPC43XX │ │ ├── Makefile │ │ ├── ses │ │ ├── cdc_msc_hid.emProject │ │ ├── lpc175x_6x │ │ │ ├── LPC1700_Startup.s │ │ │ ├── LPC1700_Target.js │ │ │ ├── LPC1769_MemoryMap.xml │ │ │ ├── LPC176x5x_Registers.xml │ │ │ ├── LPC176x5x_Vectors.s │ │ │ ├── flash_placement.xml │ │ │ ├── lpc175x_6x.emProject │ │ │ └── thumb_crt0.s │ │ ├── lpc18xx │ │ │ ├── LPC1800_Startup.s │ │ │ ├── LPC1800_Target.js │ │ │ ├── LPC1857_MemoryMap.xml │ │ │ ├── LPC18xx_Registers.xml │ │ │ ├── LPC18xx_Vectors.s │ │ │ ├── flash_placement.xml │ │ │ ├── lpc18xx.emProject │ │ │ └── thumb_crt0.s │ │ ├── lpc40xx │ │ │ ├── LPC4000_Startup.s │ │ │ ├── LPC4000_Target.js │ │ │ ├── LPC4088FBD208_MemoryMap.xml │ │ │ ├── LPC408x_7x_Registers.xml │ │ │ ├── LPC408x_7x_Vectors.s │ │ │ ├── flash_placement.xml │ │ │ ├── lpc40xx.emProject │ │ │ └── thumb_crt0.s │ │ └── lpc43xx │ │ │ ├── LPC4300_Startup.s │ │ │ ├── LPC4300_Target.js │ │ │ ├── LPC4357 Cortex-M4_MemoryMap.xml │ │ │ ├── LPC43xx_Registers.xml │ │ │ ├── LPC43xx_Vectors.s │ │ │ ├── flash_placement.xml │ │ │ ├── lpc43xx.emProject │ │ │ └── thumb_crt0.s │ │ └── src │ │ ├── keyboard_helper.h │ │ ├── main.c │ │ ├── msc_app.c │ │ └── tusb_config.h ├── make.mk ├── obsolete │ └── host │ │ ├── host_os_none │ │ ├── .cproject │ │ └── .project │ │ └── src │ │ ├── app_os_prio.h │ │ ├── cdc_serial_host_app.c │ │ ├── cdc_serial_host_app.h │ │ ├── keyboard_host_app.c │ │ ├── keyboard_host_app.h │ │ ├── main.c │ │ ├── mouse_host_app.c │ │ ├── mouse_host_app.h │ │ ├── msc_cli.c │ │ ├── msc_cli.h │ │ ├── msc_host_app.c │ │ ├── msc_host_app.h │ │ ├── rndis_host_app.c │ │ ├── rndis_host_app.h │ │ └── tusb_config.h └── rules.mk ├── hw ├── bsp │ ├── adafruit_clue │ │ ├── adafruit_clue.c │ │ ├── board.mk │ │ └── nrf52840_s140_v6.ld │ ├── ansi_escape.h │ ├── arduino_nano33_ble │ │ ├── arduino_nano33_ble.c │ │ ├── arduino_nano33_ble.ld │ │ └── board.mk │ ├── atsamd21_xpro │ │ ├── atsamd21_xpro.c │ │ ├── board.mk │ │ └── samd21j18a_flash.ld │ ├── board.c │ ├── board.h │ ├── board_mcu.h │ ├── circuitplayground_bluefruit │ │ ├── board.mk │ │ ├── circuitplayground_bluefruit.c │ │ └── nrf52840_s140_v6.ld │ ├── circuitplayground_express │ │ ├── board.mk │ │ ├── circuitplayground_express.c │ │ └── samd21g18a_flash.ld │ ├── d5035_01 │ │ ├── board.mk │ │ ├── d5035_01.c │ │ └── same51j19a_flash.ld │ ├── da14695_dk_usb │ │ ├── board.mk │ │ ├── da14695_dk_usb.c │ │ ├── da1469x.ld │ │ ├── gcc_startup_da1469x.S │ │ ├── product_header.dump │ │ └── syscfg │ │ │ └── syscfg.h │ ├── da1469x_dk_pro │ │ ├── board.mk │ │ ├── da1469x-dk-pro.c │ │ ├── da1469x.ld │ │ ├── gcc_startup_da1469x.S │ │ ├── product_header.dump │ │ └── syscfg │ │ │ └── syscfg.h │ ├── ea4088qs │ │ ├── board.mk │ │ ├── ea4088qs.c │ │ └── lpc4088.ld │ ├── ea4357 │ │ ├── board.mk │ │ ├── ea4357.c │ │ ├── lpc4357.ld │ │ ├── pca9532.c │ │ └── pca9532.h │ ├── esp32s2_kaluga_1 │ │ ├── CMakeLists.txt │ │ ├── board.mk │ │ ├── esp32s2_kaluga_1.c │ │ └── led_strip │ │ │ ├── include │ │ │ └── led_strip.h │ │ │ └── src │ │ │ └── led_strip_rmt_ws2812.c │ ├── esp32s2_saola_1 │ │ ├── CMakeLists.txt │ │ ├── board.mk │ │ ├── esp32s2_saola_1.c │ │ └── led_strip │ │ │ ├── include │ │ │ └── led_strip.h │ │ │ └── src │ │ │ └── led_strip_rmt_ws2812.c │ ├── feather_m0_express │ │ ├── board.mk │ │ ├── feather_m0_express.c │ │ └── samd21g18a_flash.ld │ ├── feather_m4_express │ │ ├── board.mk │ │ ├── feather_m4_express.c │ │ └── samd51g19a_flash.ld │ ├── feather_nrf52840_express │ │ ├── board.mk │ │ ├── feather_nrf52840_express.c │ │ └── nrf52840_s140_v6.ld │ ├── feather_nrf52840_sense │ │ ├── board.mk │ │ ├── feather_nrf52840_sense.c │ │ └── nrf52840_s140_v6.ld │ ├── feather_stm32f405 │ │ ├── STM32F405RGTx_FLASH.ld │ │ ├── board.mk │ │ ├── feather_stm32f405.c │ │ └── stm32f4xx_hal_conf.h │ ├── fomu │ │ ├── board.mk │ │ ├── crt0-vexriscv.S │ │ ├── dfu.py │ │ ├── fomu.c │ │ ├── fomu.ld │ │ ├── include │ │ │ ├── csr.h │ │ │ ├── hw │ │ │ │ └── common.h │ │ │ └── irq.h │ │ ├── output_format.ld │ │ └── regions.ld │ ├── itsybitsy_m0 │ │ ├── board.mk │ │ ├── itsybitsy_m0.c │ │ └── samd21g18a_flash.ld │ ├── itsybitsy_m4 │ │ ├── board.mk │ │ ├── itsybitsy_m4.c │ │ └── samd51g19a_flash.ld │ ├── itsybitsy_nrf52840 │ │ ├── board.mk │ │ ├── itsybitsy_nrf52840.c │ │ └── nrf52840_s140_v6.ld │ ├── lpcxpresso11u37 │ │ ├── board.mk │ │ ├── lpc11u37.ld │ │ └── lpcxpresso11u37.c │ ├── lpcxpresso11u68 │ │ ├── board.mk │ │ ├── lpc11u68.ld │ │ └── lpcxpresso11u68.c │ ├── lpcxpresso1347 │ │ ├── board.mk │ │ ├── lpc1347.ld │ │ └── lpcxpresso1347.c │ ├── lpcxpresso1549 │ │ ├── board.mk │ │ ├── lpc1549.ld │ │ └── lpcxpresso1549.c │ ├── lpcxpresso1769 │ │ ├── board.mk │ │ ├── lpc1769.ld │ │ └── lpcxpresso1769.c │ ├── lpcxpresso51u68 │ │ ├── board.mk │ │ └── lpcxpresso51u68.c │ ├── lpcxpresso54114 │ │ ├── board.mk │ │ └── lpcxpresso54114.c │ ├── lpcxpresso55s69 │ │ ├── board.mk │ │ └── lpcxpresso55s69.c │ ├── luna │ │ ├── board.mk │ │ ├── luna.c │ │ └── samd21g18a_flash.ld │ ├── mbed1768 │ │ ├── board.mk │ │ ├── lpc1768.ld │ │ └── mbed1768.c │ ├── mcb1800 │ │ ├── board.mk │ │ ├── lpc1857.ld │ │ └── mcb1800.c │ ├── metro_m0_express │ │ ├── board.mk │ │ ├── metro_m0_express.c │ │ └── samd21g18a_flash.ld │ ├── metro_m4_express │ │ ├── board.mk │ │ ├── metro_m4_express.c │ │ └── samd51g19a_flash.ld │ ├── mimxrt1010_evk │ │ ├── board.h │ │ ├── board.mk │ │ ├── evkmimxrt1010_flexspi_nor_config.c │ │ ├── evkmimxrt1010_flexspi_nor_config.h │ │ └── mimxrt1010_evk.c │ ├── mimxrt1015_evk │ │ ├── board.h │ │ ├── board.mk │ │ ├── evkmimxrt1015_flexspi_nor_config.c │ │ ├── evkmimxrt1015_flexspi_nor_config.h │ │ └── mimxrt1015_evk.c │ ├── mimxrt1020_evk │ │ ├── board.h │ │ ├── board.mk │ │ ├── evkmimxrt1020_flexspi_nor_config.c │ │ ├── evkmimxrt1020_flexspi_nor_config.h │ │ └── mimxrt1020_evk.c │ ├── mimxrt1050_evkb │ │ ├── board.h │ │ ├── board.mk │ │ ├── evkbimxrt1050_flexspi_nor_config.c │ │ ├── evkbimxrt1050_flexspi_nor_config.h │ │ └── mimxrt1050_evkb.c │ ├── mimxrt1060_evk │ │ ├── board.h │ │ ├── board.mk │ │ ├── evkmimxrt1060_flexspi_nor_config.c │ │ ├── evkmimxrt1060_flexspi_nor_config.h │ │ └── mimxrt1060_evk.c │ ├── mimxrt1064_evk │ │ ├── board.h │ │ ├── board.mk │ │ ├── evkmimxrt1064_flexspi_nor_config.c │ │ ├── evkmimxrt1064_flexspi_nor_config.h │ │ └── mimxrt1064_evk.c │ ├── msp_exp430f5529lp │ │ ├── board.mk │ │ └── msp_exp430f5529lp.c │ ├── ngx4330 │ │ ├── board.mk │ │ ├── ngx4330.c │ │ └── ngx4330.ld │ ├── nrf52840_mdk_dongle │ │ ├── board.mk │ │ ├── nrf52840_mdk_dongle.c │ │ └── nrf52840_mdk_dongle.ld │ ├── nutiny_nuc121s │ │ ├── board.mk │ │ ├── nuc121_flash.ld │ │ └── nutiny_nuc121.c │ ├── nutiny_nuc125s │ │ ├── board.mk │ │ ├── nuc125_flash.ld │ │ └── nutiny_nuc125.c │ ├── nutiny_nuc126v │ │ ├── board.mk │ │ ├── nuc126_flash.ld │ │ └── nutiny_nuc126.c │ ├── nutiny_sdk_nuc120 │ │ ├── board.mk │ │ ├── nuc120_flash.ld │ │ └── nutiny_sdk_nuc120.c │ ├── nutiny_sdk_nuc505 │ │ ├── board.mk │ │ ├── nuc505_flashtoram.ld │ │ └── nutiny_sdk_nuc505.c │ ├── pca10056 │ │ ├── board.mk │ │ └── pca10056.c │ ├── pca10059 │ │ ├── board.mk │ │ ├── pca10059.c │ │ └── pca10059.ld │ ├── pca10100 │ │ ├── board.mk │ │ └── pca10100.c │ ├── pyboardv11 │ │ ├── STM32F405RGTx_FLASH.ld │ │ ├── board.mk │ │ ├── pyboardv11.c │ │ └── stm32f4xx_hal_conf.h │ ├── raspberry_pi_pico │ │ └── board_raspberry_pi_pico.c │ ├── raytac_mdbt50q_rx │ │ ├── board.mk │ │ └── raytac_mdbt50q_rx.c │ ├── samd11_xplained │ │ ├── board.mk │ │ ├── samd11_xplained.c │ │ └── samd11d14am_flash.ld │ ├── same70_xplained │ │ ├── board.mk │ │ ├── hpl_pmc_config.h │ │ ├── hpl_usart_config.h │ │ ├── hpl_xdmac_config.h │ │ ├── peripheral_clk_config.h │ │ └── same70_xplained.c │ ├── samg55xplained │ │ ├── board.mk │ │ ├── hpl_usart_config.h │ │ ├── peripheral_clk_config.h │ │ ├── samg55j19_flash.ld │ │ └── samg55xplained.c │ ├── seeeduino_xiao │ │ ├── board.mk │ │ ├── samd21g18a_flash.ld │ │ └── seeeduino_xiao.c │ ├── spresense │ │ ├── board.mk │ │ └── board_spresense.c │ ├── stlinkv3mini │ │ ├── STM32F723xE_FLASH.ld │ │ ├── board.mk │ │ ├── stlinkv3mini.c │ │ └── stm32f7xx_hal_conf.h │ ├── stm32f070rbnucleo │ │ ├── board.mk │ │ ├── stm32F070rbtx_flash.ld │ │ ├── stm32f070rbnucleo.c │ │ └── stm32f0xx_hal_conf.h │ ├── stm32f072disco │ │ ├── STM32F072RBTx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f072disco.c │ │ └── stm32f0xx_hal_conf.h │ ├── stm32f103bluepill │ │ ├── STM32F103XB_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f103bluepill.c │ │ └── stm32f1xx_hal_conf.h │ ├── stm32f207nucleo │ │ ├── STM32F207ZGTx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f207nucleo.c │ │ └── stm32f2xx_hal_conf.h │ ├── stm32f303disco │ │ ├── STM32F303VCTx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f303disco.c │ │ └── stm32f3xx_hal_conf.h │ ├── stm32f401blackpill │ │ ├── STM32F401VCTx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f401blackpill.c │ │ └── stm32f4xx_hal_conf.h │ ├── stm32f407disco │ │ ├── STM32F407VGTx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f407disco.c │ │ └── stm32f4xx_hal_conf.h │ ├── stm32f411blackpill │ │ ├── STM32F411CEUx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f411blackpill.c │ │ └── stm32f4xx_hal_conf.h │ ├── stm32f411disco │ │ ├── STM32F411VETx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f411disco.c │ │ └── stm32f4xx_hal_conf.h │ ├── stm32f412disco │ │ ├── STM32F412ZGTx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f412disco.c │ │ └── stm32f4xx_hal_conf.h │ ├── stm32f723disco │ │ ├── STM32F723xE_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f723disco.c │ │ └── stm32f7xx_hal_conf.h │ ├── stm32f746disco │ │ ├── STM32F746ZGTx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f746disco.c │ │ └── stm32f7xx_hal_conf.h │ ├── stm32f746nucleo │ │ ├── STM32F746ZGTx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f746nucleo.c │ │ └── stm32f7xx_hal_conf.h │ ├── stm32f767nucleo │ │ ├── STM32F767ZITx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f767nucleo.c │ │ └── stm32f7xx_hal_conf.h │ ├── stm32f769disco │ │ ├── STM32F769ZITx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32f769disco.c │ │ └── stm32f7xx_hal_conf.h │ ├── stm32h743eval │ │ ├── STM32H743XIHx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32h743eval.c │ │ └── stm32h7xx_hal_conf.h │ ├── stm32h743nucleo │ │ ├── STM32H743ZITx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32h743nucleo.c │ │ └── stm32h7xx_hal_conf.h │ ├── stm32h745disco │ │ ├── STM32H74xXIHx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32h745disco.c │ │ └── stm32h7xx_hal_conf.h │ ├── stm32l0538disco │ │ ├── STM32L053C8Tx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32l0538disco.c │ │ └── stm32l0xx_hal_conf.h │ ├── stm32l476disco │ │ ├── STM32L476VGTx_FLASH.ld │ │ ├── board.mk │ │ ├── stm32l476disco.c │ │ └── stm32l4xx_hal_conf.h │ ├── stm32l4r5nucleo │ │ ├── STM32L4RXxI_FLASH.ld │ │ ├── board.mk │ │ ├── stm32l4r5nucleo.c │ │ └── stm32l4xx_hal_conf.h │ └── teensy_40 │ │ ├── board.h │ │ ├── board.mk │ │ ├── teensy40.c │ │ ├── teensy40_flexspi_nor_config.c │ │ └── teensy40_flexspi_nor_config.h └── mcu │ ├── dialog │ ├── README.md │ └── da1469x │ │ ├── SDK_10.0.8.105 │ │ └── sdk │ │ │ └── bsp │ │ │ ├── arm_license.txt │ │ │ └── include │ │ │ ├── DA1469xAB.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm33.h │ │ │ ├── mpu_armv8.h │ │ │ ├── system_ARMCM0.h │ │ │ └── system_DA1469x.h │ │ ├── da1469x.ld │ │ ├── include │ │ ├── hal │ │ │ └── hal_gpio.h │ │ └── mcu │ │ │ ├── da1469x_clock.h │ │ │ ├── da1469x_hal.h │ │ │ └── mcu.h │ │ └── src │ │ ├── da1469x_clock.c │ │ ├── hal_gpio.c │ │ ├── hal_system.c │ │ ├── hal_system_start.c │ │ └── system_da1469x.c │ └── nordic │ ├── nrf5x │ └── s140_nrf52_6.1.1_API │ │ └── include │ │ ├── ble.h │ │ ├── ble_err.h │ │ ├── ble_gap.h │ │ ├── ble_gatt.h │ │ ├── ble_gattc.h │ │ ├── ble_gatts.h │ │ ├── ble_hci.h │ │ ├── ble_l2cap.h │ │ ├── ble_ranges.h │ │ ├── ble_types.h │ │ ├── nrf52 │ │ └── nrf_mbr.h │ │ ├── nrf_error.h │ │ ├── nrf_error_sdm.h │ │ ├── nrf_error_soc.h │ │ ├── nrf_nvic.h │ │ ├── nrf_sdm.h │ │ ├── nrf_soc.h │ │ └── nrf_svc.h │ ├── nrfx_config.h │ ├── nrfx_glue.h │ └── nrfx_log.h ├── lib ├── SEGGER_RTT │ ├── License.txt │ ├── README.txt │ ├── RTT │ │ ├── SEGGER_RTT.c │ │ ├── SEGGER_RTT.h │ │ ├── SEGGER_RTT_ASM_ARMv7M.S │ │ ├── SEGGER_RTT_Conf.h │ │ └── SEGGER_RTT_printf.c │ └── Syscalls │ │ ├── SEGGER_RTT_Syscalls_GCC.c │ │ ├── SEGGER_RTT_Syscalls_IAR.c │ │ ├── SEGGER_RTT_Syscalls_KEIL.c │ │ └── SEGGER_RTT_Syscalls_SES.c ├── fatfs │ ├── 00readme.txt │ ├── ccsbcs.c │ ├── diskio.c │ ├── diskio.h │ ├── ff.c │ ├── ff.h │ ├── ffconf.h │ └── integer.h └── networking │ ├── dhserver.c │ ├── dhserver.h │ ├── dnserver.c │ ├── dnserver.h │ ├── ndis.h │ ├── rndis_protocol.h │ └── rndis_reports.c ├── pkg.yml ├── repository.yml ├── src ├── class │ ├── audio │ │ ├── audio.h │ │ ├── audio_device.c │ │ └── audio_device.h │ ├── bth │ │ ├── bth_device.c │ │ └── bth_device.h │ ├── cdc │ │ ├── cdc.h │ │ ├── cdc_device.c │ │ ├── cdc_device.h │ │ ├── cdc_host.c │ │ ├── cdc_host.h │ │ ├── cdc_rndis.h │ │ ├── cdc_rndis_host.c │ │ └── cdc_rndis_host.h │ ├── dfu │ │ ├── dfu_rt_device.c │ │ └── dfu_rt_device.h │ ├── hid │ │ ├── hid.h │ │ ├── hid_device.c │ │ ├── hid_device.h │ │ ├── hid_host.c │ │ └── hid_host.h │ ├── midi │ │ ├── midi.h │ │ ├── midi_device.c │ │ └── midi_device.h │ ├── msc │ │ ├── msc.h │ │ ├── msc_device.c │ │ ├── msc_device.h │ │ ├── msc_host.c │ │ └── msc_host.h │ ├── net │ │ ├── net_device.c │ │ └── net_device.h │ ├── usbtmc │ │ ├── usbtmc.h │ │ ├── usbtmc_device.c │ │ └── usbtmc_device.h │ └── vendor │ │ ├── vendor_device.c │ │ ├── vendor_device.h │ │ ├── vendor_host.c │ │ └── vendor_host.h ├── common │ ├── sys_queue.h │ ├── tusb_common.h │ ├── tusb_compiler.h │ ├── tusb_error.h │ ├── tusb_fifo.c │ ├── tusb_fifo.h │ ├── tusb_timeout.h │ ├── tusb_types.h │ └── tusb_verify.h ├── device │ ├── dcd.h │ ├── usbd.c │ ├── usbd.h │ ├── usbd_control.c │ └── usbd_pvt.h ├── host │ ├── ehci │ │ ├── ehci.c │ │ └── ehci.h │ ├── hcd.h │ ├── hub.c │ ├── hub.h │ ├── ohci │ │ ├── ohci.c │ │ └── ohci.h │ ├── usbh.c │ ├── usbh.h │ ├── usbh_control.c │ └── usbh_hcd.h ├── osal │ ├── osal.h │ ├── osal_freertos.h │ ├── osal_mynewt.h │ ├── osal_none.h │ └── osal_pico.h ├── portable │ ├── dialog │ │ └── da146xx │ │ │ └── dcd_da146xx.c │ ├── espressif │ │ └── esp32s2 │ │ │ └── dcd_esp32s2.c │ ├── microchip │ │ ├── samd │ │ │ └── dcd_samd.c │ │ └── samg │ │ │ └── dcd_samg.c │ ├── nordic │ │ └── nrf5x │ │ │ └── dcd_nrf5x.c │ ├── nuvoton │ │ ├── nuc120 │ │ │ └── dcd_nuc120.c │ │ ├── nuc121 │ │ │ └── dcd_nuc121.c │ │ └── nuc505 │ │ │ └── dcd_nuc505.c │ ├── nxp │ │ ├── lpc17_40 │ │ │ ├── dcd_lpc17_40.c │ │ │ ├── dcd_lpc17_40.h │ │ │ └── hcd_lpc17_40.c │ │ ├── lpc18_43 │ │ │ └── hcd_lpc18_43.c │ │ ├── lpc_ip3511 │ │ │ └── dcd_lpc_ip3511.c │ │ └── transdimension │ │ │ └── dcd_transdimension.c │ ├── raspberrypi │ │ └── rp2040 │ │ │ ├── dcd_rp2040.c │ │ │ ├── hcd_rp2040.c │ │ │ ├── rp2040_usb.c │ │ │ └── rp2040_usb.h │ ├── sony │ │ └── cxd56 │ │ │ └── dcd_cxd56.c │ ├── st │ │ ├── stm32_fsdev │ │ │ ├── dcd_stm32_fsdev.c │ │ │ └── dcd_stm32_fsdev_pvt_st.h │ │ └── synopsys │ │ │ └── dcd_synopsys.c │ ├── template │ │ └── dcd_template.c │ ├── ti │ │ └── msp430x5xx │ │ │ └── dcd_msp430x5xx.c │ └── valentyusb │ │ └── eptri │ │ ├── dcd_eptri.c │ │ └── dcd_eptri.h ├── tusb.c ├── tusb.h └── tusb_option.h ├── test ├── ceedling ├── project.yml ├── test │ ├── device │ │ ├── msc │ │ │ └── test_msc_device.c │ │ └── usbd │ │ │ └── test_usbd.c │ ├── support │ │ └── tusb_config.h │ └── test_fifo.c └── vendor │ └── ceedling │ ├── bin │ └── ceedling │ ├── docs │ ├── CException.md │ ├── CMock_Summary.md │ ├── CeedlingPacket.md │ ├── ThrowTheSwitchCodingStandard.md │ ├── UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf │ ├── UnityAssertionsReference.md │ ├── UnityConfigurationGuide.md │ ├── UnityGettingStartedGuide.md │ └── UnityHelperScriptsGuide.md │ ├── lib │ ├── ceedling.rb │ └── ceedling │ │ ├── build_invoker_utils.rb │ │ ├── cacheinator.rb │ │ ├── cacheinator_helper.rb │ │ ├── cmock_builder.rb │ │ ├── configurator.rb │ │ ├── configurator_builder.rb │ │ ├── configurator_plugins.rb │ │ ├── configurator_setup.rb │ │ ├── configurator_validator.rb │ │ ├── constants.rb │ │ ├── defaults.rb │ │ ├── dependinator.rb │ │ ├── erb_wrapper.rb │ │ ├── file_finder.rb │ │ ├── file_finder_helper.rb │ │ ├── file_path_utils.rb │ │ ├── file_system_utils.rb │ │ ├── file_system_wrapper.rb │ │ ├── file_wrapper.rb │ │ ├── flaginator.rb │ │ ├── generator.rb │ │ ├── generator_helper.rb │ │ ├── generator_test_results.rb │ │ ├── generator_test_results_sanity_checker.rb │ │ ├── generator_test_runner.rb │ │ ├── loginator.rb │ │ ├── makefile.rb │ │ ├── objects.yml │ │ ├── par_map.rb │ │ ├── plugin.rb │ │ ├── plugin_builder.rb │ │ ├── plugin_manager.rb │ │ ├── plugin_manager_helper.rb │ │ ├── plugin_reportinator.rb │ │ ├── plugin_reportinator_helper.rb │ │ ├── preprocessinator.rb │ │ ├── preprocessinator_extractor.rb │ │ ├── preprocessinator_file_handler.rb │ │ ├── preprocessinator_helper.rb │ │ ├── preprocessinator_includes_handler.rb │ │ ├── project_config_manager.rb │ │ ├── project_file_loader.rb │ │ ├── rake_utils.rb │ │ ├── rake_wrapper.rb │ │ ├── rakefile.rb │ │ ├── release_invoker.rb │ │ ├── release_invoker_helper.rb │ │ ├── reportinator.rb │ │ ├── rules_cmock.rake │ │ ├── rules_preprocess.rake │ │ ├── rules_release.rake │ │ ├── rules_release_deep_dependencies.rake │ │ ├── rules_tests.rake │ │ ├── rules_tests_deep_dependencies.rake │ │ ├── setupinator.rb │ │ ├── stream_wrapper.rb │ │ ├── streaminator.rb │ │ ├── streaminator_helper.rb │ │ ├── system_utils.rb │ │ ├── system_wrapper.rb │ │ ├── target_loader.rb │ │ ├── task_invoker.rb │ │ ├── tasks_base.rake │ │ ├── tasks_filesystem.rake │ │ ├── tasks_release.rake │ │ ├── tasks_release_deep_dependencies.rake │ │ ├── tasks_tests.rake │ │ ├── tasks_tests_deep_dependencies.rake │ │ ├── tasks_vendor.rake │ │ ├── test_includes_extractor.rb │ │ ├── test_invoker.rb │ │ ├── test_invoker_helper.rb │ │ ├── tool_executor.rb │ │ ├── tool_executor_helper.rb │ │ ├── verbosinator.rb │ │ ├── version.rb │ │ ├── version.rb.erb │ │ └── yaml_wrapper.rb │ ├── plugins │ ├── beep │ │ ├── README.md │ │ └── lib │ │ │ └── beep.rb │ ├── bullseye │ │ ├── assets │ │ │ └── template.erb │ │ ├── bullseye.rake │ │ ├── config │ │ │ └── defaults.yml │ │ ├── lib │ │ │ └── bullseye.rb │ │ └── readme.txt │ ├── colour_report │ │ └── lib │ │ │ └── colour_report.rb │ ├── command_hooks │ │ ├── README.md │ │ └── lib │ │ │ └── command_hooks.rb │ ├── fake_function_framework │ │ ├── README.md │ │ ├── Rakefile │ │ ├── examples │ │ │ └── fff_example │ │ │ │ ├── project.yml │ │ │ │ ├── rakefile.rb │ │ │ │ ├── src │ │ │ │ ├── bar.c │ │ │ │ ├── bar.h │ │ │ │ ├── custom_types.h │ │ │ │ ├── display.c │ │ │ │ ├── display.h │ │ │ │ ├── event_processor.c │ │ │ │ ├── event_processor.h │ │ │ │ ├── foo.c │ │ │ │ ├── foo.h │ │ │ │ └── subfolder │ │ │ │ │ ├── zzz.c │ │ │ │ │ └── zzz.h │ │ │ │ └── test │ │ │ │ ├── test_event_processor.c │ │ │ │ └── test_foo.c │ │ ├── lib │ │ │ ├── fake_function_framework.rb │ │ │ └── fff_mock_generator.rb │ │ ├── spec │ │ │ ├── fff_mock_header_generator_spec.rb │ │ │ ├── fff_mock_source_generator_spec.rb │ │ │ ├── header_generator.rb │ │ │ └── spec_helper.rb │ │ └── src │ │ │ └── fff_unity_helper.h │ ├── gcov │ │ ├── README.md │ │ ├── assets │ │ │ └── template.erb │ │ ├── config │ │ │ └── defaults.yml │ │ ├── gcov.rake │ │ └── lib │ │ │ ├── gcov.rb │ │ │ └── gcov_constants.rb │ ├── junit_tests_report │ │ ├── README.md │ │ └── lib │ │ │ └── junit_tests_report.rb │ ├── module_generator │ │ ├── config │ │ │ └── module_generator.yml │ │ ├── lib │ │ │ └── module_generator.rb │ │ └── module_generator.rake │ ├── raw_output_report │ │ └── lib │ │ │ └── raw_output_report.rb │ ├── stdout_gtestlike_tests_report │ │ ├── assets │ │ │ ├── template.erb │ │ │ └── template.erb copy │ │ ├── config │ │ │ └── stdout_gtestlike_tests_report.yml │ │ └── lib │ │ │ └── stdout_gtestlike_tests_report.rb │ ├── stdout_ide_tests_report │ │ ├── config │ │ │ └── stdout_ide_tests_report.yml │ │ └── lib │ │ │ └── stdout_ide_tests_report.rb │ ├── stdout_pretty_tests_report │ │ ├── assets │ │ │ └── template.erb │ │ ├── config │ │ │ └── stdout_pretty_tests_report.yml │ │ └── lib │ │ │ └── stdout_pretty_tests_report.rb │ ├── subprojects │ │ ├── README.md │ │ ├── config │ │ │ └── defaults.yml │ │ ├── lib │ │ │ └── subprojects.rb │ │ └── subprojects.rake │ ├── teamcity_tests_report │ │ ├── config │ │ │ └── teamcity_tests_report.yml │ │ └── lib │ │ │ └── teamcity_tests_report.rb │ ├── warnings_report │ │ └── lib │ │ │ └── warnings_report.rb │ └── xml_tests_report │ │ ├── README.md │ │ └── lib │ │ └── xml_tests_report.rb │ └── vendor │ ├── c_exception │ ├── lib │ │ ├── CException.c │ │ └── CException.h │ └── release │ │ ├── build.info │ │ └── version.info │ ├── cmock │ ├── config │ │ ├── production_environment.rb │ │ └── test_environment.rb │ ├── lib │ │ ├── cmock.rb │ │ ├── cmock_config.rb │ │ ├── cmock_file_writer.rb │ │ ├── cmock_generator.rb │ │ ├── cmock_generator_plugin_array.rb │ │ ├── cmock_generator_plugin_callback.rb │ │ ├── cmock_generator_plugin_cexception.rb │ │ ├── cmock_generator_plugin_expect.rb │ │ ├── cmock_generator_plugin_expect_any_args.rb │ │ ├── cmock_generator_plugin_ignore.rb │ │ ├── cmock_generator_plugin_ignore_arg.rb │ │ ├── cmock_generator_plugin_return_thru_ptr.rb │ │ ├── cmock_generator_utils.rb │ │ ├── cmock_header_parser.rb │ │ ├── cmock_plugin_manager.rb │ │ └── cmock_unityhelper_parser.rb │ ├── release │ │ ├── build.info │ │ └── version.info │ └── src │ │ ├── cmock.c │ │ ├── cmock.h │ │ ├── cmock_internals.h │ │ └── meson.build │ ├── deep_merge │ └── lib │ │ └── deep_merge.rb │ ├── diy │ └── lib │ │ ├── diy.rb │ │ └── diy │ │ └── factory.rb │ └── unity │ ├── auto │ ├── colour_prompt.rb │ ├── colour_reporter.rb │ ├── generate_config.yml │ ├── generate_module.rb │ ├── generate_test_runner.rb │ ├── parse_output.rb │ ├── run_test.erb │ ├── stylize_as_junit.rb │ ├── test_file_filter.rb │ ├── type_sanitizer.rb │ ├── unity_test_summary.py │ ├── unity_test_summary.rb │ └── unity_to_junit.py │ ├── release │ ├── build.info │ └── version.info │ └── src │ ├── CMakeLists.txt │ ├── meson.build │ ├── unity.c │ ├── unity.h │ └── unity_internals.h ├── tinyusb.Doxyfile ├── tools ├── build_all.py ├── build_esp32s.py ├── top.mk └── usb_drivers │ ├── 99-tinyusb.rules │ └── tinyusb_win_usbser.inf └── version.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/.github/ISSUE_TEMPLATE/porting.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/.github/workflows/trigger.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/boards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/docs/boards.md -------------------------------------------------------------------------------- /docs/concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/docs/concurrency.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/docs/porting.md -------------------------------------------------------------------------------- /examples/device/audio_test/.skip.MCU_SAMD11: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/audio_test/.skip.MCU_SAME5X: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/audio_test/.skip.MCU_SAMG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/audio_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/audio_test/Makefile -------------------------------------------------------------------------------- /examples/device/audio_test/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/audio_test/src/main.c -------------------------------------------------------------------------------- /examples/device/audio_test/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/audio_test/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/audio_test/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/audio_test/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/board_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/board_test/CMakeLists.txt -------------------------------------------------------------------------------- /examples/device/board_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/board_test/Makefile -------------------------------------------------------------------------------- /examples/device/board_test/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/board_test/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/device/board_test/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/board_test/src/CMakeLists.txt -------------------------------------------------------------------------------- /examples/device/board_test/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/board_test/src/main.c -------------------------------------------------------------------------------- /examples/device/board_test/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/board_test/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/cdc_dual_ports/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_dual_ports/Makefile -------------------------------------------------------------------------------- /examples/device/cdc_dual_ports/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_dual_ports/src/main.c -------------------------------------------------------------------------------- /examples/device/cdc_dual_ports/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_dual_ports/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/cdc_dual_ports/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_dual_ports/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/cdc_msc/.skip.MCU_SAMD11: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/cdc_msc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/Makefile -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/cdc_msc_hid.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/cdc_msc_hid.emProject -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc11u6x/LPC1100_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc11u6x/LPC1100_Startup.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc11u6x/LPC1100_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc11u6x/LPC1100_Target.js -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc11u6x/LPC11U68_MemoryMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc11u6x/LPC11U68_MemoryMap.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc11u6x/LPC11U6x_Registers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc11u6x/LPC11U6x_Registers.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc11u6x/LPC11U6x_Vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc11u6x/LPC11U6x_Vectors.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc11u6x/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc11u6x/flash_placement.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc11u6x/lpc11u6x.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc11u6x/lpc11u6x.emProject -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc11u6x/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc11u6x/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc13xx/LPC1300_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc13xx/LPC1300_Startup.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc13xx/LPC1300_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc13xx/LPC1300_Target.js -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc13xx/LPC13Uxx_Registers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc13xx/LPC13Uxx_Registers.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc13xx/LPC13Uxx_Vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc13xx/LPC13Uxx_Vectors.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc13xx/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc13xx/flash_placement.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc13xx/lpc13xx.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc13xx/lpc13xx.emProject -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc13xx/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc13xx/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc175x_6x/LPC1700_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc175x_6x/LPC1700_Startup.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc175x_6x/LPC1700_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc175x_6x/LPC1700_Target.js -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc175x_6x/LPC176x5x_Vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc175x_6x/LPC176x5x_Vectors.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc175x_6x/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc175x_6x/flash_placement.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc175x_6x/lpc175x_6x.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc175x_6x/lpc175x_6x.emProject -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc175x_6x/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc175x_6x/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc18xx/LPC1800_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc18xx/LPC1800_Startup.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc18xx/LPC1800_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc18xx/LPC1800_Target.js -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc18xx/LPC1857_MemoryMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc18xx/LPC1857_MemoryMap.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc18xx/LPC18xx_Registers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc18xx/LPC18xx_Registers.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc18xx/LPC18xx_Vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc18xx/LPC18xx_Vectors.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc18xx/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc18xx/flash_placement.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc18xx/lpc18xx.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc18xx/lpc18xx.emProject -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc18xx/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc18xx/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc40xx/LPC4000_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc40xx/LPC4000_Startup.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc40xx/LPC4000_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc40xx/LPC4000_Target.js -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc40xx/LPC408x_7x_Vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc40xx/LPC408x_7x_Vectors.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc40xx/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc40xx/flash_placement.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc40xx/lpc40xx.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc40xx/lpc40xx.emProject -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc40xx/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc40xx/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc43xx/LPC4300_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc43xx/LPC4300_Startup.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc43xx/LPC4300_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc43xx/LPC4300_Target.js -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc43xx/LPC43xx_Registers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc43xx/LPC43xx_Registers.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc43xx/LPC43xx_Vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc43xx/LPC43xx_Vectors.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc43xx/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc43xx/flash_placement.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc43xx/lpc43xx.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc43xx/lpc43xx.emProject -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/lpc43xx/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/lpc43xx/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/nrf5x/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/nrf5x/flash_placement.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/nrf5x/nRF_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/nrf5x/nRF_Target.js -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/nrf5x/nrf52840_Registers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/nrf5x/nrf52840_Registers.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/nrf5x/nrf5x.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/nrf5x/nrf5x.emProject -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/nrf5x/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/nrf5x/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/samd21/ATSAMD21G18A_Vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/samd21/ATSAMD21G18A_Vectors.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/samd21/SAMD21_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/samd21/SAMD21_Startup.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/samd21/SAMD21_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/samd21/SAMD21_Target.js -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/samd21/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/samd21/flash_placement.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/samd21/samd21.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/samd21/samd21.emProject -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/samd21/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/samd21/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/samd51/ATSAMD51J19A_Vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/samd51/ATSAMD51J19A_Vectors.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/samd51/SAMD51_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/samd51/SAMD51_Startup.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/samd51/SAMD51_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/samd51/SAMD51_Target.js -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/samd51/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/samd51/flash_placement.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/samd51/samd51.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/samd51/samd51.emProject -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/samd51/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/samd51/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/stm32f4/STM32F40x_Registers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/stm32f4/STM32F40x_Registers.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/stm32f4/STM32F40x_Vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/stm32f4/STM32F40x_Vectors.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/stm32f4/STM32F4xx_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/stm32f4/STM32F4xx_Startup.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/stm32f4/STM32F4xx_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/stm32f4/STM32F4xx_Target.js -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/stm32f4/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/stm32f4/flash_placement.xml -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/stm32f4/stm32f4.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/stm32f4/stm32f4.emProject -------------------------------------------------------------------------------- /examples/device/cdc_msc/ses/stm32f4/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/ses/stm32f4/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/src/main.c -------------------------------------------------------------------------------- /examples/device/cdc_msc/src/msc_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/src/msc_disk.c -------------------------------------------------------------------------------- /examples/device/cdc_msc/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/cdc_msc/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/.skip.MCU_CXD56: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/.skip.MCU_MSP430x5xx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/.skip.MCU_SAMD11: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/.skip.MCU_VALENTYUSB_EPTRI: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/CMakeLists.txt -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/Makefile -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/ses/nrf5x/nRF_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/ses/nrf5x/nRF_Target.js -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/ses/nrf5x/nrf5x.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/ses/nrf5x/nrf5x.emProject -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/ses/nrf5x/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/ses/nrf5x/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/ses/samd21/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/ses/samd21/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/ses/samd51/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/ses/samd51/thumb_crt0.s -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/src/CMakeLists.txt -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/src/freertos_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/src/freertos_hook.c -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/src/main.c -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/src/msc_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/src/msc_disk.c -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/cdc_msc_freertos/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/cdc_msc_freertos/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/dfu_rt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/dfu_rt/Makefile -------------------------------------------------------------------------------- /examples/device/dfu_rt/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/dfu_rt/src/main.c -------------------------------------------------------------------------------- /examples/device/dfu_rt/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/dfu_rt/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/dfu_rt/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/dfu_rt/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/dynamic_configuration/.skip.MCU_SAMD11: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/dynamic_configuration/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/dynamic_configuration/Makefile -------------------------------------------------------------------------------- /examples/device/dynamic_configuration/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/dynamic_configuration/src/main.c -------------------------------------------------------------------------------- /examples/device/dynamic_configuration/src/msc_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/dynamic_configuration/src/msc_disk.c -------------------------------------------------------------------------------- /examples/device/dynamic_configuration/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/dynamic_configuration/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/dynamic_configuration/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/dynamic_configuration/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/hid_composite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite/Makefile -------------------------------------------------------------------------------- /examples/device/hid_composite/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite/src/main.c -------------------------------------------------------------------------------- /examples/device/hid_composite/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/hid_composite/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/hid_composite/src/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite/src/usb_descriptors.h -------------------------------------------------------------------------------- /examples/device/hid_composite_freertos/.skip.MCU_CXD56: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/hid_composite_freertos/.skip.MCU_MSP430x5xx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/hid_composite_freertos/.skip.MCU_SAMD11: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/hid_composite_freertos/.skip.MCU_VALENTYUSB_EPTRI: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/hid_composite_freertos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite_freertos/CMakeLists.txt -------------------------------------------------------------------------------- /examples/device/hid_composite_freertos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite_freertos/Makefile -------------------------------------------------------------------------------- /examples/device/hid_composite_freertos/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite_freertos/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/device/hid_composite_freertos/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite_freertos/src/CMakeLists.txt -------------------------------------------------------------------------------- /examples/device/hid_composite_freertos/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite_freertos/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/device/hid_composite_freertos/src/freertos_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite_freertos/src/freertos_hook.c -------------------------------------------------------------------------------- /examples/device/hid_composite_freertos/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite_freertos/src/main.c -------------------------------------------------------------------------------- /examples/device/hid_composite_freertos/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_composite_freertos/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/hid_generic_inout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_generic_inout/Makefile -------------------------------------------------------------------------------- /examples/device/hid_generic_inout/boards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_generic_inout/boards.js -------------------------------------------------------------------------------- /examples/device/hid_generic_inout/hid_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_generic_inout/hid_test.js -------------------------------------------------------------------------------- /examples/device/hid_generic_inout/hid_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_generic_inout/hid_test.py -------------------------------------------------------------------------------- /examples/device/hid_generic_inout/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_generic_inout/src/main.c -------------------------------------------------------------------------------- /examples/device/hid_generic_inout/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_generic_inout/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/hid_generic_inout/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_generic_inout/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/hid_multiple_interface/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_multiple_interface/Makefile -------------------------------------------------------------------------------- /examples/device/hid_multiple_interface/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_multiple_interface/src/main.c -------------------------------------------------------------------------------- /examples/device/hid_multiple_interface/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/hid_multiple_interface/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/midi_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/midi_test/Makefile -------------------------------------------------------------------------------- /examples/device/midi_test/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/midi_test/src/main.c -------------------------------------------------------------------------------- /examples/device/midi_test/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/midi_test/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/midi_test/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/midi_test/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/msc_dual_lun/.skip.MCU_SAMD11: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/msc_dual_lun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/msc_dual_lun/Makefile -------------------------------------------------------------------------------- /examples/device/msc_dual_lun/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/msc_dual_lun/src/main.c -------------------------------------------------------------------------------- /examples/device/msc_dual_lun/src/msc_disk_dual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/msc_dual_lun/src/msc_disk_dual.c -------------------------------------------------------------------------------- /examples/device/msc_dual_lun/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/msc_dual_lun/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/msc_dual_lun/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/msc_dual_lun/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/net_lwip_webserver/.skip.MCU_LPC11UXX: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/net_lwip_webserver/.skip.MCU_LPC13XX: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/net_lwip_webserver/.skip.MCU_MSP430x5xx: -------------------------------------------------------------------------------- 1 | too many warnings for 16-bit integer overflow 2 | -------------------------------------------------------------------------------- /examples/device/net_lwip_webserver/.skip.MCU_NUC121: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/net_lwip_webserver/.skip.MCU_SAMD11: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/net_lwip_webserver/.skip.MCU_STM32L0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/device/net_lwip_webserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/net_lwip_webserver/Makefile -------------------------------------------------------------------------------- /examples/device/net_lwip_webserver/src/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/net_lwip_webserver/src/arch/cc.h -------------------------------------------------------------------------------- /examples/device/net_lwip_webserver/src/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/net_lwip_webserver/src/lwipopts.h -------------------------------------------------------------------------------- /examples/device/net_lwip_webserver/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/net_lwip_webserver/src/main.c -------------------------------------------------------------------------------- /examples/device/net_lwip_webserver/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/net_lwip_webserver/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/net_lwip_webserver/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/net_lwip_webserver/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/uac2_headset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/uac2_headset/Makefile -------------------------------------------------------------------------------- /examples/device/uac2_headset/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/uac2_headset/src/main.c -------------------------------------------------------------------------------- /examples/device/uac2_headset/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/uac2_headset/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/uac2_headset/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/uac2_headset/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/uac2_headset/src/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/uac2_headset/src/usb_descriptors.h -------------------------------------------------------------------------------- /examples/device/usbtmc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/usbtmc/Makefile -------------------------------------------------------------------------------- /examples/device/usbtmc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/usbtmc/src/main.c -------------------------------------------------------------------------------- /examples/device/usbtmc/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/usbtmc/src/main.h -------------------------------------------------------------------------------- /examples/device/usbtmc/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/usbtmc/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/usbtmc/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/usbtmc/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/usbtmc/src/usbtmc_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/usbtmc/src/usbtmc_app.c -------------------------------------------------------------------------------- /examples/device/usbtmc/src/usbtmc_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/usbtmc/src/usbtmc_app.h -------------------------------------------------------------------------------- /examples/device/usbtmc/visaQuery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/usbtmc/visaQuery.py -------------------------------------------------------------------------------- /examples/device/webusb_serial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/webusb_serial/Makefile -------------------------------------------------------------------------------- /examples/device/webusb_serial/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/webusb_serial/src/main.c -------------------------------------------------------------------------------- /examples/device/webusb_serial/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/webusb_serial/src/tusb_config.h -------------------------------------------------------------------------------- /examples/device/webusb_serial/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/webusb_serial/src/usb_descriptors.c -------------------------------------------------------------------------------- /examples/device/webusb_serial/src/usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/device/webusb_serial/src/usb_descriptors.h -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/.only.MCU_LPC175X_6X: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/.only.MCU_LPC177X_8X: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/.only.MCU_LPC18XX: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/.only.MCU_LPC40XX: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/.only.MCU_LPC43XX: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/Makefile -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/cdc_msc_hid.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/cdc_msc_hid.emProject -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc175x_6x/LPC1700_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc175x_6x/LPC1700_Startup.s -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc175x_6x/LPC1700_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc175x_6x/LPC1700_Target.js -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc175x_6x/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc175x_6x/thumb_crt0.s -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc18xx/LPC1800_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc18xx/LPC1800_Startup.s -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc18xx/LPC1800_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc18xx/LPC1800_Target.js -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc18xx/LPC1857_MemoryMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc18xx/LPC1857_MemoryMap.xml -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc18xx/LPC18xx_Registers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc18xx/LPC18xx_Registers.xml -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc18xx/LPC18xx_Vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc18xx/LPC18xx_Vectors.s -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc18xx/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc18xx/flash_placement.xml -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc18xx/lpc18xx.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc18xx/lpc18xx.emProject -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc18xx/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc18xx/thumb_crt0.s -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc40xx/LPC4000_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc40xx/LPC4000_Startup.s -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc40xx/LPC4000_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc40xx/LPC4000_Target.js -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc40xx/LPC408x_7x_Vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc40xx/LPC408x_7x_Vectors.s -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc40xx/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc40xx/flash_placement.xml -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc40xx/lpc40xx.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc40xx/lpc40xx.emProject -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc40xx/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc40xx/thumb_crt0.s -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc43xx/LPC4300_Startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc43xx/LPC4300_Startup.s -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc43xx/LPC4300_Target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc43xx/LPC4300_Target.js -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc43xx/LPC43xx_Registers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc43xx/LPC43xx_Registers.xml -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc43xx/LPC43xx_Vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc43xx/LPC43xx_Vectors.s -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc43xx/flash_placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc43xx/flash_placement.xml -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc43xx/lpc43xx.emProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc43xx/lpc43xx.emProject -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/ses/lpc43xx/thumb_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/ses/lpc43xx/thumb_crt0.s -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/src/keyboard_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/src/keyboard_helper.h -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/src/main.c -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/src/msc_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/src/msc_app.c -------------------------------------------------------------------------------- /examples/host/cdc_msc_hid/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/host/cdc_msc_hid/src/tusb_config.h -------------------------------------------------------------------------------- /examples/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/make.mk -------------------------------------------------------------------------------- /examples/obsolete/host/host_os_none/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/host_os_none/.cproject -------------------------------------------------------------------------------- /examples/obsolete/host/host_os_none/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/host_os_none/.project -------------------------------------------------------------------------------- /examples/obsolete/host/src/app_os_prio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/app_os_prio.h -------------------------------------------------------------------------------- /examples/obsolete/host/src/cdc_serial_host_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/cdc_serial_host_app.c -------------------------------------------------------------------------------- /examples/obsolete/host/src/cdc_serial_host_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/cdc_serial_host_app.h -------------------------------------------------------------------------------- /examples/obsolete/host/src/keyboard_host_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/keyboard_host_app.c -------------------------------------------------------------------------------- /examples/obsolete/host/src/keyboard_host_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/keyboard_host_app.h -------------------------------------------------------------------------------- /examples/obsolete/host/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/main.c -------------------------------------------------------------------------------- /examples/obsolete/host/src/mouse_host_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/mouse_host_app.c -------------------------------------------------------------------------------- /examples/obsolete/host/src/mouse_host_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/mouse_host_app.h -------------------------------------------------------------------------------- /examples/obsolete/host/src/msc_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/msc_cli.c -------------------------------------------------------------------------------- /examples/obsolete/host/src/msc_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/msc_cli.h -------------------------------------------------------------------------------- /examples/obsolete/host/src/msc_host_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/msc_host_app.c -------------------------------------------------------------------------------- /examples/obsolete/host/src/msc_host_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/msc_host_app.h -------------------------------------------------------------------------------- /examples/obsolete/host/src/rndis_host_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/rndis_host_app.c -------------------------------------------------------------------------------- /examples/obsolete/host/src/rndis_host_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/rndis_host_app.h -------------------------------------------------------------------------------- /examples/obsolete/host/src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/obsolete/host/src/tusb_config.h -------------------------------------------------------------------------------- /examples/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/examples/rules.mk -------------------------------------------------------------------------------- /hw/bsp/adafruit_clue/adafruit_clue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/adafruit_clue/adafruit_clue.c -------------------------------------------------------------------------------- /hw/bsp/adafruit_clue/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/adafruit_clue/board.mk -------------------------------------------------------------------------------- /hw/bsp/adafruit_clue/nrf52840_s140_v6.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/adafruit_clue/nrf52840_s140_v6.ld -------------------------------------------------------------------------------- /hw/bsp/ansi_escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/ansi_escape.h -------------------------------------------------------------------------------- /hw/bsp/arduino_nano33_ble/arduino_nano33_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/arduino_nano33_ble/arduino_nano33_ble.c -------------------------------------------------------------------------------- /hw/bsp/arduino_nano33_ble/arduino_nano33_ble.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/arduino_nano33_ble/arduino_nano33_ble.ld -------------------------------------------------------------------------------- /hw/bsp/arduino_nano33_ble/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/arduino_nano33_ble/board.mk -------------------------------------------------------------------------------- /hw/bsp/atsamd21_xpro/atsamd21_xpro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/atsamd21_xpro/atsamd21_xpro.c -------------------------------------------------------------------------------- /hw/bsp/atsamd21_xpro/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/atsamd21_xpro/board.mk -------------------------------------------------------------------------------- /hw/bsp/atsamd21_xpro/samd21j18a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/atsamd21_xpro/samd21j18a_flash.ld -------------------------------------------------------------------------------- /hw/bsp/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/board.c -------------------------------------------------------------------------------- /hw/bsp/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/board.h -------------------------------------------------------------------------------- /hw/bsp/board_mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/board_mcu.h -------------------------------------------------------------------------------- /hw/bsp/circuitplayground_bluefruit/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/circuitplayground_bluefruit/board.mk -------------------------------------------------------------------------------- /hw/bsp/circuitplayground_bluefruit/nrf52840_s140_v6.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/circuitplayground_bluefruit/nrf52840_s140_v6.ld -------------------------------------------------------------------------------- /hw/bsp/circuitplayground_express/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/circuitplayground_express/board.mk -------------------------------------------------------------------------------- /hw/bsp/circuitplayground_express/samd21g18a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/circuitplayground_express/samd21g18a_flash.ld -------------------------------------------------------------------------------- /hw/bsp/d5035_01/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/d5035_01/board.mk -------------------------------------------------------------------------------- /hw/bsp/d5035_01/d5035_01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/d5035_01/d5035_01.c -------------------------------------------------------------------------------- /hw/bsp/d5035_01/same51j19a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/d5035_01/same51j19a_flash.ld -------------------------------------------------------------------------------- /hw/bsp/da14695_dk_usb/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/da14695_dk_usb/board.mk -------------------------------------------------------------------------------- /hw/bsp/da14695_dk_usb/da14695_dk_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/da14695_dk_usb/da14695_dk_usb.c -------------------------------------------------------------------------------- /hw/bsp/da14695_dk_usb/da1469x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/da14695_dk_usb/da1469x.ld -------------------------------------------------------------------------------- /hw/bsp/da14695_dk_usb/gcc_startup_da1469x.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/da14695_dk_usb/gcc_startup_da1469x.S -------------------------------------------------------------------------------- /hw/bsp/da14695_dk_usb/product_header.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/da14695_dk_usb/product_header.dump -------------------------------------------------------------------------------- /hw/bsp/da14695_dk_usb/syscfg/syscfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/da14695_dk_usb/syscfg/syscfg.h -------------------------------------------------------------------------------- /hw/bsp/da1469x_dk_pro/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/da1469x_dk_pro/board.mk -------------------------------------------------------------------------------- /hw/bsp/da1469x_dk_pro/da1469x-dk-pro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/da1469x_dk_pro/da1469x-dk-pro.c -------------------------------------------------------------------------------- /hw/bsp/da1469x_dk_pro/da1469x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/da1469x_dk_pro/da1469x.ld -------------------------------------------------------------------------------- /hw/bsp/da1469x_dk_pro/gcc_startup_da1469x.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/da1469x_dk_pro/gcc_startup_da1469x.S -------------------------------------------------------------------------------- /hw/bsp/da1469x_dk_pro/product_header.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/da1469x_dk_pro/product_header.dump -------------------------------------------------------------------------------- /hw/bsp/da1469x_dk_pro/syscfg/syscfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/da1469x_dk_pro/syscfg/syscfg.h -------------------------------------------------------------------------------- /hw/bsp/ea4088qs/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/ea4088qs/board.mk -------------------------------------------------------------------------------- /hw/bsp/ea4088qs/ea4088qs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/ea4088qs/ea4088qs.c -------------------------------------------------------------------------------- /hw/bsp/ea4088qs/lpc4088.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/ea4088qs/lpc4088.ld -------------------------------------------------------------------------------- /hw/bsp/ea4357/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/ea4357/board.mk -------------------------------------------------------------------------------- /hw/bsp/ea4357/ea4357.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/ea4357/ea4357.c -------------------------------------------------------------------------------- /hw/bsp/ea4357/lpc4357.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/ea4357/lpc4357.ld -------------------------------------------------------------------------------- /hw/bsp/ea4357/pca9532.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/ea4357/pca9532.c -------------------------------------------------------------------------------- /hw/bsp/ea4357/pca9532.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/ea4357/pca9532.h -------------------------------------------------------------------------------- /hw/bsp/esp32s2_kaluga_1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/esp32s2_kaluga_1/CMakeLists.txt -------------------------------------------------------------------------------- /hw/bsp/esp32s2_kaluga_1/board.mk: -------------------------------------------------------------------------------- 1 | # Cross Compiler for ESP32 2 | CROSS_COMPILE = xtensa-esp32s2-elf- 3 | -------------------------------------------------------------------------------- /hw/bsp/esp32s2_kaluga_1/esp32s2_kaluga_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/esp32s2_kaluga_1/esp32s2_kaluga_1.c -------------------------------------------------------------------------------- /hw/bsp/esp32s2_kaluga_1/led_strip/include/led_strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/esp32s2_kaluga_1/led_strip/include/led_strip.h -------------------------------------------------------------------------------- /hw/bsp/esp32s2_saola_1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/esp32s2_saola_1/CMakeLists.txt -------------------------------------------------------------------------------- /hw/bsp/esp32s2_saola_1/board.mk: -------------------------------------------------------------------------------- 1 | # Cross Compiler for ESP32 2 | CROSS_COMPILE = xtensa-esp32s2-elf- 3 | -------------------------------------------------------------------------------- /hw/bsp/esp32s2_saola_1/esp32s2_saola_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/esp32s2_saola_1/esp32s2_saola_1.c -------------------------------------------------------------------------------- /hw/bsp/esp32s2_saola_1/led_strip/include/led_strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/esp32s2_saola_1/led_strip/include/led_strip.h -------------------------------------------------------------------------------- /hw/bsp/esp32s2_saola_1/led_strip/src/led_strip_rmt_ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/esp32s2_saola_1/led_strip/src/led_strip_rmt_ws2812.c -------------------------------------------------------------------------------- /hw/bsp/feather_m0_express/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_m0_express/board.mk -------------------------------------------------------------------------------- /hw/bsp/feather_m0_express/feather_m0_express.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_m0_express/feather_m0_express.c -------------------------------------------------------------------------------- /hw/bsp/feather_m0_express/samd21g18a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_m0_express/samd21g18a_flash.ld -------------------------------------------------------------------------------- /hw/bsp/feather_m4_express/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_m4_express/board.mk -------------------------------------------------------------------------------- /hw/bsp/feather_m4_express/feather_m4_express.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_m4_express/feather_m4_express.c -------------------------------------------------------------------------------- /hw/bsp/feather_m4_express/samd51g19a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_m4_express/samd51g19a_flash.ld -------------------------------------------------------------------------------- /hw/bsp/feather_nrf52840_express/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_nrf52840_express/board.mk -------------------------------------------------------------------------------- /hw/bsp/feather_nrf52840_express/feather_nrf52840_express.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_nrf52840_express/feather_nrf52840_express.c -------------------------------------------------------------------------------- /hw/bsp/feather_nrf52840_express/nrf52840_s140_v6.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_nrf52840_express/nrf52840_s140_v6.ld -------------------------------------------------------------------------------- /hw/bsp/feather_nrf52840_sense/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_nrf52840_sense/board.mk -------------------------------------------------------------------------------- /hw/bsp/feather_nrf52840_sense/feather_nrf52840_sense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_nrf52840_sense/feather_nrf52840_sense.c -------------------------------------------------------------------------------- /hw/bsp/feather_nrf52840_sense/nrf52840_s140_v6.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_nrf52840_sense/nrf52840_s140_v6.ld -------------------------------------------------------------------------------- /hw/bsp/feather_stm32f405/STM32F405RGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_stm32f405/STM32F405RGTx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/feather_stm32f405/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_stm32f405/board.mk -------------------------------------------------------------------------------- /hw/bsp/feather_stm32f405/feather_stm32f405.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_stm32f405/feather_stm32f405.c -------------------------------------------------------------------------------- /hw/bsp/feather_stm32f405/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/feather_stm32f405/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/fomu/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/fomu/board.mk -------------------------------------------------------------------------------- /hw/bsp/fomu/crt0-vexriscv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/fomu/crt0-vexriscv.S -------------------------------------------------------------------------------- /hw/bsp/fomu/dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/fomu/dfu.py -------------------------------------------------------------------------------- /hw/bsp/fomu/fomu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/fomu/fomu.c -------------------------------------------------------------------------------- /hw/bsp/fomu/fomu.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/fomu/fomu.ld -------------------------------------------------------------------------------- /hw/bsp/fomu/include/csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/fomu/include/csr.h -------------------------------------------------------------------------------- /hw/bsp/fomu/include/hw/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/fomu/include/hw/common.h -------------------------------------------------------------------------------- /hw/bsp/fomu/include/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/fomu/include/irq.h -------------------------------------------------------------------------------- /hw/bsp/fomu/output_format.ld: -------------------------------------------------------------------------------- 1 | OUTPUT_FORMAT("elf32-littleriscv") 2 | -------------------------------------------------------------------------------- /hw/bsp/fomu/regions.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/fomu/regions.ld -------------------------------------------------------------------------------- /hw/bsp/itsybitsy_m0/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/itsybitsy_m0/board.mk -------------------------------------------------------------------------------- /hw/bsp/itsybitsy_m0/itsybitsy_m0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/itsybitsy_m0/itsybitsy_m0.c -------------------------------------------------------------------------------- /hw/bsp/itsybitsy_m0/samd21g18a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/itsybitsy_m0/samd21g18a_flash.ld -------------------------------------------------------------------------------- /hw/bsp/itsybitsy_m4/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/itsybitsy_m4/board.mk -------------------------------------------------------------------------------- /hw/bsp/itsybitsy_m4/itsybitsy_m4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/itsybitsy_m4/itsybitsy_m4.c -------------------------------------------------------------------------------- /hw/bsp/itsybitsy_m4/samd51g19a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/itsybitsy_m4/samd51g19a_flash.ld -------------------------------------------------------------------------------- /hw/bsp/itsybitsy_nrf52840/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/itsybitsy_nrf52840/board.mk -------------------------------------------------------------------------------- /hw/bsp/itsybitsy_nrf52840/itsybitsy_nrf52840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/itsybitsy_nrf52840/itsybitsy_nrf52840.c -------------------------------------------------------------------------------- /hw/bsp/itsybitsy_nrf52840/nrf52840_s140_v6.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/itsybitsy_nrf52840/nrf52840_s140_v6.ld -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso11u37/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso11u37/board.mk -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso11u37/lpc11u37.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso11u37/lpc11u37.ld -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso11u37/lpcxpresso11u37.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso11u37/lpcxpresso11u37.c -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso11u68/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso11u68/board.mk -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso11u68/lpc11u68.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso11u68/lpc11u68.ld -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso11u68/lpcxpresso11u68.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso11u68/lpcxpresso11u68.c -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso1347/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso1347/board.mk -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso1347/lpc1347.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso1347/lpc1347.ld -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso1347/lpcxpresso1347.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso1347/lpcxpresso1347.c -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso1549/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso1549/board.mk -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso1549/lpc1549.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso1549/lpc1549.ld -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso1549/lpcxpresso1549.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso1549/lpcxpresso1549.c -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso1769/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso1769/board.mk -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso1769/lpc1769.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso1769/lpc1769.ld -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso1769/lpcxpresso1769.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso1769/lpcxpresso1769.c -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso51u68/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso51u68/board.mk -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso51u68/lpcxpresso51u68.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso51u68/lpcxpresso51u68.c -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso54114/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso54114/board.mk -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso54114/lpcxpresso54114.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso54114/lpcxpresso54114.c -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso55s69/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso55s69/board.mk -------------------------------------------------------------------------------- /hw/bsp/lpcxpresso55s69/lpcxpresso55s69.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/lpcxpresso55s69/lpcxpresso55s69.c -------------------------------------------------------------------------------- /hw/bsp/luna/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/luna/board.mk -------------------------------------------------------------------------------- /hw/bsp/luna/luna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/luna/luna.c -------------------------------------------------------------------------------- /hw/bsp/luna/samd21g18a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/luna/samd21g18a_flash.ld -------------------------------------------------------------------------------- /hw/bsp/mbed1768/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mbed1768/board.mk -------------------------------------------------------------------------------- /hw/bsp/mbed1768/lpc1768.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mbed1768/lpc1768.ld -------------------------------------------------------------------------------- /hw/bsp/mbed1768/mbed1768.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mbed1768/mbed1768.c -------------------------------------------------------------------------------- /hw/bsp/mcb1800/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mcb1800/board.mk -------------------------------------------------------------------------------- /hw/bsp/mcb1800/lpc1857.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mcb1800/lpc1857.ld -------------------------------------------------------------------------------- /hw/bsp/mcb1800/mcb1800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mcb1800/mcb1800.c -------------------------------------------------------------------------------- /hw/bsp/metro_m0_express/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/metro_m0_express/board.mk -------------------------------------------------------------------------------- /hw/bsp/metro_m0_express/metro_m0_express.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/metro_m0_express/metro_m0_express.c -------------------------------------------------------------------------------- /hw/bsp/metro_m0_express/samd21g18a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/metro_m0_express/samd21g18a_flash.ld -------------------------------------------------------------------------------- /hw/bsp/metro_m4_express/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/metro_m4_express/board.mk -------------------------------------------------------------------------------- /hw/bsp/metro_m4_express/metro_m4_express.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/metro_m4_express/metro_m4_express.c -------------------------------------------------------------------------------- /hw/bsp/metro_m4_express/samd51g19a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/metro_m4_express/samd51g19a_flash.ld -------------------------------------------------------------------------------- /hw/bsp/mimxrt1010_evk/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1010_evk/board.h -------------------------------------------------------------------------------- /hw/bsp/mimxrt1010_evk/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1010_evk/board.mk -------------------------------------------------------------------------------- /hw/bsp/mimxrt1010_evk/evkmimxrt1010_flexspi_nor_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1010_evk/evkmimxrt1010_flexspi_nor_config.c -------------------------------------------------------------------------------- /hw/bsp/mimxrt1010_evk/evkmimxrt1010_flexspi_nor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1010_evk/evkmimxrt1010_flexspi_nor_config.h -------------------------------------------------------------------------------- /hw/bsp/mimxrt1010_evk/mimxrt1010_evk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1010_evk/mimxrt1010_evk.c -------------------------------------------------------------------------------- /hw/bsp/mimxrt1015_evk/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1015_evk/board.h -------------------------------------------------------------------------------- /hw/bsp/mimxrt1015_evk/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1015_evk/board.mk -------------------------------------------------------------------------------- /hw/bsp/mimxrt1015_evk/evkmimxrt1015_flexspi_nor_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1015_evk/evkmimxrt1015_flexspi_nor_config.c -------------------------------------------------------------------------------- /hw/bsp/mimxrt1015_evk/evkmimxrt1015_flexspi_nor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1015_evk/evkmimxrt1015_flexspi_nor_config.h -------------------------------------------------------------------------------- /hw/bsp/mimxrt1015_evk/mimxrt1015_evk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1015_evk/mimxrt1015_evk.c -------------------------------------------------------------------------------- /hw/bsp/mimxrt1020_evk/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1020_evk/board.h -------------------------------------------------------------------------------- /hw/bsp/mimxrt1020_evk/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1020_evk/board.mk -------------------------------------------------------------------------------- /hw/bsp/mimxrt1020_evk/evkmimxrt1020_flexspi_nor_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1020_evk/evkmimxrt1020_flexspi_nor_config.c -------------------------------------------------------------------------------- /hw/bsp/mimxrt1020_evk/evkmimxrt1020_flexspi_nor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1020_evk/evkmimxrt1020_flexspi_nor_config.h -------------------------------------------------------------------------------- /hw/bsp/mimxrt1020_evk/mimxrt1020_evk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1020_evk/mimxrt1020_evk.c -------------------------------------------------------------------------------- /hw/bsp/mimxrt1050_evkb/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1050_evkb/board.h -------------------------------------------------------------------------------- /hw/bsp/mimxrt1050_evkb/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1050_evkb/board.mk -------------------------------------------------------------------------------- /hw/bsp/mimxrt1050_evkb/mimxrt1050_evkb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1050_evkb/mimxrt1050_evkb.c -------------------------------------------------------------------------------- /hw/bsp/mimxrt1060_evk/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1060_evk/board.h -------------------------------------------------------------------------------- /hw/bsp/mimxrt1060_evk/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1060_evk/board.mk -------------------------------------------------------------------------------- /hw/bsp/mimxrt1060_evk/evkmimxrt1060_flexspi_nor_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1060_evk/evkmimxrt1060_flexspi_nor_config.c -------------------------------------------------------------------------------- /hw/bsp/mimxrt1060_evk/evkmimxrt1060_flexspi_nor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1060_evk/evkmimxrt1060_flexspi_nor_config.h -------------------------------------------------------------------------------- /hw/bsp/mimxrt1060_evk/mimxrt1060_evk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1060_evk/mimxrt1060_evk.c -------------------------------------------------------------------------------- /hw/bsp/mimxrt1064_evk/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1064_evk/board.h -------------------------------------------------------------------------------- /hw/bsp/mimxrt1064_evk/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1064_evk/board.mk -------------------------------------------------------------------------------- /hw/bsp/mimxrt1064_evk/evkmimxrt1064_flexspi_nor_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1064_evk/evkmimxrt1064_flexspi_nor_config.c -------------------------------------------------------------------------------- /hw/bsp/mimxrt1064_evk/evkmimxrt1064_flexspi_nor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1064_evk/evkmimxrt1064_flexspi_nor_config.h -------------------------------------------------------------------------------- /hw/bsp/mimxrt1064_evk/mimxrt1064_evk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/mimxrt1064_evk/mimxrt1064_evk.c -------------------------------------------------------------------------------- /hw/bsp/msp_exp430f5529lp/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/msp_exp430f5529lp/board.mk -------------------------------------------------------------------------------- /hw/bsp/msp_exp430f5529lp/msp_exp430f5529lp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/msp_exp430f5529lp/msp_exp430f5529lp.c -------------------------------------------------------------------------------- /hw/bsp/ngx4330/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/ngx4330/board.mk -------------------------------------------------------------------------------- /hw/bsp/ngx4330/ngx4330.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/ngx4330/ngx4330.c -------------------------------------------------------------------------------- /hw/bsp/ngx4330/ngx4330.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/ngx4330/ngx4330.ld -------------------------------------------------------------------------------- /hw/bsp/nrf52840_mdk_dongle/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nrf52840_mdk_dongle/board.mk -------------------------------------------------------------------------------- /hw/bsp/nrf52840_mdk_dongle/nrf52840_mdk_dongle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nrf52840_mdk_dongle/nrf52840_mdk_dongle.c -------------------------------------------------------------------------------- /hw/bsp/nrf52840_mdk_dongle/nrf52840_mdk_dongle.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nrf52840_mdk_dongle/nrf52840_mdk_dongle.ld -------------------------------------------------------------------------------- /hw/bsp/nutiny_nuc121s/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_nuc121s/board.mk -------------------------------------------------------------------------------- /hw/bsp/nutiny_nuc121s/nuc121_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_nuc121s/nuc121_flash.ld -------------------------------------------------------------------------------- /hw/bsp/nutiny_nuc121s/nutiny_nuc121.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_nuc121s/nutiny_nuc121.c -------------------------------------------------------------------------------- /hw/bsp/nutiny_nuc125s/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_nuc125s/board.mk -------------------------------------------------------------------------------- /hw/bsp/nutiny_nuc125s/nuc125_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_nuc125s/nuc125_flash.ld -------------------------------------------------------------------------------- /hw/bsp/nutiny_nuc125s/nutiny_nuc125.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_nuc125s/nutiny_nuc125.c -------------------------------------------------------------------------------- /hw/bsp/nutiny_nuc126v/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_nuc126v/board.mk -------------------------------------------------------------------------------- /hw/bsp/nutiny_nuc126v/nuc126_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_nuc126v/nuc126_flash.ld -------------------------------------------------------------------------------- /hw/bsp/nutiny_nuc126v/nutiny_nuc126.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_nuc126v/nutiny_nuc126.c -------------------------------------------------------------------------------- /hw/bsp/nutiny_sdk_nuc120/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_sdk_nuc120/board.mk -------------------------------------------------------------------------------- /hw/bsp/nutiny_sdk_nuc120/nuc120_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_sdk_nuc120/nuc120_flash.ld -------------------------------------------------------------------------------- /hw/bsp/nutiny_sdk_nuc120/nutiny_sdk_nuc120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_sdk_nuc120/nutiny_sdk_nuc120.c -------------------------------------------------------------------------------- /hw/bsp/nutiny_sdk_nuc505/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_sdk_nuc505/board.mk -------------------------------------------------------------------------------- /hw/bsp/nutiny_sdk_nuc505/nuc505_flashtoram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_sdk_nuc505/nuc505_flashtoram.ld -------------------------------------------------------------------------------- /hw/bsp/nutiny_sdk_nuc505/nutiny_sdk_nuc505.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/nutiny_sdk_nuc505/nutiny_sdk_nuc505.c -------------------------------------------------------------------------------- /hw/bsp/pca10056/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/pca10056/board.mk -------------------------------------------------------------------------------- /hw/bsp/pca10056/pca10056.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/pca10056/pca10056.c -------------------------------------------------------------------------------- /hw/bsp/pca10059/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/pca10059/board.mk -------------------------------------------------------------------------------- /hw/bsp/pca10059/pca10059.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/pca10059/pca10059.c -------------------------------------------------------------------------------- /hw/bsp/pca10059/pca10059.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/pca10059/pca10059.ld -------------------------------------------------------------------------------- /hw/bsp/pca10100/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/pca10100/board.mk -------------------------------------------------------------------------------- /hw/bsp/pca10100/pca10100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/pca10100/pca10100.c -------------------------------------------------------------------------------- /hw/bsp/pyboardv11/STM32F405RGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/pyboardv11/STM32F405RGTx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/pyboardv11/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/pyboardv11/board.mk -------------------------------------------------------------------------------- /hw/bsp/pyboardv11/pyboardv11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/pyboardv11/pyboardv11.c -------------------------------------------------------------------------------- /hw/bsp/pyboardv11/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/pyboardv11/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/raspberry_pi_pico/board_raspberry_pi_pico.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/raspberry_pi_pico/board_raspberry_pi_pico.c -------------------------------------------------------------------------------- /hw/bsp/raytac_mdbt50q_rx/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/raytac_mdbt50q_rx/board.mk -------------------------------------------------------------------------------- /hw/bsp/raytac_mdbt50q_rx/raytac_mdbt50q_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/raytac_mdbt50q_rx/raytac_mdbt50q_rx.c -------------------------------------------------------------------------------- /hw/bsp/samd11_xplained/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/samd11_xplained/board.mk -------------------------------------------------------------------------------- /hw/bsp/samd11_xplained/samd11_xplained.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/samd11_xplained/samd11_xplained.c -------------------------------------------------------------------------------- /hw/bsp/samd11_xplained/samd11d14am_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/samd11_xplained/samd11d14am_flash.ld -------------------------------------------------------------------------------- /hw/bsp/same70_xplained/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/same70_xplained/board.mk -------------------------------------------------------------------------------- /hw/bsp/same70_xplained/hpl_pmc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/same70_xplained/hpl_pmc_config.h -------------------------------------------------------------------------------- /hw/bsp/same70_xplained/hpl_usart_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/same70_xplained/hpl_usart_config.h -------------------------------------------------------------------------------- /hw/bsp/same70_xplained/hpl_xdmac_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/same70_xplained/hpl_xdmac_config.h -------------------------------------------------------------------------------- /hw/bsp/same70_xplained/peripheral_clk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/same70_xplained/peripheral_clk_config.h -------------------------------------------------------------------------------- /hw/bsp/same70_xplained/same70_xplained.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/same70_xplained/same70_xplained.c -------------------------------------------------------------------------------- /hw/bsp/samg55xplained/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/samg55xplained/board.mk -------------------------------------------------------------------------------- /hw/bsp/samg55xplained/hpl_usart_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/samg55xplained/hpl_usart_config.h -------------------------------------------------------------------------------- /hw/bsp/samg55xplained/peripheral_clk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/samg55xplained/peripheral_clk_config.h -------------------------------------------------------------------------------- /hw/bsp/samg55xplained/samg55j19_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/samg55xplained/samg55j19_flash.ld -------------------------------------------------------------------------------- /hw/bsp/samg55xplained/samg55xplained.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/samg55xplained/samg55xplained.c -------------------------------------------------------------------------------- /hw/bsp/seeeduino_xiao/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/seeeduino_xiao/board.mk -------------------------------------------------------------------------------- /hw/bsp/seeeduino_xiao/samd21g18a_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/seeeduino_xiao/samd21g18a_flash.ld -------------------------------------------------------------------------------- /hw/bsp/seeeduino_xiao/seeeduino_xiao.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/seeeduino_xiao/seeeduino_xiao.c -------------------------------------------------------------------------------- /hw/bsp/spresense/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/spresense/board.mk -------------------------------------------------------------------------------- /hw/bsp/spresense/board_spresense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/spresense/board_spresense.c -------------------------------------------------------------------------------- /hw/bsp/stlinkv3mini/STM32F723xE_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stlinkv3mini/STM32F723xE_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stlinkv3mini/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stlinkv3mini/board.mk -------------------------------------------------------------------------------- /hw/bsp/stlinkv3mini/stlinkv3mini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stlinkv3mini/stlinkv3mini.c -------------------------------------------------------------------------------- /hw/bsp/stlinkv3mini/stm32f7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stlinkv3mini/stm32f7xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f070rbnucleo/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f070rbnucleo/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f070rbnucleo/stm32F070rbtx_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f070rbnucleo/stm32F070rbtx_flash.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f070rbnucleo/stm32f070rbnucleo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f070rbnucleo/stm32f070rbnucleo.c -------------------------------------------------------------------------------- /hw/bsp/stm32f070rbnucleo/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f070rbnucleo/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f072disco/STM32F072RBTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f072disco/STM32F072RBTx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f072disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f072disco/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f072disco/stm32f072disco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f072disco/stm32f072disco.c -------------------------------------------------------------------------------- /hw/bsp/stm32f072disco/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f072disco/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f103bluepill/STM32F103XB_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f103bluepill/STM32F103XB_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f103bluepill/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f103bluepill/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f103bluepill/stm32f103bluepill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f103bluepill/stm32f103bluepill.c -------------------------------------------------------------------------------- /hw/bsp/stm32f103bluepill/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f103bluepill/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f207nucleo/STM32F207ZGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f207nucleo/STM32F207ZGTx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f207nucleo/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f207nucleo/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f207nucleo/stm32f207nucleo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f207nucleo/stm32f207nucleo.c -------------------------------------------------------------------------------- /hw/bsp/stm32f207nucleo/stm32f2xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f207nucleo/stm32f2xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f303disco/STM32F303VCTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f303disco/STM32F303VCTx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f303disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f303disco/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f303disco/stm32f303disco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f303disco/stm32f303disco.c -------------------------------------------------------------------------------- /hw/bsp/stm32f303disco/stm32f3xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f303disco/stm32f3xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f401blackpill/STM32F401VCTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f401blackpill/STM32F401VCTx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f401blackpill/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f401blackpill/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f401blackpill/stm32f401blackpill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f401blackpill/stm32f401blackpill.c -------------------------------------------------------------------------------- /hw/bsp/stm32f401blackpill/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f401blackpill/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f407disco/STM32F407VGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f407disco/STM32F407VGTx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f407disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f407disco/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f407disco/stm32f407disco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f407disco/stm32f407disco.c -------------------------------------------------------------------------------- /hw/bsp/stm32f407disco/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f407disco/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f411blackpill/STM32F411CEUx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f411blackpill/STM32F411CEUx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f411blackpill/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f411blackpill/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f411blackpill/stm32f411blackpill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f411blackpill/stm32f411blackpill.c -------------------------------------------------------------------------------- /hw/bsp/stm32f411blackpill/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f411blackpill/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f411disco/STM32F411VETx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f411disco/STM32F411VETx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f411disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f411disco/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f411disco/stm32f411disco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f411disco/stm32f411disco.c -------------------------------------------------------------------------------- /hw/bsp/stm32f411disco/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f411disco/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f412disco/STM32F412ZGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f412disco/STM32F412ZGTx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f412disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f412disco/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f412disco/stm32f412disco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f412disco/stm32f412disco.c -------------------------------------------------------------------------------- /hw/bsp/stm32f412disco/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f412disco/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f723disco/STM32F723xE_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f723disco/STM32F723xE_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f723disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f723disco/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f723disco/stm32f723disco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f723disco/stm32f723disco.c -------------------------------------------------------------------------------- /hw/bsp/stm32f723disco/stm32f7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f723disco/stm32f7xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f746disco/STM32F746ZGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f746disco/STM32F746ZGTx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f746disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f746disco/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f746disco/stm32f746disco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f746disco/stm32f746disco.c -------------------------------------------------------------------------------- /hw/bsp/stm32f746disco/stm32f7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f746disco/stm32f7xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f746nucleo/STM32F746ZGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f746nucleo/STM32F746ZGTx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f746nucleo/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f746nucleo/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f746nucleo/stm32f746nucleo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f746nucleo/stm32f746nucleo.c -------------------------------------------------------------------------------- /hw/bsp/stm32f746nucleo/stm32f7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f746nucleo/stm32f7xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f767nucleo/STM32F767ZITx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f767nucleo/STM32F767ZITx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f767nucleo/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f767nucleo/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f767nucleo/stm32f767nucleo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f767nucleo/stm32f767nucleo.c -------------------------------------------------------------------------------- /hw/bsp/stm32f767nucleo/stm32f7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f767nucleo/stm32f7xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32f769disco/STM32F769ZITx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f769disco/STM32F769ZITx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32f769disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f769disco/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32f769disco/stm32f769disco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f769disco/stm32f769disco.c -------------------------------------------------------------------------------- /hw/bsp/stm32f769disco/stm32f7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32f769disco/stm32f7xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32h743eval/STM32H743XIHx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32h743eval/STM32H743XIHx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32h743eval/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32h743eval/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32h743eval/stm32h743eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32h743eval/stm32h743eval.c -------------------------------------------------------------------------------- /hw/bsp/stm32h743eval/stm32h7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32h743eval/stm32h7xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32h743nucleo/STM32H743ZITx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32h743nucleo/STM32H743ZITx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32h743nucleo/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32h743nucleo/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32h743nucleo/stm32h743nucleo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32h743nucleo/stm32h743nucleo.c -------------------------------------------------------------------------------- /hw/bsp/stm32h743nucleo/stm32h7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32h743nucleo/stm32h7xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32h745disco/STM32H74xXIHx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32h745disco/STM32H74xXIHx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32h745disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32h745disco/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32h745disco/stm32h745disco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32h745disco/stm32h745disco.c -------------------------------------------------------------------------------- /hw/bsp/stm32h745disco/stm32h7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32h745disco/stm32h7xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32l0538disco/STM32L053C8Tx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32l0538disco/STM32L053C8Tx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32l0538disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32l0538disco/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32l0538disco/stm32l0538disco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32l0538disco/stm32l0538disco.c -------------------------------------------------------------------------------- /hw/bsp/stm32l0538disco/stm32l0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32l0538disco/stm32l0xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32l476disco/STM32L476VGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32l476disco/STM32L476VGTx_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32l476disco/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32l476disco/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32l476disco/stm32l476disco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32l476disco/stm32l476disco.c -------------------------------------------------------------------------------- /hw/bsp/stm32l476disco/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32l476disco/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/stm32l4r5nucleo/STM32L4RXxI_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32l4r5nucleo/STM32L4RXxI_FLASH.ld -------------------------------------------------------------------------------- /hw/bsp/stm32l4r5nucleo/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32l4r5nucleo/board.mk -------------------------------------------------------------------------------- /hw/bsp/stm32l4r5nucleo/stm32l4r5nucleo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32l4r5nucleo/stm32l4r5nucleo.c -------------------------------------------------------------------------------- /hw/bsp/stm32l4r5nucleo/stm32l4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/stm32l4r5nucleo/stm32l4xx_hal_conf.h -------------------------------------------------------------------------------- /hw/bsp/teensy_40/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/teensy_40/board.h -------------------------------------------------------------------------------- /hw/bsp/teensy_40/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/teensy_40/board.mk -------------------------------------------------------------------------------- /hw/bsp/teensy_40/teensy40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/teensy_40/teensy40.c -------------------------------------------------------------------------------- /hw/bsp/teensy_40/teensy40_flexspi_nor_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/teensy_40/teensy40_flexspi_nor_config.c -------------------------------------------------------------------------------- /hw/bsp/teensy_40/teensy40_flexspi_nor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/bsp/teensy_40/teensy40_flexspi_nor_config.h -------------------------------------------------------------------------------- /hw/mcu/dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/dialog/README.md -------------------------------------------------------------------------------- /hw/mcu/dialog/da1469x/da1469x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/dialog/da1469x/da1469x.ld -------------------------------------------------------------------------------- /hw/mcu/dialog/da1469x/include/hal/hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/dialog/da1469x/include/hal/hal_gpio.h -------------------------------------------------------------------------------- /hw/mcu/dialog/da1469x/include/mcu/da1469x_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/dialog/da1469x/include/mcu/da1469x_clock.h -------------------------------------------------------------------------------- /hw/mcu/dialog/da1469x/include/mcu/da1469x_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/dialog/da1469x/include/mcu/da1469x_hal.h -------------------------------------------------------------------------------- /hw/mcu/dialog/da1469x/include/mcu/mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/dialog/da1469x/include/mcu/mcu.h -------------------------------------------------------------------------------- /hw/mcu/dialog/da1469x/src/da1469x_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/dialog/da1469x/src/da1469x_clock.c -------------------------------------------------------------------------------- /hw/mcu/dialog/da1469x/src/hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/dialog/da1469x/src/hal_gpio.c -------------------------------------------------------------------------------- /hw/mcu/dialog/da1469x/src/hal_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/dialog/da1469x/src/hal_system.c -------------------------------------------------------------------------------- /hw/mcu/dialog/da1469x/src/hal_system_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/dialog/da1469x/src/hal_system_start.c -------------------------------------------------------------------------------- /hw/mcu/dialog/da1469x/src/system_da1469x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/dialog/da1469x/src/system_da1469x.c -------------------------------------------------------------------------------- /hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/ble.h -------------------------------------------------------------------------------- /hw/mcu/nordic/nrfx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/nordic/nrfx_config.h -------------------------------------------------------------------------------- /hw/mcu/nordic/nrfx_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/nordic/nrfx_glue.h -------------------------------------------------------------------------------- /hw/mcu/nordic/nrfx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/hw/mcu/nordic/nrfx_log.h -------------------------------------------------------------------------------- /lib/SEGGER_RTT/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/SEGGER_RTT/License.txt -------------------------------------------------------------------------------- /lib/SEGGER_RTT/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/SEGGER_RTT/README.txt -------------------------------------------------------------------------------- /lib/SEGGER_RTT/RTT/SEGGER_RTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/SEGGER_RTT/RTT/SEGGER_RTT.c -------------------------------------------------------------------------------- /lib/SEGGER_RTT/RTT/SEGGER_RTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/SEGGER_RTT/RTT/SEGGER_RTT.h -------------------------------------------------------------------------------- /lib/SEGGER_RTT/RTT/SEGGER_RTT_ASM_ARMv7M.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/SEGGER_RTT/RTT/SEGGER_RTT_ASM_ARMv7M.S -------------------------------------------------------------------------------- /lib/SEGGER_RTT/RTT/SEGGER_RTT_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/SEGGER_RTT/RTT/SEGGER_RTT_Conf.h -------------------------------------------------------------------------------- /lib/SEGGER_RTT/RTT/SEGGER_RTT_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/SEGGER_RTT/RTT/SEGGER_RTT_printf.c -------------------------------------------------------------------------------- /lib/SEGGER_RTT/Syscalls/SEGGER_RTT_Syscalls_GCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/SEGGER_RTT/Syscalls/SEGGER_RTT_Syscalls_GCC.c -------------------------------------------------------------------------------- /lib/SEGGER_RTT/Syscalls/SEGGER_RTT_Syscalls_IAR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/SEGGER_RTT/Syscalls/SEGGER_RTT_Syscalls_IAR.c -------------------------------------------------------------------------------- /lib/SEGGER_RTT/Syscalls/SEGGER_RTT_Syscalls_KEIL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/SEGGER_RTT/Syscalls/SEGGER_RTT_Syscalls_KEIL.c -------------------------------------------------------------------------------- /lib/SEGGER_RTT/Syscalls/SEGGER_RTT_Syscalls_SES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/SEGGER_RTT/Syscalls/SEGGER_RTT_Syscalls_SES.c -------------------------------------------------------------------------------- /lib/fatfs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/fatfs/00readme.txt -------------------------------------------------------------------------------- /lib/fatfs/ccsbcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/fatfs/ccsbcs.c -------------------------------------------------------------------------------- /lib/fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/fatfs/diskio.c -------------------------------------------------------------------------------- /lib/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/fatfs/diskio.h -------------------------------------------------------------------------------- /lib/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/fatfs/ff.c -------------------------------------------------------------------------------- /lib/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/fatfs/ff.h -------------------------------------------------------------------------------- /lib/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/fatfs/ffconf.h -------------------------------------------------------------------------------- /lib/fatfs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/fatfs/integer.h -------------------------------------------------------------------------------- /lib/networking/dhserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/networking/dhserver.c -------------------------------------------------------------------------------- /lib/networking/dhserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/networking/dhserver.h -------------------------------------------------------------------------------- /lib/networking/dnserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/networking/dnserver.c -------------------------------------------------------------------------------- /lib/networking/dnserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/networking/dnserver.h -------------------------------------------------------------------------------- /lib/networking/ndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/networking/ndis.h -------------------------------------------------------------------------------- /lib/networking/rndis_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/networking/rndis_protocol.h -------------------------------------------------------------------------------- /lib/networking/rndis_reports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/lib/networking/rndis_reports.c -------------------------------------------------------------------------------- /pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/pkg.yml -------------------------------------------------------------------------------- /repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/repository.yml -------------------------------------------------------------------------------- /src/class/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/audio/audio.h -------------------------------------------------------------------------------- /src/class/audio/audio_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/audio/audio_device.c -------------------------------------------------------------------------------- /src/class/audio/audio_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/audio/audio_device.h -------------------------------------------------------------------------------- /src/class/bth/bth_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/bth/bth_device.c -------------------------------------------------------------------------------- /src/class/bth/bth_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/bth/bth_device.h -------------------------------------------------------------------------------- /src/class/cdc/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/cdc/cdc.h -------------------------------------------------------------------------------- /src/class/cdc/cdc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/cdc/cdc_device.c -------------------------------------------------------------------------------- /src/class/cdc/cdc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/cdc/cdc_device.h -------------------------------------------------------------------------------- /src/class/cdc/cdc_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/cdc/cdc_host.c -------------------------------------------------------------------------------- /src/class/cdc/cdc_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/cdc/cdc_host.h -------------------------------------------------------------------------------- /src/class/cdc/cdc_rndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/cdc/cdc_rndis.h -------------------------------------------------------------------------------- /src/class/cdc/cdc_rndis_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/cdc/cdc_rndis_host.c -------------------------------------------------------------------------------- /src/class/cdc/cdc_rndis_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/cdc/cdc_rndis_host.h -------------------------------------------------------------------------------- /src/class/dfu/dfu_rt_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/dfu/dfu_rt_device.c -------------------------------------------------------------------------------- /src/class/dfu/dfu_rt_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/dfu/dfu_rt_device.h -------------------------------------------------------------------------------- /src/class/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/hid/hid.h -------------------------------------------------------------------------------- /src/class/hid/hid_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/hid/hid_device.c -------------------------------------------------------------------------------- /src/class/hid/hid_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/hid/hid_device.h -------------------------------------------------------------------------------- /src/class/hid/hid_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/hid/hid_host.c -------------------------------------------------------------------------------- /src/class/hid/hid_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/hid/hid_host.h -------------------------------------------------------------------------------- /src/class/midi/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/midi/midi.h -------------------------------------------------------------------------------- /src/class/midi/midi_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/midi/midi_device.c -------------------------------------------------------------------------------- /src/class/midi/midi_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/midi/midi_device.h -------------------------------------------------------------------------------- /src/class/msc/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/msc/msc.h -------------------------------------------------------------------------------- /src/class/msc/msc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/msc/msc_device.c -------------------------------------------------------------------------------- /src/class/msc/msc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/msc/msc_device.h -------------------------------------------------------------------------------- /src/class/msc/msc_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/msc/msc_host.c -------------------------------------------------------------------------------- /src/class/msc/msc_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/msc/msc_host.h -------------------------------------------------------------------------------- /src/class/net/net_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/net/net_device.c -------------------------------------------------------------------------------- /src/class/net/net_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/net/net_device.h -------------------------------------------------------------------------------- /src/class/usbtmc/usbtmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/usbtmc/usbtmc.h -------------------------------------------------------------------------------- /src/class/usbtmc/usbtmc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/usbtmc/usbtmc_device.c -------------------------------------------------------------------------------- /src/class/usbtmc/usbtmc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/usbtmc/usbtmc_device.h -------------------------------------------------------------------------------- /src/class/vendor/vendor_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/vendor/vendor_device.c -------------------------------------------------------------------------------- /src/class/vendor/vendor_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/vendor/vendor_device.h -------------------------------------------------------------------------------- /src/class/vendor/vendor_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/vendor/vendor_host.c -------------------------------------------------------------------------------- /src/class/vendor/vendor_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/class/vendor/vendor_host.h -------------------------------------------------------------------------------- /src/common/sys_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/common/sys_queue.h -------------------------------------------------------------------------------- /src/common/tusb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/common/tusb_common.h -------------------------------------------------------------------------------- /src/common/tusb_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/common/tusb_compiler.h -------------------------------------------------------------------------------- /src/common/tusb_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/common/tusb_error.h -------------------------------------------------------------------------------- /src/common/tusb_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/common/tusb_fifo.c -------------------------------------------------------------------------------- /src/common/tusb_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/common/tusb_fifo.h -------------------------------------------------------------------------------- /src/common/tusb_timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/common/tusb_timeout.h -------------------------------------------------------------------------------- /src/common/tusb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/common/tusb_types.h -------------------------------------------------------------------------------- /src/common/tusb_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/common/tusb_verify.h -------------------------------------------------------------------------------- /src/device/dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/device/dcd.h -------------------------------------------------------------------------------- /src/device/usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/device/usbd.c -------------------------------------------------------------------------------- /src/device/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/device/usbd.h -------------------------------------------------------------------------------- /src/device/usbd_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/device/usbd_control.c -------------------------------------------------------------------------------- /src/device/usbd_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/device/usbd_pvt.h -------------------------------------------------------------------------------- /src/host/ehci/ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/host/ehci/ehci.c -------------------------------------------------------------------------------- /src/host/ehci/ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/host/ehci/ehci.h -------------------------------------------------------------------------------- /src/host/hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/host/hcd.h -------------------------------------------------------------------------------- /src/host/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/host/hub.c -------------------------------------------------------------------------------- /src/host/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/host/hub.h -------------------------------------------------------------------------------- /src/host/ohci/ohci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/host/ohci/ohci.c -------------------------------------------------------------------------------- /src/host/ohci/ohci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/host/ohci/ohci.h -------------------------------------------------------------------------------- /src/host/usbh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/host/usbh.c -------------------------------------------------------------------------------- /src/host/usbh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/host/usbh.h -------------------------------------------------------------------------------- /src/host/usbh_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/host/usbh_control.c -------------------------------------------------------------------------------- /src/host/usbh_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/host/usbh_hcd.h -------------------------------------------------------------------------------- /src/osal/osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/osal/osal.h -------------------------------------------------------------------------------- /src/osal/osal_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/osal/osal_freertos.h -------------------------------------------------------------------------------- /src/osal/osal_mynewt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/osal/osal_mynewt.h -------------------------------------------------------------------------------- /src/osal/osal_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/osal/osal_none.h -------------------------------------------------------------------------------- /src/osal/osal_pico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/osal/osal_pico.h -------------------------------------------------------------------------------- /src/portable/dialog/da146xx/dcd_da146xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/dialog/da146xx/dcd_da146xx.c -------------------------------------------------------------------------------- /src/portable/espressif/esp32s2/dcd_esp32s2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/espressif/esp32s2/dcd_esp32s2.c -------------------------------------------------------------------------------- /src/portable/microchip/samd/dcd_samd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/microchip/samd/dcd_samd.c -------------------------------------------------------------------------------- /src/portable/microchip/samg/dcd_samg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/microchip/samg/dcd_samg.c -------------------------------------------------------------------------------- /src/portable/nordic/nrf5x/dcd_nrf5x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/nordic/nrf5x/dcd_nrf5x.c -------------------------------------------------------------------------------- /src/portable/nuvoton/nuc120/dcd_nuc120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/nuvoton/nuc120/dcd_nuc120.c -------------------------------------------------------------------------------- /src/portable/nuvoton/nuc121/dcd_nuc121.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/nuvoton/nuc121/dcd_nuc121.c -------------------------------------------------------------------------------- /src/portable/nuvoton/nuc505/dcd_nuc505.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/nuvoton/nuc505/dcd_nuc505.c -------------------------------------------------------------------------------- /src/portable/nxp/lpc17_40/dcd_lpc17_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/nxp/lpc17_40/dcd_lpc17_40.c -------------------------------------------------------------------------------- /src/portable/nxp/lpc17_40/dcd_lpc17_40.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/nxp/lpc17_40/dcd_lpc17_40.h -------------------------------------------------------------------------------- /src/portable/nxp/lpc17_40/hcd_lpc17_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/nxp/lpc17_40/hcd_lpc17_40.c -------------------------------------------------------------------------------- /src/portable/nxp/lpc18_43/hcd_lpc18_43.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/nxp/lpc18_43/hcd_lpc18_43.c -------------------------------------------------------------------------------- /src/portable/nxp/lpc_ip3511/dcd_lpc_ip3511.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/nxp/lpc_ip3511/dcd_lpc_ip3511.c -------------------------------------------------------------------------------- /src/portable/nxp/transdimension/dcd_transdimension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/nxp/transdimension/dcd_transdimension.c -------------------------------------------------------------------------------- /src/portable/raspberrypi/rp2040/dcd_rp2040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/raspberrypi/rp2040/dcd_rp2040.c -------------------------------------------------------------------------------- /src/portable/raspberrypi/rp2040/hcd_rp2040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/raspberrypi/rp2040/hcd_rp2040.c -------------------------------------------------------------------------------- /src/portable/raspberrypi/rp2040/rp2040_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/raspberrypi/rp2040/rp2040_usb.c -------------------------------------------------------------------------------- /src/portable/raspberrypi/rp2040/rp2040_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/raspberrypi/rp2040/rp2040_usb.h -------------------------------------------------------------------------------- /src/portable/sony/cxd56/dcd_cxd56.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/sony/cxd56/dcd_cxd56.c -------------------------------------------------------------------------------- /src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c -------------------------------------------------------------------------------- /src/portable/st/stm32_fsdev/dcd_stm32_fsdev_pvt_st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/st/stm32_fsdev/dcd_stm32_fsdev_pvt_st.h -------------------------------------------------------------------------------- /src/portable/st/synopsys/dcd_synopsys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/st/synopsys/dcd_synopsys.c -------------------------------------------------------------------------------- /src/portable/template/dcd_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/template/dcd_template.c -------------------------------------------------------------------------------- /src/portable/ti/msp430x5xx/dcd_msp430x5xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/ti/msp430x5xx/dcd_msp430x5xx.c -------------------------------------------------------------------------------- /src/portable/valentyusb/eptri/dcd_eptri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/valentyusb/eptri/dcd_eptri.c -------------------------------------------------------------------------------- /src/portable/valentyusb/eptri/dcd_eptri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/portable/valentyusb/eptri/dcd_eptri.h -------------------------------------------------------------------------------- /src/tusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/tusb.c -------------------------------------------------------------------------------- /src/tusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/tusb.h -------------------------------------------------------------------------------- /src/tusb_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/src/tusb_option.h -------------------------------------------------------------------------------- /test/ceedling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/ceedling -------------------------------------------------------------------------------- /test/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/project.yml -------------------------------------------------------------------------------- /test/test/device/msc/test_msc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/test/device/msc/test_msc_device.c -------------------------------------------------------------------------------- /test/test/device/usbd/test_usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/test/device/usbd/test_usbd.c -------------------------------------------------------------------------------- /test/test/support/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/test/support/tusb_config.h -------------------------------------------------------------------------------- /test/test/test_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/test/test_fifo.c -------------------------------------------------------------------------------- /test/vendor/ceedling/bin/ceedling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/bin/ceedling -------------------------------------------------------------------------------- /test/vendor/ceedling/docs/CException.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/docs/CException.md -------------------------------------------------------------------------------- /test/vendor/ceedling/docs/CMock_Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/docs/CMock_Summary.md -------------------------------------------------------------------------------- /test/vendor/ceedling/docs/CeedlingPacket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/docs/CeedlingPacket.md -------------------------------------------------------------------------------- /test/vendor/ceedling/docs/UnityAssertionsReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/docs/UnityAssertionsReference.md -------------------------------------------------------------------------------- /test/vendor/ceedling/docs/UnityConfigurationGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/docs/UnityConfigurationGuide.md -------------------------------------------------------------------------------- /test/vendor/ceedling/docs/UnityGettingStartedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/docs/UnityGettingStartedGuide.md -------------------------------------------------------------------------------- /test/vendor/ceedling/docs/UnityHelperScriptsGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/docs/UnityHelperScriptsGuide.md -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/build_invoker_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/build_invoker_utils.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/cacheinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/cacheinator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/cacheinator_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/cacheinator_helper.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/cmock_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/cmock_builder.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/configurator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/configurator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/configurator_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/configurator_setup.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/constants.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/defaults.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/dependinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/dependinator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/erb_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/erb_wrapper.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/file_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/file_finder.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/file_finder_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/file_finder_helper.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/file_path_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/file_path_utils.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/file_system_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/file_system_utils.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/file_system_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/file_system_wrapper.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/file_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/file_wrapper.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/flaginator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/flaginator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/generator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/generator_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/generator_helper.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/loginator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/loginator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/makefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/makefile.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/objects.yml -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/par_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/par_map.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/plugin.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/plugin_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/plugin_builder.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/plugin_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/plugin_manager.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/plugin_reportinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/plugin_reportinator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/preprocessinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/preprocessinator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/project_file_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/project_file_loader.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/rake_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/rake_utils.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/rake_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/rake_wrapper.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/rakefile.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/release_invoker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/release_invoker.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/reportinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/reportinator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/rules_cmock.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/rules_cmock.rake -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/rules_preprocess.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/rules_preprocess.rake -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/rules_release.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/rules_release.rake -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/rules_tests.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/rules_tests.rake -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/setupinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/setupinator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/stream_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/stream_wrapper.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/streaminator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/streaminator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/streaminator_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/streaminator_helper.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/system_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/system_utils.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/system_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/system_wrapper.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/target_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/target_loader.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/task_invoker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/task_invoker.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/tasks_base.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/tasks_base.rake -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/tasks_filesystem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/tasks_filesystem.rake -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/tasks_release.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/tasks_release.rake -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/tasks_tests.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/tasks_tests.rake -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/tasks_vendor.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/tasks_vendor.rake -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/test_invoker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/test_invoker.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/test_invoker_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/test_invoker_helper.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/tool_executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/tool_executor.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/verbosinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/verbosinator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/version.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/version.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/version.rb.erb -------------------------------------------------------------------------------- /test/vendor/ceedling/lib/ceedling/yaml_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/lib/ceedling/yaml_wrapper.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/beep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/beep/README.md -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/beep/lib/beep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/beep/lib/beep.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/bullseye/bullseye.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/bullseye/bullseye.rake -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/bullseye/lib/bullseye.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/bullseye/lib/bullseye.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/bullseye/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/command_hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/command_hooks/README.md -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/fake_function_framework/examples/fff_example/src/bar.c: -------------------------------------------------------------------------------- 1 | #include "bar.h" 2 | -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/fake_function_framework/examples/fff_example/src/subfolder/zzz.c: -------------------------------------------------------------------------------- 1 | #include "zzz.h" 2 | -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/gcov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/gcov/README.md -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/gcov/assets/template.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/gcov/assets/template.erb -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/gcov/config/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/gcov/config/defaults.yml -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/gcov/gcov.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/gcov/gcov.rake -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/gcov/lib/gcov.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/gcov/lib/gcov.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/gcov/lib/gcov_constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/gcov/lib/gcov_constants.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/subprojects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/subprojects/README.md -------------------------------------------------------------------------------- /test/vendor/ceedling/plugins/xml_tests_report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/plugins/xml_tests_report/README.md -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/c_exception/lib/CException.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/c_exception/lib/CException.c -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/c_exception/lib/CException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/c_exception/lib/CException.h -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/c_exception/release/build.info: -------------------------------------------------------------------------------- 1 | 18 2 | 3 | -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/c_exception/release/version.info: -------------------------------------------------------------------------------- 1 | 1.3.1 2 | 3 | -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/cmock/lib/cmock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/cmock/lib/cmock.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/cmock/lib/cmock_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/cmock/lib/cmock_config.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/cmock/lib/cmock_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/cmock/lib/cmock_generator.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/cmock/release/build.info: -------------------------------------------------------------------------------- 1 | 217 2 | 3 | -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/cmock/release/version.info: -------------------------------------------------------------------------------- 1 | 2.4.6 2 | 3 | -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/cmock/src/cmock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/cmock/src/cmock.c -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/cmock/src/cmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/cmock/src/cmock.h -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/cmock/src/cmock_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/cmock/src/cmock_internals.h -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/cmock/src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/cmock/src/meson.build -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/deep_merge/lib/deep_merge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/deep_merge/lib/deep_merge.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/diy/lib/diy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/diy/lib/diy.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/diy/lib/diy/factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/diy/lib/diy/factory.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/unity/auto/colour_prompt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/unity/auto/colour_prompt.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/unity/auto/parse_output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/unity/auto/parse_output.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/unity/auto/run_test.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/unity/auto/run_test.erb -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/unity/auto/type_sanitizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/unity/auto/type_sanitizer.rb -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/unity/auto/unity_to_junit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/unity/auto/unity_to_junit.py -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/unity/release/build.info: -------------------------------------------------------------------------------- 1 | 122 2 | 3 | -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/unity/release/version.info: -------------------------------------------------------------------------------- 1 | 2.4.3 2 | 3 | -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/unity/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/unity/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/unity/src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/unity/src/meson.build -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/unity/src/unity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/unity/src/unity.c -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/unity/src/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/unity/src/unity.h -------------------------------------------------------------------------------- /test/vendor/ceedling/vendor/unity/src/unity_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/test/vendor/ceedling/vendor/unity/src/unity_internals.h -------------------------------------------------------------------------------- /tinyusb.Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/tinyusb.Doxyfile -------------------------------------------------------------------------------- /tools/build_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/tools/build_all.py -------------------------------------------------------------------------------- /tools/build_esp32s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/tools/build_esp32s.py -------------------------------------------------------------------------------- /tools/top.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/tools/top.mk -------------------------------------------------------------------------------- /tools/usb_drivers/99-tinyusb.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/tools/usb_drivers/99-tinyusb.rules -------------------------------------------------------------------------------- /tools/usb_drivers/tinyusb_win_usbser.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/tools/usb_drivers/tinyusb_win_usbser.inf -------------------------------------------------------------------------------- /version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/tinyusb/HEAD/version.yml --------------------------------------------------------------------------------