├── LICENSE ├── README.md ├── ch32v003programmer ├── .gitignore ├── CMakeLists.txt ├── README.md ├── build │ ├── bootloader │ │ └── bootloader.bin │ ├── partition_table │ │ └── partition-table.bin │ ├── usb_sandbox.bin │ ├── usb_sandbox.elf │ └── usb_sandbox.map ├── components │ ├── esp_tinyusb │ │ ├── .component_hash │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cdc.c │ │ ├── descriptors_control.c │ │ ├── idf_component.yml │ │ ├── include │ │ │ ├── tinyusb.h │ │ │ ├── tinyusb_net.h │ │ │ ├── tinyusb_types.h │ │ │ ├── tusb_cdc_acm.h │ │ │ ├── tusb_config.h │ │ │ ├── tusb_console.h │ │ │ ├── tusb_msc_storage.h │ │ │ ├── tusb_tasks.h │ │ │ └── vfs_tinyusb.h │ │ ├── include_private │ │ │ ├── cdc.h │ │ │ ├── descriptors_control.h │ │ │ └── usb_descriptors.h │ │ ├── sbom.yml │ │ ├── test │ │ │ └── local │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── libusb_test.c │ │ ├── test_apps │ │ │ ├── README.md │ │ │ ├── cdc_and_usb_device │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── idf_component.yml │ │ │ │ │ ├── test_app_main.c │ │ │ │ │ ├── test_bvalid_sig.c │ │ │ │ │ ├── test_bvalid_sig.h │ │ │ │ │ ├── test_cdc.c │ │ │ │ │ ├── test_descriptors_config.c │ │ │ │ │ ├── test_descriptors_config.h │ │ │ │ │ └── tud_global_cb.c │ │ │ │ ├── pytest_cdc.py │ │ │ │ ├── pytest_usb_device.py │ │ │ │ └── sdkconfig.defaults │ │ │ └── vendor │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── idf_component.yml │ │ │ │ ├── test_app_main.c │ │ │ │ └── test_vendor.c │ │ │ │ ├── pytest_vendor.py │ │ │ │ └── sdkconfig.defaults │ │ ├── tinyusb.c │ │ ├── tinyusb_net.c │ │ ├── tusb_cdc_acm.c │ │ ├── tusb_console.c │ │ ├── tusb_msc_storage.c │ │ ├── tusb_tasks.c │ │ ├── usb_descriptors.c │ │ └── vfs_tinyusb.c │ └── tinyusb │ │ ├── .codespell │ │ ├── exclude-file.txt │ │ └── ignore-words.txt │ │ ├── .codespellrc │ │ ├── .component_hash │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .pre-commit-config.yaml │ │ ├── .readthedocs.yaml │ │ ├── CMakeLists.txt │ │ ├── CODE_OF_CONDUCT.rst │ │ ├── CONTRIBUTORS.rst │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.rst │ │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── device │ │ │ ├── 99-tinyusb.rules │ │ │ ├── CMakeLists.txt │ │ │ ├── audio_4_channel_mic │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── skip.txt │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── plot_audio_samples.py │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── audio_test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── skip.txt │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── plot_audio_samples.py │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── audio_test_multi_rate │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── skip.txt │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── plot_audio_samples.py │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ ├── usb_descriptors.c │ │ │ │ │ └── usb_descriptors.h │ │ │ ├── board_test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── sdkconfig.defaults │ │ │ │ └── src │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.c │ │ │ │ │ └── tusb_config.h │ │ │ ├── cdc_dual_ports │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── cdc_msc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── skip.txt │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── msc_disk.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── cdc_msc_freertos │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── sdkconfig.defaults │ │ │ │ ├── skip.txt │ │ │ │ └── src │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ │ ├── freertos_hook.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── msc_disk.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── skip.txt │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── dfu_runtime │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── dynamic_configuration │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── skip.txt │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── msc_disk.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── hid_boot_interface │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ ├── usb_descriptors.c │ │ │ │ │ └── usb_descriptors.h │ │ │ ├── hid_composite │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ ├── usb_descriptors.c │ │ │ │ │ └── usb_descriptors.h │ │ │ ├── hid_composite_freertos │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── sdkconfig.defaults │ │ │ │ ├── skip.txt │ │ │ │ └── src │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ │ ├── freertos_hook.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ ├── usb_descriptors.c │ │ │ │ │ └── usb_descriptors.h │ │ │ ├── hid_generic_inout │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── boards.js │ │ │ │ ├── hid_test.js │ │ │ │ ├── hid_test.py │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── hid_multiple_interface │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── midi_test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── msc_dual_lun │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── skip.txt │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── msc_disk_dual.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── net_lwip_webserver │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── skip.txt │ │ │ │ └── src │ │ │ │ │ ├── arch │ │ │ │ │ ├── bpstruct.h │ │ │ │ │ ├── cc.h │ │ │ │ │ └── epstruct.h │ │ │ │ │ ├── lwipopts.h │ │ │ │ │ ├── main.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.c │ │ │ ├── uac2_headset │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── skip.txt │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ ├── usb_descriptors.c │ │ │ │ │ └── usb_descriptors.h │ │ │ ├── usbtmc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── skip.txt │ │ │ │ ├── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── main.h │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ ├── usb_descriptors.c │ │ │ │ │ ├── usbtmc_app.c │ │ │ │ │ └── usbtmc_app.h │ │ │ │ └── visaQuery.py │ │ │ ├── video_capture │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── skip.txt │ │ │ │ └── src │ │ │ │ │ ├── images.h │ │ │ │ │ ├── main.c │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ ├── usb_descriptors.c │ │ │ │ │ └── usb_descriptors.h │ │ │ └── webusb_serial │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ ├── usb_descriptors.c │ │ │ │ └── usb_descriptors.h │ │ ├── dual │ │ │ ├── CMakeLists.txt │ │ │ └── host_hid_to_device_cdc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── only.txt │ │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── tusb_config.h │ │ │ │ └── usb_descriptors.c │ │ ├── host │ │ │ ├── CMakeLists.txt │ │ │ ├── bare_api │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── only.txt │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ └── tusb_config.h │ │ │ ├── cdc_msc_hid │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── only.txt │ │ │ │ └── src │ │ │ │ │ ├── cdc_app.c │ │ │ │ │ ├── hid_app.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── msc_app.c │ │ │ │ │ └── tusb_config.h │ │ │ ├── hid_controller │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── only.txt │ │ │ │ └── src │ │ │ │ │ ├── hid_app.c │ │ │ │ │ ├── main.c │ │ │ │ │ └── tusb_config.h │ │ │ └── msc_file_explorer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── only.txt │ │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── msc_app.c │ │ │ │ └── tusb_config.h │ │ ├── make.mk │ │ ├── rules.mk │ │ └── typec │ │ │ ├── CMakeLists.txt │ │ │ └── power_delivery │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── only.txt │ │ │ └── src │ │ │ ├── main.c │ │ │ └── tusb_config.h │ │ ├── hw │ │ ├── bsp │ │ │ ├── ansi_escape.h │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_mcu.h │ │ │ ├── broadcom_32bit │ │ │ │ ├── boards │ │ │ │ │ └── raspberrypi_zero_w │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── broadcom_64bit │ │ │ │ ├── boards │ │ │ │ │ ├── raspberrypi_cm4 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ └── raspberrypi_zero2w │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── brtmm90x │ │ │ │ ├── boards │ │ │ │ │ └── mm900evxb │ │ │ │ │ │ └── board.h │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── ch32v307 │ │ │ │ ├── boards │ │ │ │ │ └── ch32v307v-r1-1v0 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── debug_uart.c │ │ │ │ │ │ └── debug_uart.h │ │ │ │ ├── ch32v307.ld │ │ │ │ ├── ch32v30x_conf.h │ │ │ │ ├── ch32v30x_it.c │ │ │ │ ├── ch32v30x_it.h │ │ │ │ ├── core_riscv.h │ │ │ │ ├── family.c │ │ │ │ ├── family.mk │ │ │ │ ├── system_ch32v30x.c │ │ │ │ ├── system_ch32v30x.h │ │ │ │ └── wch-riscv.cfg │ │ │ ├── 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 │ │ │ ├── espressif │ │ │ │ ├── boards │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── adafruit_feather_esp32s2 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ └── board.h │ │ │ │ │ ├── adafruit_magtag_29gray │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ └── board.h │ │ │ │ │ ├── adafruit_metro_esp32s2 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ └── board.h │ │ │ │ │ ├── espressif_addax_1 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ └── board.h │ │ │ │ │ ├── espressif_kaluga_1 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ └── board.h │ │ │ │ │ ├── espressif_s3_devkitc │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ └── board.h │ │ │ │ │ ├── espressif_s3_devkitm │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ └── board.h │ │ │ │ │ ├── espressif_saola_1 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ └── board.h │ │ │ │ │ └── family.c │ │ │ │ ├── components │ │ │ │ │ ├── led_strip │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── led_strip.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── led_strip_rmt_ws2812.c │ │ │ │ │ └── tinyusb_src │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── family.cmake │ │ │ │ └── family.mk │ │ │ ├── f1c100s │ │ │ │ ├── README.md │ │ │ │ ├── board.h │ │ │ │ ├── board.mk │ │ │ │ └── f1c100s.c │ │ │ ├── family_support.cmake │ │ │ ├── fomu │ │ │ │ ├── boards │ │ │ │ │ └── fomu │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── crt0-vexriscv.S │ │ │ │ ├── dfu.py │ │ │ │ ├── family.mk │ │ │ │ ├── fomu.c │ │ │ │ ├── fomu.ld │ │ │ │ ├── include │ │ │ │ │ ├── csr.h │ │ │ │ │ ├── hw │ │ │ │ │ │ └── common.h │ │ │ │ │ └── irq.h │ │ │ │ ├── output_format.ld │ │ │ │ └── regions.ld │ │ │ ├── gd32vf103 │ │ │ │ ├── boards │ │ │ │ │ └── sipeed_longan_nano │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ ├── family.mk │ │ │ │ └── system_gd32vf103.c │ │ │ ├── imxrt │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ ├── metro_m7_1011 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── evkmimxrt1010_flexspi_nor_config.c │ │ │ │ │ │ ├── evkmimxrt1010_flexspi_nor_config.h │ │ │ │ │ │ └── metro_m7_1011.ld │ │ │ │ │ ├── mimxrt1010_evk │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── evkmimxrt1010_flexspi_nor_config.c │ │ │ │ │ │ └── evkmimxrt1010_flexspi_nor_config.h │ │ │ │ │ ├── mimxrt1015_evk │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── evkmimxrt1015_flexspi_nor_config.c │ │ │ │ │ │ └── evkmimxrt1015_flexspi_nor_config.h │ │ │ │ │ ├── mimxrt1020_evk │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── evkmimxrt1020_flexspi_nor_config.c │ │ │ │ │ │ └── evkmimxrt1020_flexspi_nor_config.h │ │ │ │ │ ├── mimxrt1024_evk │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── evkmimxrt1024_flexspi_nor_config.c │ │ │ │ │ │ └── evkmimxrt1024_flexspi_nor_config.h │ │ │ │ │ ├── mimxrt1050_evkb │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── evkbimxrt1050_flexspi_nor_config.c │ │ │ │ │ │ └── evkbimxrt1050_flexspi_nor_config.h │ │ │ │ │ ├── mimxrt1060_evk │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── evkmimxrt1060_flexspi_nor_config.c │ │ │ │ │ │ └── evkmimxrt1060_flexspi_nor_config.h │ │ │ │ │ ├── mimxrt1064_evk │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── evkmimxrt1064_flexspi_nor_config.c │ │ │ │ │ │ └── evkmimxrt1064_flexspi_nor_config.h │ │ │ │ │ ├── teensy_40 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── teensy40_flexspi_nor_config.c │ │ │ │ │ │ └── teensy40_flexspi_nor_config.h │ │ │ │ │ └── teensy_41 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── teensy41_flexspi_nor_config.c │ │ │ │ │ │ └── teensy41_flexspi_nor_config.h │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ └── family.mk │ │ │ ├── kinetis_k32l2 │ │ │ │ ├── boards │ │ │ │ │ ├── frdm_k32l2a4s │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── frdm_k32l2a4s.c │ │ │ │ │ ├── frdm_k32l2b │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── frdm_k32l2b.c │ │ │ │ │ └── kuiic │ │ │ │ │ │ ├── K32L2B31xxxxA_flash.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── kuiic.c │ │ │ │ └── family.mk │ │ │ ├── kinetis_kl │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ └── frdm_kl25z │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── clock_config.c │ │ │ │ │ │ └── clock_config.h │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ ├── family.mk │ │ │ │ └── gcc │ │ │ │ │ ├── MKL25Z128xxx4_flash.ld │ │ │ │ │ └── startup_MKL25Z4.S │ │ │ ├── lpc11 │ │ │ │ ├── boards │ │ │ │ │ ├── lpcxpresso11u37 │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── lpc11u37.ld │ │ │ │ │ │ └── lpcxpresso11u37.c │ │ │ │ │ └── lpcxpresso11u68 │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── lpc11u68.ld │ │ │ │ │ │ └── lpcxpresso11u68.c │ │ │ │ └── family.mk │ │ │ ├── lpc13 │ │ │ │ ├── boards │ │ │ │ │ └── lpcxpresso1347 │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── lpc1347.ld │ │ │ │ │ │ └── lpcxpresso1347.c │ │ │ │ └── family.mk │ │ │ ├── lpc15 │ │ │ │ ├── boards │ │ │ │ │ └── lpcxpresso1549 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── lpc1549.ld │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── lpc17 │ │ │ │ ├── boards │ │ │ │ │ ├── lpcxpresso1769 │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── lpc1769.ld │ │ │ │ │ │ └── lpcxpresso1769.c │ │ │ │ │ └── mbed1768 │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── lpc1768.ld │ │ │ │ │ │ └── mbed1768.c │ │ │ │ └── family.mk │ │ │ ├── lpc18 │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ ├── lpcxpresso18s37 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── lpc1837.ld │ │ │ │ │ └── mcb1800 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── lpc1857.ld │ │ │ │ │ │ └── ozone │ │ │ │ │ │ └── lpc1857.jdebug │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ └── family.mk │ │ │ ├── lpc51 │ │ │ │ ├── boards │ │ │ │ │ └── lpcxpresso51u68 │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── lpcxpresso51u68.c │ │ │ │ └── family.mk │ │ │ ├── lpc54 │ │ │ │ ├── boards │ │ │ │ │ ├── lpcxpresso54114 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ └── lpcxpresso54628 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── lpc55 │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ ├── double_m33_express │ │ │ │ │ │ ├── LPC55S69_cm33_core0_uf2.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── lpcxpresso55s28 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── lpcxpresso55s69 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ └── mcu_link │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ └── family.mk │ │ │ ├── mcx │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ └── mcxn947brk │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── clock_config.c │ │ │ │ │ │ ├── clock_config.h │ │ │ │ │ │ ├── pin_mux.c │ │ │ │ │ │ └── pin_mux.h │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ ├── family.mk │ │ │ │ └── mcx.jlinkscript │ │ │ ├── mm32 │ │ │ │ ├── boards │ │ │ │ │ ├── mm32f327x_bluepillplus │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── flash.ld │ │ │ │ │ │ └── mm32f327x_bluepillplus.c │ │ │ │ │ ├── mm32f327x_mb39 │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── flash.ld │ │ │ │ │ │ └── mm32f327x_mb39.c │ │ │ │ │ └── mm32f327x_pitaya_lite │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── flash.ld │ │ │ │ │ │ └── mm32f327x_pitaya_lite.c │ │ │ │ └── family.mk │ │ │ ├── msp430 │ │ │ │ ├── boards │ │ │ │ │ └── msp_exp430f5529lp │ │ │ │ │ │ └── board.h │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── msp432e4 │ │ │ │ ├── boards │ │ │ │ │ └── msp_exp432e401y │ │ │ │ │ │ └── board.h │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── ngx4330 │ │ │ │ ├── board.mk │ │ │ │ ├── ngx4330.c │ │ │ │ └── ngx4330.ld │ │ │ ├── nrf │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ ├── adafruit_clue │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── arduino_nano33_ble │ │ │ │ │ │ ├── arduino_nano33_ble.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── circuitplayground_bluefruit │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── feather_nrf52840_express │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── feather_nrf52840_sense │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── itsybitsy_nrf52840 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── nrf52840_mdk_dongle │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── nrf52840_mdk_dongle.ld │ │ │ │ │ ├── pca10056 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── ozone │ │ │ │ │ │ │ └── nrf52840.jdebug │ │ │ │ │ ├── pca10059 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── pca10059.ld │ │ │ │ │ ├── pca10095 │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── ozone │ │ │ │ │ │ │ └── nrf5340.jdebug │ │ │ │ │ ├── pca10100 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ └── raytac_mdbt50q_rx │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ ├── family.mk │ │ │ │ ├── linker │ │ │ │ │ └── nrf52840_s140_v6.ld │ │ │ │ ├── nrfx_config.h │ │ │ │ ├── nrfx_glue.h │ │ │ │ └── nrfx_log.h │ │ │ ├── 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 │ │ │ ├── pic32mz │ │ │ │ ├── boards │ │ │ │ │ ├── olimex_emz64 │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── olimex_emz64.c │ │ │ │ │ └── olimex_hmz144 │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── olimex_hmz144.c │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── ra │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ ├── ra4m1_ek │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── fsp_cfg │ │ │ │ │ │ │ ├── bsp │ │ │ │ │ │ │ ├── bsp_cfg.h │ │ │ │ │ │ │ ├── bsp_mcu_device_cfg.h │ │ │ │ │ │ │ ├── bsp_mcu_device_pn_cfg.h │ │ │ │ │ │ │ └── bsp_mcu_family_cfg.h │ │ │ │ │ │ │ └── bsp_clock_cfg.h │ │ │ │ │ ├── ra4m3_ek │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── fsp_cfg │ │ │ │ │ │ │ ├── bsp │ │ │ │ │ │ │ ├── bsp_cfg.h │ │ │ │ │ │ │ └── bsp_mcu_family_cfg.h │ │ │ │ │ │ │ └── bsp_clock_cfg.h │ │ │ │ │ ├── ra6m1_ek │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── fsp_cfg │ │ │ │ │ │ │ ├── bsp │ │ │ │ │ │ │ ├── bsp_cfg.h │ │ │ │ │ │ │ ├── bsp_mcu_device_cfg.h │ │ │ │ │ │ │ ├── bsp_mcu_device_pn_cfg.h │ │ │ │ │ │ │ └── bsp_mcu_family_cfg.h │ │ │ │ │ │ │ └── bsp_clock_cfg.h │ │ │ │ │ └── ra6m5_ek │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── fsp_cfg │ │ │ │ │ │ ├── bsp │ │ │ │ │ │ │ ├── bsp_cfg.h │ │ │ │ │ │ │ ├── bsp_mcu_device_cfg.h │ │ │ │ │ │ │ ├── bsp_mcu_device_pn_cfg.h │ │ │ │ │ │ │ └── bsp_mcu_family_cfg.h │ │ │ │ │ │ └── bsp_clock_cfg.h │ │ │ │ │ │ └── ozone │ │ │ │ │ │ └── ra6m5.jdebug │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ ├── family.mk │ │ │ │ ├── linker │ │ │ │ │ └── gcc │ │ │ │ │ │ ├── fsp.ld │ │ │ │ │ │ ├── ra4m1.ld │ │ │ │ │ │ ├── ra4m3.ld │ │ │ │ │ │ ├── ra6m1.ld │ │ │ │ │ │ └── ra6m5.ld │ │ │ │ ├── r_ioport_cfg.h │ │ │ │ └── vector_data.h │ │ │ ├── rp2040 │ │ │ │ ├── board.h │ │ │ │ ├── boards │ │ │ │ │ ├── pico_sdk │ │ │ │ │ │ └── board.cmake │ │ │ │ │ └── raspberry_pi_pico │ │ │ │ │ │ └── board.cmake │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ ├── family.mk │ │ │ │ ├── pico_sdk_import.cmake │ │ │ │ └── rp2040-openocd.cfg │ │ │ ├── rx │ │ │ │ ├── boards │ │ │ │ │ ├── gr_citrus │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── gr_citrus.c │ │ │ │ │ │ ├── hwinit.c │ │ │ │ │ │ └── r5f5631fd.ld │ │ │ │ │ └── rx65n_target │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── r5f565ne.ld │ │ │ │ │ │ └── rx65n_target.c │ │ │ │ └── family.mk │ │ │ ├── samd11 │ │ │ │ ├── boards │ │ │ │ │ ├── luna_d11 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── samd11d14am_flash.ld │ │ │ │ │ └── samd11_xplained │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── samd11d14am_flash.ld │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── samd21 │ │ │ │ ├── boards │ │ │ │ │ ├── atsamd21_xpro │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── samd21j18a_flash.ld │ │ │ │ │ ├── circuitplayground_express │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── circuitplayground_express.ld │ │ │ │ │ ├── curiosity_nano │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── samd21g17a_flash.ld │ │ │ │ │ ├── feather_m0_express │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── feather_m0_express.ld │ │ │ │ │ ├── itsybitsy_m0 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── itsybitsy_m0.ld │ │ │ │ │ ├── luna_d21 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── samd21g18a_flash.ld │ │ │ │ │ ├── metro_m0_express │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── metro_m0_express.ld │ │ │ │ │ ├── qtpy │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── qtpy.ld │ │ │ │ │ ├── seeeduino_xiao │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── seeeduino_xiao.ld │ │ │ │ │ └── trinket_m0 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── trinket_m0.ld │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── samd51 │ │ │ │ ├── boards │ │ │ │ │ ├── feather_m4_express │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── feather_m4_express.ld │ │ │ │ │ ├── itsybitsy_m4 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── itsybitsy_m4.ld │ │ │ │ │ ├── metro_m4_express │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── metro_m4_express.ld │ │ │ │ │ ├── pybadge │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── pybadge.ld │ │ │ │ │ └── pyportal │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── pyportal.ld │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── same5x │ │ │ │ ├── boards │ │ │ │ │ ├── d5035_01 │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── d5035_01.c │ │ │ │ │ │ └── same51j19a_flash.ld │ │ │ │ │ └── same54_xplained │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── same54_xplained.c │ │ │ │ │ │ ├── same54p20a_flash.ld │ │ │ │ │ │ └── same54p20a_sram.ld │ │ │ │ └── family.mk │ │ │ ├── same70_qmtech │ │ │ │ ├── board.mk │ │ │ │ ├── hpl_pmc_config.h │ │ │ │ ├── hpl_usart_config.h │ │ │ │ ├── hpl_xdmac_config.h │ │ │ │ ├── peripheral_clk_config.h │ │ │ │ └── same70_qmtech.c │ │ │ ├── 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 │ │ │ ├── saml2x │ │ │ │ ├── boards │ │ │ │ │ ├── atsaml21_xpro │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── saml21j18b_flash.ld │ │ │ │ │ ├── saml22_feather │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── saml22_feather.ld │ │ │ │ │ └── sensorwatch_m0 │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── sensorwatch_m0.ld │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── sltb009a │ │ │ │ ├── board.mk │ │ │ │ └── sltb009a.c │ │ │ ├── spresense │ │ │ │ ├── board.mk │ │ │ │ └── board_spresense.c │ │ │ ├── stm32f0 │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ ├── stm32f070rbnucleo │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32F070rbtx_flash.ld │ │ │ │ │ ├── stm32f072disco │ │ │ │ │ │ ├── STM32F072RBTx_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ └── stm32f072eval │ │ │ │ │ │ ├── STM32F072VBTx_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ ├── family.mk │ │ │ │ └── stm32f0xx_hal_conf.h │ │ │ ├── stm32f1 │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ ├── stm32f103_bluepill │ │ │ │ │ │ ├── STM32F103X8_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32f103x8_flash.icf │ │ │ │ │ └── stm32f103_mini_2 │ │ │ │ │ │ ├── STM32F103XC_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32f103xc_flash.icf │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ ├── family.mk │ │ │ │ └── stm32f1xx_hal_conf.h │ │ │ ├── stm32f2 │ │ │ │ ├── boards │ │ │ │ │ └── stm32f207nucleo │ │ │ │ │ │ ├── STM32F207ZGTx_FLASH.ld │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32f207nucleo.c │ │ │ │ ├── family.mk │ │ │ │ └── stm32f2xx_hal_conf.h │ │ │ ├── stm32f3 │ │ │ │ ├── boards │ │ │ │ │ └── stm32f303disco │ │ │ │ │ │ ├── STM32F303VCTx_FLASH.ld │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── stm32f303disco.c │ │ │ │ │ │ └── stm32f3xx_hal_conf.h │ │ │ │ └── family.mk │ │ │ ├── stm32f4 │ │ │ │ ├── boards │ │ │ │ │ ├── feather_stm32f405 │ │ │ │ │ │ ├── STM32F405RGTx_FLASH.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ │ ├── pyboardv11 │ │ │ │ │ │ ├── STM32F405RGTx_FLASH.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ │ ├── stm32f401blackpill │ │ │ │ │ │ ├── STM32F401VCTx_FLASH.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ │ ├── stm32f407disco │ │ │ │ │ │ ├── STM32F407VGTx_FLASH.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ │ ├── stm32f411blackpill │ │ │ │ │ │ ├── STM32F411CEUx_FLASH.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ │ ├── stm32f411disco │ │ │ │ │ │ ├── STM32F411VETx_FLASH.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ │ ├── stm32f412disco │ │ │ │ │ │ ├── STM32F412ZGTx_FLASH.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ │ ├── stm32f412nucleo │ │ │ │ │ │ ├── STM32F412ZGTx_FLASH.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ │ └── stm32f439nucleo │ │ │ │ │ │ ├── STM32F439ZITX_FLASH.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32f4xx_hal_conf.h │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ ├── stm32f7 │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ ├── stlinkv3mini │ │ │ │ │ │ ├── STM32F723xE_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── stm32f723disco │ │ │ │ │ │ ├── STM32F723xE_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── stm32f746disco │ │ │ │ │ │ ├── STM32F746ZGTx_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── stm32f746nucleo │ │ │ │ │ │ ├── STM32F746ZGTx_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── stm32f767nucleo │ │ │ │ │ │ ├── STM32F767ZITx_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ └── stm32f769disco │ │ │ │ │ │ ├── STM32F769ZITx_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ ├── family.mk │ │ │ │ └── stm32f7xx_hal_conf.h │ │ │ ├── stm32g0 │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ └── stm32g0b1nucleo │ │ │ │ │ │ ├── STM32G0B1RETx_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ ├── family.mk │ │ │ │ └── stm32g0xx_hal_conf.h │ │ │ ├── stm32g4 │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ ├── b_g474e_dpow1 │ │ │ │ │ │ ├── STM32G474RETx_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── cubemx │ │ │ │ │ │ │ └── b_g474e_dpow1.ioc │ │ │ │ │ └── stm32g474nucleo │ │ │ │ │ │ ├── STM32G474RETx_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ ├── family.mk │ │ │ │ └── stm32g4xx_hal_conf.h │ │ │ ├── stm32h7 │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ ├── daisyseed │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── stm32h750ibkx_flash.ld │ │ │ │ │ │ └── stm32h750ibkx_ram.ld │ │ │ │ │ ├── stm32h723nucleo │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── stm32h743eval │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ ├── cubemx │ │ │ │ │ │ │ └── stm32h743eval.ioc │ │ │ │ │ │ └── ozone │ │ │ │ │ │ │ └── stm32h743.jdebug │ │ │ │ │ ├── stm32h743nucleo │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── stm32h745disco │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ └── waveshare_openh743i │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ ├── family.mk │ │ │ │ ├── linker │ │ │ │ │ ├── stm32h723xx_flash.ld │ │ │ │ │ └── stm32h743xx_flash.ld │ │ │ │ └── stm32h7xx_hal_conf.h │ │ │ ├── stm32l0 │ │ │ │ ├── boards │ │ │ │ │ ├── stm32l052dap52 │ │ │ │ │ │ ├── STM32L052K8Ux_FLASH.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ └── stm32l0538disco │ │ │ │ │ │ ├── STM32L053C8Tx_FLASH.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ ├── family.mk │ │ │ │ └── stm32l0xx_hal_conf.h │ │ │ ├── stm32l4 │ │ │ │ ├── FreeRTOSConfig │ │ │ │ │ └── FreeRTOSConfig.h │ │ │ │ ├── boards │ │ │ │ │ ├── stm32l412nucleo │ │ │ │ │ │ ├── STM32L412KBUx_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── stm32l476disco │ │ │ │ │ │ ├── STM32L476VGTx_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ ├── stm32l4p5nucleo │ │ │ │ │ │ ├── STM32L4P5ZGTX_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ │ └── stm32l4r5nucleo │ │ │ │ │ │ ├── STM32L4RXxI_FLASH.ld │ │ │ │ │ │ ├── board.cmake │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ ├── family.cmake │ │ │ │ ├── family.mk │ │ │ │ └── stm32l4xx_hal_conf.h │ │ │ ├── stm32u5 │ │ │ │ ├── boards │ │ │ │ │ └── stm32u575eval │ │ │ │ │ │ ├── STM32U575AIIXQ_FLASH.ld │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ ├── family.mk │ │ │ │ └── stm32u5xx_hal_conf.h │ │ │ ├── stm32wb │ │ │ │ ├── boards │ │ │ │ │ └── stm32wb55nucleo │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── stm32wb55xx_flash_cm4.ld │ │ │ │ ├── family.c │ │ │ │ ├── family.mk │ │ │ │ └── stm32wbxx_hal_conf.h │ │ │ ├── tm4c123 │ │ │ │ ├── boards │ │ │ │ │ └── ek-tm4c123gxl │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── board.mk │ │ │ │ │ │ └── tm4c123.ld │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ │ └── xmc4000 │ │ │ │ ├── boards │ │ │ │ └── xmc4500_relax │ │ │ │ │ ├── board.h │ │ │ │ │ └── board.mk │ │ │ │ ├── family.c │ │ │ │ └── family.mk │ │ └── mcu │ │ │ ├── bridgetek │ │ │ └── ft9xx │ │ │ │ ├── Readme.md │ │ │ │ └── scripts │ │ │ │ ├── crt0.S │ │ │ │ └── ldscript.ld │ │ │ ├── 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 │ │ │ └── sony │ │ │ └── cxd56 │ │ │ ├── mkspk │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── clefia.c │ │ │ ├── clefia.h │ │ │ ├── elf32.h │ │ │ ├── mkspk.c │ │ │ └── mkspk.h │ │ │ └── tools │ │ │ ├── flash_writer.py │ │ │ └── xmodem.py │ │ ├── idf_component.yml │ │ ├── lib │ │ └── networking │ │ │ ├── dhserver.c │ │ │ ├── dhserver.h │ │ │ ├── dnserver.c │ │ │ ├── dnserver.h │ │ │ ├── ndis.h │ │ │ ├── rndis_protocol.h │ │ │ └── rndis_reports.c │ │ ├── pkg.yml │ │ ├── repository.yml │ │ ├── sbom.yml │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── 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 │ │ │ │ └── serial │ │ │ │ │ ├── cp210x.h │ │ │ │ │ └── ftdi_sio.h │ │ │ ├── dfu │ │ │ │ ├── dfu.h │ │ │ │ ├── dfu_device.c │ │ │ │ ├── dfu_device.h │ │ │ │ ├── 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 │ │ │ │ ├── ecm_rndis_device.c │ │ │ │ ├── ncm.h │ │ │ │ ├── ncm_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 │ │ │ └── video │ │ │ │ ├── video.h │ │ │ │ ├── video_device.c │ │ │ │ └── video_device.h │ │ ├── common │ │ │ ├── tusb_common.h │ │ │ ├── tusb_compiler.h │ │ │ ├── tusb_debug.h │ │ │ ├── tusb_fifo.c │ │ │ ├── tusb_fifo.h │ │ │ ├── tusb_mcu.h │ │ │ ├── tusb_private.h │ │ │ ├── tusb_timeout.h │ │ │ ├── tusb_types.h │ │ │ └── tusb_verify.h │ │ ├── device │ │ │ ├── dcd.h │ │ │ ├── usbd.c │ │ │ ├── usbd.h │ │ │ ├── usbd_control.c │ │ │ └── usbd_pvt.h │ │ ├── host │ │ │ ├── hcd.h │ │ │ ├── hub.c │ │ │ ├── hub.h │ │ │ ├── usbh.c │ │ │ ├── usbh.h │ │ │ └── usbh_classdriver.h │ │ ├── osal │ │ │ ├── osal.h │ │ │ ├── osal_freertos.h │ │ │ ├── osal_mynewt.h │ │ │ ├── osal_none.h │ │ │ ├── osal_pico.h │ │ │ ├── osal_rtthread.h │ │ │ └── osal_rtx4.h │ │ ├── portable │ │ │ ├── bridgetek │ │ │ │ └── ft9xx │ │ │ │ │ └── dcd_ft9xx.c │ │ │ ├── chipidea │ │ │ │ ├── ci_fs │ │ │ │ │ ├── ci_fs_kinetis.h │ │ │ │ │ ├── ci_fs_mcx.h │ │ │ │ │ ├── ci_fs_type.h │ │ │ │ │ └── dcd_ci_fs.c │ │ │ │ └── ci_hs │ │ │ │ │ ├── ci_hs_imxrt.h │ │ │ │ │ ├── ci_hs_lpc18_43.h │ │ │ │ │ ├── ci_hs_mcx.h │ │ │ │ │ ├── ci_hs_type.h │ │ │ │ │ ├── dcd_ci_hs.c │ │ │ │ │ └── hcd_ci_hs.c │ │ │ ├── dialog │ │ │ │ └── da146xx │ │ │ │ │ └── dcd_da146xx.c │ │ │ ├── ehci │ │ │ │ ├── ehci.c │ │ │ │ ├── ehci.h │ │ │ │ └── ehci_api.h │ │ │ ├── espressif │ │ │ │ └── esp32sx │ │ │ │ │ └── dcd_esp32sx.c │ │ │ ├── mentor │ │ │ │ └── musb │ │ │ │ │ ├── dcd_musb.c │ │ │ │ │ ├── hcd_musb.c │ │ │ │ │ ├── musb_msp432e.h │ │ │ │ │ ├── musb_tm4c.h │ │ │ │ │ └── musb_type.h │ │ │ ├── microchip │ │ │ │ ├── pic │ │ │ │ │ └── dcd_pic.c │ │ │ │ ├── pic32mz │ │ │ │ │ ├── dcd_pic32mz.c │ │ │ │ │ └── usbhs_registers.h │ │ │ │ ├── samd │ │ │ │ │ └── dcd_samd.c │ │ │ │ ├── samg │ │ │ │ │ └── dcd_samg.c │ │ │ │ └── samx7x │ │ │ │ │ ├── common_usb_regs.h │ │ │ │ │ └── dcd_samx7x.c │ │ │ ├── mindmotion │ │ │ │ └── mm32 │ │ │ │ │ └── dcd_mm32f327x_otg.c │ │ │ ├── nordic │ │ │ │ └── nrf5x │ │ │ │ │ └── dcd_nrf5x.c │ │ │ ├── nuvoton │ │ │ │ ├── nuc120 │ │ │ │ │ └── dcd_nuc120.c │ │ │ │ ├── nuc121 │ │ │ │ │ └── dcd_nuc121.c │ │ │ │ └── nuc505 │ │ │ │ │ └── dcd_nuc505.c │ │ │ ├── nxp │ │ │ │ ├── khci │ │ │ │ │ ├── dcd_khci.c │ │ │ │ │ └── hcd_khci.c │ │ │ │ ├── lpc17_40 │ │ │ │ │ ├── dcd_lpc17_40.c │ │ │ │ │ ├── dcd_lpc17_40.h │ │ │ │ │ └── hcd_lpc17_40.c │ │ │ │ └── lpc_ip3511 │ │ │ │ │ └── dcd_lpc_ip3511.c │ │ │ ├── ohci │ │ │ │ ├── ohci.c │ │ │ │ └── ohci.h │ │ │ ├── raspberrypi │ │ │ │ ├── pio_usb │ │ │ │ │ ├── dcd_pio_usb.c │ │ │ │ │ └── hcd_pio_usb.c │ │ │ │ └── rp2040 │ │ │ │ │ ├── dcd_rp2040.c │ │ │ │ │ ├── hcd_rp2040.c │ │ │ │ │ ├── rp2040_usb.c │ │ │ │ │ └── rp2040_usb.h │ │ │ ├── renesas │ │ │ │ └── rusb2 │ │ │ │ │ ├── dcd_rusb2.c │ │ │ │ │ ├── hcd_rusb2.c │ │ │ │ │ ├── rusb2_ra.h │ │ │ │ │ ├── rusb2_rx.h │ │ │ │ │ └── rusb2_type.h │ │ │ ├── sony │ │ │ │ └── cxd56 │ │ │ │ │ └── dcd_cxd56.c │ │ │ ├── st │ │ │ │ ├── stm32_fsdev │ │ │ │ │ ├── dcd_stm32_fsdev.c │ │ │ │ │ └── dcd_stm32_fsdev_pvt_st.h │ │ │ │ ├── synopsys │ │ │ │ │ ├── dcd_synopsys.c │ │ │ │ │ └── synopsys_common.h │ │ │ │ └── typec │ │ │ │ │ └── typec_stm32.c │ │ │ ├── sunxi │ │ │ │ ├── dcd_sunxi_musb.c │ │ │ │ └── musb_def.h │ │ │ ├── synopsys │ │ │ │ └── dwc2 │ │ │ │ │ ├── dcd_dwc2.c │ │ │ │ │ ├── dwc2_bcm.h │ │ │ │ │ ├── dwc2_efm32.h │ │ │ │ │ ├── dwc2_esp32.h │ │ │ │ │ ├── dwc2_gd32.h │ │ │ │ │ ├── dwc2_stm32.h │ │ │ │ │ ├── dwc2_type.h │ │ │ │ │ ├── dwc2_xmc.h │ │ │ │ │ └── hwcfg_list.md │ │ │ ├── template │ │ │ │ └── dcd_template.c │ │ │ ├── ti │ │ │ │ └── msp430x5xx │ │ │ │ │ └── dcd_msp430x5xx.c │ │ │ ├── valentyusb │ │ │ │ └── eptri │ │ │ │ │ ├── dcd_eptri.c │ │ │ │ │ └── dcd_eptri.h │ │ │ └── wch │ │ │ │ └── ch32v307 │ │ │ │ ├── ch32_usbhs_reg.h │ │ │ │ └── dcd_usbhs.c │ │ ├── tinyusb.mk │ │ ├── tusb.c │ │ ├── tusb.h │ │ ├── tusb_option.h │ │ └── typec │ │ │ ├── pd_types.h │ │ │ ├── tcd.h │ │ │ ├── usbc.c │ │ │ └── usbc.h │ │ ├── test │ │ ├── fuzz │ │ │ ├── dcd_fuzz.cc │ │ │ ├── device │ │ │ │ ├── cdc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cdc_seed_corpus.zip │ │ │ │ │ └── src │ │ │ │ │ │ ├── fuzz.cc │ │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ │ └── usb_descriptors.cc │ │ │ │ ├── msc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── msc_seed_corpus.zip │ │ │ │ │ └── src │ │ │ │ │ │ ├── fuzz.cc │ │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ │ └── usb_descriptors.cc │ │ │ │ └── net │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ ├── arch │ │ │ │ │ └── cc.h │ │ │ │ │ ├── fuzz.cc │ │ │ │ │ ├── lwipopts.h │ │ │ │ │ ├── tusb_config.h │ │ │ │ │ └── usb_descriptors.cc │ │ │ ├── dicts │ │ │ │ └── cdc.dict │ │ │ ├── fuzz.cc │ │ │ ├── fuzz.h │ │ │ ├── fuzz_private.h │ │ │ ├── make.mk │ │ │ ├── msc_fuzz.cc │ │ │ ├── net_fuzz.cc │ │ │ ├── rules.mk │ │ │ └── usbd_fuzz.cc │ │ └── unit-test │ │ │ ├── ceedling │ │ │ ├── project.yml │ │ │ ├── test │ │ │ ├── device │ │ │ │ ├── msc │ │ │ │ │ └── test_msc_device.c │ │ │ │ └── usbd │ │ │ │ │ └── test_usbd.c │ │ │ ├── support │ │ │ │ └── tusb_config.h │ │ │ ├── test_common_func.c │ │ │ └── test_fifo.c │ │ │ └── vendor │ │ │ └── ceedling │ │ │ ├── bin │ │ │ └── ceedling │ │ │ ├── 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 │ │ │ │ └── yaml_wrapper.rb │ │ │ ├── plugins │ │ │ ├── beep │ │ │ │ ├── README.md │ │ │ │ └── lib │ │ │ │ │ └── beep.rb │ │ │ ├── bullseye │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ │ └── template.erb │ │ │ │ ├── bullseye.rake │ │ │ │ ├── config │ │ │ │ │ └── defaults.yml │ │ │ │ └── lib │ │ │ │ │ └── bullseye.rb │ │ │ ├── colour_report │ │ │ │ ├── README.md │ │ │ │ └── lib │ │ │ │ │ └── colour_report.rb │ │ │ ├── command_hooks │ │ │ │ ├── README.md │ │ │ │ └── lib │ │ │ │ │ └── command_hooks.rb │ │ │ ├── compile_commands_json │ │ │ │ ├── README.md │ │ │ │ └── lib │ │ │ │ │ └── compile_commands_json.rb │ │ │ ├── dependencies │ │ │ │ ├── README.md │ │ │ │ ├── config │ │ │ │ │ └── defaults.yml │ │ │ │ ├── dependencies.rake │ │ │ │ └── lib │ │ │ │ │ └── dependencies.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_gcov.rb │ │ │ │ ├── gcov.rake │ │ │ │ └── lib │ │ │ │ │ ├── gcov.rb │ │ │ │ │ ├── gcov_constants.rb │ │ │ │ │ ├── gcovr_reportinator.rb │ │ │ │ │ ├── reportgenerator_reportinator.rb │ │ │ │ │ └── reportinator_helper.rb │ │ │ ├── json_tests_report │ │ │ │ ├── README.md │ │ │ │ └── lib │ │ │ │ │ └── json_tests_report.rb │ │ │ ├── junit_tests_report │ │ │ │ ├── README.md │ │ │ │ └── lib │ │ │ │ │ └── junit_tests_report.rb │ │ │ ├── module_generator │ │ │ │ ├── README.md │ │ │ │ ├── config │ │ │ │ │ └── module_generator.yml │ │ │ │ ├── lib │ │ │ │ │ └── module_generator.rb │ │ │ │ └── module_generator.rake │ │ │ ├── raw_output_report │ │ │ │ ├── README.md │ │ │ │ └── lib │ │ │ │ │ └── raw_output_report.rb │ │ │ ├── stdout_gtestlike_tests_report │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ │ ├── template.erb │ │ │ │ │ └── template.erb copy │ │ │ │ ├── config │ │ │ │ │ └── stdout_gtestlike_tests_report.yml │ │ │ │ └── lib │ │ │ │ │ └── stdout_gtestlike_tests_report.rb │ │ │ ├── stdout_ide_tests_report │ │ │ │ ├── README.md │ │ │ │ ├── config │ │ │ │ │ └── stdout_ide_tests_report.yml │ │ │ │ └── lib │ │ │ │ │ └── stdout_ide_tests_report.rb │ │ │ ├── stdout_pretty_tests_report │ │ │ │ ├── README.md │ │ │ │ ├── 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 │ │ │ │ ├── README.md │ │ │ │ ├── config │ │ │ │ │ └── teamcity_tests_report.yml │ │ │ │ └── lib │ │ │ │ │ └── teamcity_tests_report.rb │ │ │ ├── warnings_report │ │ │ │ ├── README.md │ │ │ │ └── lib │ │ │ │ │ └── warnings_report.rb │ │ │ └── xml_tests_report │ │ │ │ ├── README.md │ │ │ │ └── lib │ │ │ │ └── xml_tests_report.rb │ │ │ └── vendor │ │ │ ├── c_exception │ │ │ └── lib │ │ │ │ ├── CException.c │ │ │ │ ├── CException.h │ │ │ │ └── meson.build │ │ │ ├── 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_ignore_stateless.rb │ │ │ │ ├── cmock_generator_plugin_return_thru_ptr.rb │ │ │ │ ├── cmock_generator_utils.rb │ │ │ │ ├── cmock_header_parser.rb │ │ │ │ ├── cmock_plugin_manager.rb │ │ │ │ └── cmock_unityhelper_parser.rb │ │ │ └── src │ │ │ │ ├── cmock.c │ │ │ │ ├── cmock.h │ │ │ │ ├── cmock_internals.h │ │ │ │ └── meson.build │ │ │ ├── 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 │ │ │ └── src │ │ │ ├── meson.build │ │ │ ├── unity.c │ │ │ ├── unity.h │ │ │ └── unity_internals.h │ │ └── version.yml ├── main │ ├── CMakeLists.txt │ ├── advanced_usb_control.c │ ├── advanced_usb_control.h │ ├── ch32v003_swio.h │ ├── main.c │ ├── pindefs.h │ ├── programmer.c │ ├── trunk.txt │ └── updi_bitbang.h ├── partitions.csv ├── sdkconfig ├── swadgeterm │ ├── Makefile │ └── swadgeterm.c ├── testapp │ ├── Makefile │ ├── hidapi.c │ ├── hidapi.h │ └── testapp.c └── testapp_attiny416 │ ├── Makefile │ ├── attiny416.S │ ├── avr_test.c │ ├── iotn416.h │ └── updioprog.c ├── examples ├── another_adc1_dig_test.c ├── esp32-s2-dig-controller-with-adc-dma.c ├── esp32s2-proalone-overclock.c ├── esp32s2-sandbox-lecd-without-idf.c ├── esp32s2_sandbox_better_adc_dig_test.c ├── minimal_serial_i2s_example_out.c ├── sandbox-with-idf-rmt_using_idf.c └── sandbox_fake_touch_with_rmt_module_no_idf.c ├── hardware ├── exposed_power_rails │ ├── exposed_power_rails.kicad_pcb │ ├── exposed_power_rails.kicad_prl │ ├── exposed_power_rails.kicad_pro │ ├── exposed_power_rails.kicad_sch │ └── exposed_power_rails_rev-.zip └── parts │ ├── ALPS_RKJXK_RKJXV.pretty │ └── ALPS_RKJXK_RKJXV.kicad_mod │ ├── AP0803QD_DualNFet.kicad_sym │ ├── AP4580-FULLBRIDGEFET.bak │ ├── AP4580-FULLBRIDGEFET.kicad_sym │ ├── EPC2014C.kicad_sym │ ├── EPC2014C.pretty │ └── EPC2014C.kicad_mod │ ├── NCP81166.kicad_sym │ ├── RY9320AT6_Buck.kicad_sym │ ├── TVS-USB.kicad_sym │ ├── TouchPadTest.pretty │ └── TouchPadTest.kicad_mod │ ├── WS2816-2121.kicad_mod │ ├── WS2816C-2121.kicad_sym │ ├── alpsjoystick.bak │ ├── alpsjoystick.kicad_sym │ ├── ap4580.pretty │ └── ap4580.kicad_mod │ ├── esp32s2.kicad_sym │ ├── ffc11_270.pretty │ └── ffc11_270.kicad_mod │ ├── localparts.pretty │ └── ESP32S2.kicad_mod │ ├── lsm6ds3.pretty │ └── LSM6DS3.kicad_mod │ ├── ncp81166.pretty │ └── ncp81166.kicad_mod │ ├── pmpack3_dualfet.pretty │ └── pmpack3_dualfet.kicad_mod │ └── xdfn_reg.pretty │ ├── OnSemi_XDFN4-1EP_1.0x1.0mm_EP0.52x0.52mm.kicad_mod │ └── xdfn-reg.kicad_mod ├── idf_sandbox ├── CMakeLists.txt ├── README.md ├── components │ └── tinyusb │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── additions │ │ ├── include │ │ │ ├── tinyusb.h │ │ │ ├── tinyusb_types.h │ │ │ ├── tusb_cdc_acm.h │ │ │ ├── tusb_config.h │ │ │ ├── tusb_console.h │ │ │ ├── tusb_hid_gamepad.h │ │ │ ├── tusb_tasks.h │ │ │ └── vfs_tinyusb.h │ │ ├── include_private │ │ │ ├── cdc.h │ │ │ ├── descriptors_control.h │ │ │ └── usb_descriptors.h │ │ └── src │ │ │ ├── cdc.c │ │ │ ├── descriptors_control.c │ │ │ ├── tinyusb.c │ │ │ ├── tusb_cdc_acm.c │ │ │ ├── tusb_console.c │ │ │ ├── tusb_hid_gamepad.c │ │ │ ├── tusb_tasks.c │ │ │ ├── usb_descriptors.c │ │ │ └── vfs_tinyusb.c │ │ ├── sdkconfig.rename │ │ └── tinyusb │ │ ├── .gitattributes │ │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ ├── config.yml │ │ │ └── feature_request.md │ │ ├── pull_request_template.md │ │ └── workflows │ │ │ ├── build.yml │ │ │ └── trigger.yml │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTORS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── hw │ │ └── bsp │ │ │ ├── esp32s2 │ │ │ ├── boards │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── adafruit_feather_esp32s2 │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ │ ├── adafruit_magtag_29gray │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ │ ├── adafruit_metro_esp32s2 │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ │ ├── esp32s2.c │ │ │ │ ├── espressif_kaluga_1 │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ │ └── espressif_saola_1 │ │ │ │ │ ├── board.cmake │ │ │ │ │ └── board.h │ │ │ ├── family.cmake │ │ │ └── family.mk │ │ │ └── esp32s3 │ │ │ ├── boards │ │ │ ├── CMakeLists.txt │ │ │ ├── esp32s3.c │ │ │ └── espressif_addax_1 │ │ │ │ ├── board.cmake │ │ │ │ └── board.h │ │ │ ├── family.cmake │ │ │ └── family.mk │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── hcd.h │ │ │ ├── hub.c │ │ │ ├── hub.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 │ │ │ └── osal_rtthread.h │ │ ├── portable │ │ │ └── espressif │ │ │ │ └── esp32sx │ │ │ │ └── dcd_esp32sx.c │ │ ├── tusb.c │ │ ├── tusb.h │ │ └── tusb_option.h │ │ ├── tinyusb.Doxyfile │ │ ├── tools │ │ ├── build_board.py │ │ ├── build_esp32sx.py │ │ ├── build_family.py │ │ ├── top.mk │ │ └── usb_drivers │ │ │ └── tinyusb_win_usbser.inf │ │ └── version.yml ├── main │ ├── CMakeLists.txt │ ├── advanced_usb_control.c │ ├── advanced_usb_control.h │ └── sandbox_main.c ├── partitions.csv ├── sdkconfig ├── sdkconfig.old └── tools │ ├── bootload_reboot_stub │ ├── Makefile │ ├── bootload_reboot_stub.bin │ ├── bootload_reboot_stub.c │ └── esp32_s2_stub.ld │ ├── ch32v003_swio_interface_test │ ├── Makefile │ ├── README.md │ ├── ch32v003_swio.h │ ├── sandbox.S │ ├── sandbox.c │ └── testapp │ │ ├── Makefile │ │ └── testapp.c │ ├── common │ ├── buildhelp.c │ ├── sandbox_interactive.c │ ├── sandbox_upload.c │ └── ulp_linker_script.ld │ ├── dedicated_fast_io_demo │ ├── Makefile │ ├── sandbox.S │ └── sandbox.c │ ├── fsm_sandbox │ ├── Makefile │ ├── fsm_program.S │ ├── sandbox.S │ └── sandbox.c │ ├── hidapi.c │ ├── hidapi.h │ ├── hidapi_test │ ├── Makefile │ └── hidapi_test.c │ ├── i2stest │ ├── Makefile │ ├── sandbox.S │ └── sandbox.c │ ├── rbo128128G-610-4wspi │ ├── Makefile │ ├── sandbox.S │ ├── sandbox.c │ └── testapp │ │ ├── Makefile │ │ ├── badappleplay.c │ │ └── testapp.c │ ├── rbo128128G-610-parallel │ ├── Makefile │ ├── sandbox.S │ └── sandbox.c │ ├── reboot_into_bootloader │ ├── Makefile │ └── reboot_swadge_into_bootloader.c │ ├── sandbox_test │ ├── Makefile │ ├── sandbox.S │ ├── sandbox.c │ └── sandboxes │ │ ├── adc_monitor_with_dig.c │ │ ├── really_basic_sandbox.c │ │ └── touchgraph.c │ ├── ulp_sandbox │ ├── Makefile │ ├── sandbox.S │ ├── sandbox.c │ └── ulp_program.c │ └── updi_programmer_test │ ├── Makefile │ ├── THIS_HAS_MOVED_TO_ch32v003programmer │ ├── build │ └── compilecount.txt │ ├── sandbox.S │ ├── sandbox.c │ ├── testapp │ ├── Makefile │ ├── attiny416.S │ ├── avr_test.bin │ ├── avr_test.c │ ├── iotn416.h │ └── testapp.c │ └── updi_bitbang.h ├── rbo128128g-610-4wspi ├── .gitignore ├── CMakeLists.txt ├── README.md ├── components │ └── tinyusb │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── additions │ │ ├── include │ │ │ ├── tinyusb.h │ │ │ ├── tinyusb_types.h │ │ │ ├── tusb_cdc_acm.h │ │ │ ├── tusb_config.h │ │ │ ├── tusb_console.h │ │ │ ├── tusb_hid_gamepad.h │ │ │ ├── tusb_tasks.h │ │ │ └── vfs_tinyusb.h │ │ ├── include_private │ │ │ ├── cdc.h │ │ │ ├── descriptors_control.h │ │ │ └── usb_descriptors.h │ │ └── src │ │ │ ├── cdc.c │ │ │ ├── descriptors_control.c │ │ │ ├── tinyusb.c │ │ │ ├── tusb_cdc_acm.c │ │ │ ├── tusb_console.c │ │ │ ├── tusb_hid_gamepad.c │ │ │ ├── tusb_tasks.c │ │ │ ├── usb_descriptors.c │ │ │ └── vfs_tinyusb.c │ │ ├── sdkconfig.rename │ │ └── tinyusb │ │ ├── .gitattributes │ │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ ├── config.yml │ │ │ └── feature_request.md │ │ ├── pull_request_template.md │ │ └── workflows │ │ │ ├── build.yml │ │ │ └── trigger.yml │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTORS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── docs │ │ ├── boards.md │ │ ├── changelog.md │ │ ├── concurrency.md │ │ ├── getting_started.md │ │ └── porting.md │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── hcd.h │ │ │ ├── hub.c │ │ │ ├── hub.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 │ │ │ └── osal_rtthread.h │ │ ├── portable │ │ │ └── espressif │ │ │ │ └── esp32sx │ │ │ │ └── dcd_esp32sx.c │ │ ├── tusb.c │ │ ├── tusb.h │ │ └── tusb_option.h │ │ ├── tinyusb.Doxyfile │ │ ├── tools │ │ ├── build_board.py │ │ ├── build_esp32sx.py │ │ ├── build_family.py │ │ ├── top.mk │ │ └── usb_drivers │ │ │ └── tinyusb_win_usbser.inf │ │ └── version.yml ├── main │ ├── CMakeLists.txt │ ├── advanced_usb_control.c │ ├── advanced_usb_control.h │ ├── main.c │ └── sandrun.c ├── partitions.csv ├── sdkconfig └── testapp │ ├── Makefile │ ├── badappleplay.c │ ├── hidapi.c │ ├── hidapi.h │ ├── stb_image.h │ ├── test.png │ └── testapp.c ├── run_from_ram_overclock ├── Makefile ├── checksums.c ├── esp32s2-ram.lds ├── main.S ├── main.c └── sdkconfig.h ├── run_from_ram_rgb_led ├── Makefile ├── esp32s2-ram.lds ├── main.S ├── main.c └── sdkconfig.h └── tools ├── Makefile ├── graph_values_over_time.c ├── multi_graph_values_over_time.c ├── per_line_graph.c └── rawdraw_sf.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /ch32v003programmer/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build 3 | -------------------------------------------------------------------------------- /ch32v003programmer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/CMakeLists.txt -------------------------------------------------------------------------------- /ch32v003programmer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/README.md -------------------------------------------------------------------------------- /ch32v003programmer/build/bootloader/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/build/bootloader/bootloader.bin -------------------------------------------------------------------------------- /ch32v003programmer/build/partition_table/partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/build/partition_table/partition-table.bin -------------------------------------------------------------------------------- /ch32v003programmer/build/usb_sandbox.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/build/usb_sandbox.bin -------------------------------------------------------------------------------- /ch32v003programmer/build/usb_sandbox.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/build/usb_sandbox.elf -------------------------------------------------------------------------------- /ch32v003programmer/build/usb_sandbox.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/build/usb_sandbox.map -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/.component_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/.component_hash -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/CHANGELOG.md -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/CMakeLists.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/Kconfig -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/LICENSE -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/README.md -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/cdc.c -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/descriptors_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/descriptors_control.c -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/idf_component.yml -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/include/tinyusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/include/tinyusb.h -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/include/tinyusb_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/include/tinyusb_net.h -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/include/tinyusb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/include/tinyusb_types.h -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/include/tusb_cdc_acm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/include/tusb_cdc_acm.h -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/include/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/include/tusb_config.h -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/include/tusb_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/include/tusb_console.h -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/include/tusb_msc_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/include/tusb_msc_storage.h -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/include/tusb_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/include/tusb_tasks.h -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/include/vfs_tinyusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/include/vfs_tinyusb.h -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/include_private/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/include_private/cdc.h -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/sbom.yml -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/test/local/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/test/local/CMakeLists.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/test/local/libusb_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/test/local/libusb_test.c -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/test_apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/test_apps/README.md -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/tinyusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/tinyusb.c -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/tinyusb_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/tinyusb_net.c -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/tusb_cdc_acm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/tusb_cdc_acm.c -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/tusb_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/tusb_console.c -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/tusb_msc_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/tusb_msc_storage.c -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/tusb_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/tusb_tasks.c -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/usb_descriptors.c -------------------------------------------------------------------------------- /ch32v003programmer/components/esp_tinyusb/vfs_tinyusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/esp_tinyusb/vfs_tinyusb.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/.codespell/exclude-file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/.codespell/ignore-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/.codespell/ignore-words.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/.codespellrc -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/.component_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/.component_hash -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/.gitattributes -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/.gitignore -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/.pre-commit-config.yaml -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/.readthedocs.yaml -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/CMakeLists.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/CONTRIBUTORS.rst -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/LICENSE -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/README.md -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/README.rst -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/CMakeLists.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/99-tinyusb.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/device/99-tinyusb.rules -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/device/CMakeLists.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/cdc_msc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/device/cdc_msc/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/cdc_msc/skip.txt: -------------------------------------------------------------------------------- 1 | mcu:SAMD11 2 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/cdc_msc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/device/cdc_msc/src/main.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/dfu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/device/dfu/CMakeLists.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/dfu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/device/dfu/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/dfu/skip.txt: -------------------------------------------------------------------------------- 1 | mcu:TM4C123 2 | mcu:BCM2835 3 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/dfu/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/device/dfu/src/main.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/dynamic_configuration/skip.txt: -------------------------------------------------------------------------------- 1 | mcu:SAMD11 2 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/midi_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/device/midi_test/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/msc_dual_lun/skip.txt: -------------------------------------------------------------------------------- 1 | mcu:SAMD11 2 | mcu:MKL25ZXX 3 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/usbtmc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/device/usbtmc/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/usbtmc/skip.txt: -------------------------------------------------------------------------------- 1 | mcu:BCM2835 2 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/usbtmc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/device/usbtmc/src/main.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/device/usbtmc/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/device/usbtmc/src/main.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/dual/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/dual/CMakeLists.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/host/CMakeLists.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/host/bare_api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/host/bare_api/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/host/bare_api/only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/host/bare_api/only.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/host/bare_api/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/host/bare_api/src/main.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/host/cdc_msc_hid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/host/cdc_msc_hid/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/host/cdc_msc_hid/only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/host/cdc_msc_hid/only.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/make.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/rules.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/typec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/examples/typec/CMakeLists.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/examples/typec/power_delivery/only.txt: -------------------------------------------------------------------------------- 1 | mcu:STM32G4 2 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ansi_escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ansi_escape.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/board.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/board.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/board_mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/board_mcu.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/broadcom_32bit/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/broadcom_32bit/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/broadcom_32bit/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/broadcom_32bit/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/broadcom_64bit/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/broadcom_64bit/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/broadcom_64bit/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/broadcom_64bit/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/brtmm90x/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/brtmm90x/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/brtmm90x/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/brtmm90x/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/boards/ch32v307v-r1-1v0/board.mk: -------------------------------------------------------------------------------- 1 | LD_FILE = $(FAMILY_PATH)/ch32v307.ld 2 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/ch32v307.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/ch32v307.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/ch32v30x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/ch32v30x_conf.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/ch32v30x_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/ch32v30x_it.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/ch32v30x_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/ch32v30x_it.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/core_riscv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/core_riscv.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/system_ch32v30x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/system_ch32v30x.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/system_ch32v30x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/system_ch32v30x.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/wch-riscv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ch32v307/wch-riscv.cfg -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/da14695_dk_usb/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/da14695_dk_usb/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/da14695_dk_usb/da1469x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/da14695_dk_usb/da1469x.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/da1469x_dk_pro/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/da1469x_dk_pro/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/da1469x_dk_pro/da1469x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/da1469x_dk_pro/da1469x.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ea4088qs/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ea4088qs/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ea4088qs/ea4088qs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ea4088qs/ea4088qs.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ea4088qs/lpc4088.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ea4088qs/lpc4088.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ea4357/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ea4357/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ea4357/ea4357.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ea4357/ea4357.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ea4357/lpc4357.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ea4357/lpc4357.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ea4357/pca9532.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ea4357/pca9532.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ea4357/pca9532.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ea4357/pca9532.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/espressif/boards/adafruit_feather_esp32s2/board.cmake: -------------------------------------------------------------------------------- 1 | # Apply board specific content here 2 | set(IDF_TARGET "esp32s2") 3 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/espressif/boards/adafruit_magtag_29gray/board.cmake: -------------------------------------------------------------------------------- 1 | # Apply board specific content here 2 | set(IDF_TARGET "esp32s2") 3 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/espressif/boards/adafruit_metro_esp32s2/board.cmake: -------------------------------------------------------------------------------- 1 | # Apply board specific content here 2 | set(IDF_TARGET "esp32s2") 3 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/espressif/boards/espressif_addax_1/board.cmake: -------------------------------------------------------------------------------- 1 | # Apply board specific content here 2 | set(IDF_TARGET "esp32s3") 3 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/espressif/boards/espressif_kaluga_1/board.cmake: -------------------------------------------------------------------------------- 1 | # Apply board specific content here 2 | set(IDF_TARGET "esp32s2") 3 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/espressif/boards/espressif_s3_devkitc/board.cmake: -------------------------------------------------------------------------------- 1 | # Apply board specific content here 2 | set(IDF_TARGET "esp32s3") 3 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/espressif/boards/espressif_s3_devkitm/board.cmake: -------------------------------------------------------------------------------- 1 | # Apply board specific content here 2 | set(IDF_TARGET "esp32s3") 3 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/espressif/boards/espressif_saola_1/board.cmake: -------------------------------------------------------------------------------- 1 | # Apply board specific content here 2 | set(IDF_TARGET "esp32s2") 3 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/espressif/boards/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/espressif/boards/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/espressif/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/espressif/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/espressif/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/espressif/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/f1c100s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/f1c100s/README.md -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/f1c100s/board.h: -------------------------------------------------------------------------------- 1 | // Nothing valuable here 2 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/f1c100s/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/f1c100s/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/f1c100s/f1c100s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/f1c100s/f1c100s.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/family_support.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/family_support.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/fomu/boards/fomu/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/fomu/boards/fomu/board.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/fomu/boards/fomu/board.mk: -------------------------------------------------------------------------------- 1 | # place holder 2 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/fomu/crt0-vexriscv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/fomu/crt0-vexriscv.S -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/fomu/dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/fomu/dfu.py -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/fomu/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/fomu/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/fomu/fomu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/fomu/fomu.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/fomu/fomu.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/fomu/fomu.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/fomu/include/csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/fomu/include/csr.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/fomu/include/hw/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/fomu/include/hw/common.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/fomu/include/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/fomu/include/irq.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/fomu/output_format.ld: -------------------------------------------------------------------------------- 1 | OUTPUT_FORMAT("elf32-littleriscv") 2 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/fomu/regions.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/fomu/regions.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/gd32vf103/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/gd32vf103/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/gd32vf103/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/gd32vf103/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/imxrt/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/imxrt/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/imxrt/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/imxrt/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/imxrt/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/imxrt/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/kinetis_k32l2/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/kinetis_k32l2/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/kinetis_kl/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/kinetis_kl/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/kinetis_kl/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/kinetis_kl/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/kinetis_kl/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/kinetis_kl/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc11/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc11/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc13/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc13/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc15/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc15/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc15/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc15/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc17/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc17/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc18/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc18/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc18/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc18/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc18/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc18/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc51/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc51/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc54/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc54/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc54/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc54/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc55/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc55/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc55/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc55/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/lpc55/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/lpc55/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/mcx/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/mcx/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/mcx/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/mcx/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/mcx/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/mcx/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/mcx/mcx.jlinkscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/mcx/mcx.jlinkscript -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/mm32/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/mm32/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/msp430/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/msp430/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/msp430/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/msp430/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/msp432e4/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/msp432e4/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/msp432e4/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/msp432e4/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ngx4330/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ngx4330/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ngx4330/ngx4330.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ngx4330/ngx4330.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ngx4330/ngx4330.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ngx4330/ngx4330.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nrf/boards/pca10056/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nrf/boards/pca10056/board.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nrf/boards/pca10059/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nrf/boards/pca10059/board.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nrf/boards/pca10095/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nrf/boards/pca10095/board.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nrf/boards/pca10100/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nrf/boards/pca10100/board.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nrf/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nrf/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nrf/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nrf/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nrf/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nrf/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nrf/nrfx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nrf/nrfx_config.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nrf/nrfx_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nrf/nrfx_glue.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nrf/nrfx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nrf/nrfx_log.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nutiny_nuc121s/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nutiny_nuc121s/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nutiny_nuc125s/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nutiny_nuc125s/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nutiny_nuc126v/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nutiny_nuc126v/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nutiny_sdk_nuc120/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nutiny_sdk_nuc120/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/nutiny_sdk_nuc505/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/nutiny_sdk_nuc505/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/pic32mz/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/pic32mz/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/pic32mz/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/pic32mz/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra4m1_ek/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra4m1_ek/board.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra4m1_ek/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra4m1_ek/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra4m3_ek/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra4m3_ek/board.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra4m3_ek/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra4m3_ek/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra6m1_ek/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra6m1_ek/board.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra6m1_ek/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra6m1_ek/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra6m5_ek/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra6m5_ek/board.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra6m5_ek/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/boards/ra6m5_ek/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/linker/gcc/fsp.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/linker/gcc/fsp.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/linker/gcc/ra4m1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/linker/gcc/ra4m1.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/linker/gcc/ra4m3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/linker/gcc/ra4m3.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/linker/gcc/ra6m1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/linker/gcc/ra6m1.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/linker/gcc/ra6m5.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/linker/gcc/ra6m5.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/r_ioport_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/r_ioport_cfg.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/ra/vector_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/ra/vector_data.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/rp2040/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/rp2040/board.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/rp2040/boards/raspberry_pi_pico/board.cmake: -------------------------------------------------------------------------------- 1 | set(PICO_BOARD pico) 2 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/rp2040/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/rp2040/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/rp2040/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/rp2040/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/rp2040/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/rp2040/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/rp2040/rp2040-openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/rp2040/rp2040-openocd.cfg -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/rx/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/rx/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/samd11/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/samd11/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/samd11/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/samd11/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/samd21/boards/qtpy/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/samd21/boards/qtpy/board.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/samd21/boards/qtpy/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/samd21/boards/qtpy/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/samd21/boards/qtpy/qtpy.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/samd21/boards/qtpy/qtpy.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/samd21/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/samd21/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/samd21/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/samd21/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/samd51/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/samd51/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/samd51/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/samd51/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/same5x/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/same5x/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/same70_qmtech/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/same70_qmtech/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/same70_xplained/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/same70_xplained/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/samg55xplained/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/samg55xplained/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/saml2x/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/saml2x/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/saml2x/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/saml2x/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/sltb009a/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/sltb009a/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/sltb009a/sltb009a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/sltb009a/sltb009a.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/spresense/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/spresense/board.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/spresense/board_spresense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/spresense/board_spresense.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f0/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f0/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f0/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f0/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f0/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f0/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f1/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f1/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f1/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f1/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f1/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f1/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f2/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f2/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f3/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f3/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f4/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f4/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f4/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f4/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f7/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f7/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f7/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f7/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32f7/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32f7/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32g0/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32g0/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32g0/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32g0/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32g0/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32g0/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32g4/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32g4/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32g4/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32g4/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32g4/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32g4/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32h7/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32h7/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32h7/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32h7/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32h7/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32h7/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32l0/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32l0/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32l0/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32l0/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32l4/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32l4/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32l4/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32l4/family.cmake -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32l4/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32l4/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32u5/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32u5/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32u5/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32u5/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32wb/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32wb/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/stm32wb/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/stm32wb/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/tm4c123/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/tm4c123/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/tm4c123/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/tm4c123/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/xmc4000/family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/xmc4000/family.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/bsp/xmc4000/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/bsp/xmc4000/family.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/mcu/bridgetek/ft9xx/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/mcu/bridgetek/ft9xx/Readme.md -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/mcu/dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/mcu/dialog/README.md -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/mcu/dialog/da1469x/da1469x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/mcu/dialog/da1469x/da1469x.ld -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/.gitignore -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/clefia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/clefia.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/clefia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/clefia.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/elf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/elf32.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/mkspk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/mkspk.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/mkspk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/mkspk/mkspk.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/tools/xmodem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/hw/mcu/sony/cxd56/tools/xmodem.py -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/idf_component.yml -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/lib/networking/dhserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/lib/networking/dhserver.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/lib/networking/dhserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/lib/networking/dhserver.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/lib/networking/dnserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/lib/networking/dnserver.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/lib/networking/dnserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/lib/networking/dnserver.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/lib/networking/ndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/lib/networking/ndis.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/lib/networking/rndis_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/lib/networking/rndis_protocol.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/lib/networking/rndis_reports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/lib/networking/rndis_reports.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/pkg.yml -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/repository.yml -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/sbom.yml -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/CMakeLists.txt -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/audio/audio.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/audio/audio_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/audio/audio_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/audio/audio_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/audio/audio_device.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/bth/bth_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/bth/bth_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/bth/bth_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/bth/bth_device.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/cdc/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/cdc/cdc.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/cdc/cdc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/cdc/cdc_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/cdc/cdc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/cdc/cdc_device.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/cdc/cdc_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/cdc/cdc_host.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/cdc/cdc_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/cdc/cdc_host.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/cdc/cdc_rndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/cdc/cdc_rndis.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/cdc/cdc_rndis_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/cdc/cdc_rndis_host.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/cdc/cdc_rndis_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/cdc/cdc_rndis_host.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/cdc/serial/cp210x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/cdc/serial/cp210x.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/cdc/serial/ftdi_sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/cdc/serial/ftdi_sio.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/dfu/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/dfu/dfu.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/dfu/dfu_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/dfu/dfu_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/dfu/dfu_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/dfu/dfu_device.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/dfu/dfu_rt_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/dfu/dfu_rt_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/dfu/dfu_rt_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/dfu/dfu_rt_device.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/hid/hid.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/hid/hid_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/hid/hid_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/hid/hid_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/hid/hid_device.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/hid/hid_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/hid/hid_host.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/hid/hid_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/hid/hid_host.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/midi/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/midi/midi.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/midi/midi_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/midi/midi_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/midi/midi_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/midi/midi_device.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/msc/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/msc/msc.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/msc/msc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/msc/msc_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/msc/msc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/msc/msc_device.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/msc/msc_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/msc/msc_host.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/msc/msc_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/msc/msc_host.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/net/ecm_rndis_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/net/ecm_rndis_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/net/ncm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/net/ncm.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/net/ncm_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/net/ncm_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/net/net_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/net/net_device.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/usbtmc/usbtmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/usbtmc/usbtmc.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/usbtmc/usbtmc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/usbtmc/usbtmc_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/usbtmc/usbtmc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/usbtmc/usbtmc_device.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/vendor/vendor_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/vendor/vendor_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/vendor/vendor_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/vendor/vendor_device.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/vendor/vendor_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/vendor/vendor_host.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/vendor/vendor_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/vendor/vendor_host.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/video/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/video/video.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/video/video_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/video/video_device.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/class/video/video_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/class/video/video_device.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/common/tusb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/common/tusb_common.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/common/tusb_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/common/tusb_compiler.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/common/tusb_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/common/tusb_debug.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/common/tusb_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/common/tusb_fifo.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/common/tusb_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/common/tusb_fifo.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/common/tusb_mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/common/tusb_mcu.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/common/tusb_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/common/tusb_private.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/common/tusb_timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/common/tusb_timeout.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/common/tusb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/common/tusb_types.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/common/tusb_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/common/tusb_verify.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/device/dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/device/dcd.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/device/usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/device/usbd.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/device/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/device/usbd.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/device/usbd_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/device/usbd_control.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/device/usbd_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/device/usbd_pvt.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/host/hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/host/hcd.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/host/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/host/hub.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/host/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/host/hub.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/host/usbh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/host/usbh.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/host/usbh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/host/usbh.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/host/usbh_classdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/host/usbh_classdriver.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/osal/osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/osal/osal.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/osal/osal_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/osal/osal_freertos.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/osal/osal_mynewt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/osal/osal_mynewt.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/osal/osal_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/osal/osal_none.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/osal/osal_pico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/osal/osal_pico.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/osal/osal_rtthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/osal/osal_rtthread.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/osal/osal_rtx4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/osal/osal_rtx4.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/portable/ehci/ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/portable/ehci/ehci.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/portable/ehci/ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/portable/ehci/ehci.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/portable/ehci/ehci_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/portable/ehci/ehci_api.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/portable/nxp/khci/dcd_khci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/portable/nxp/khci/dcd_khci.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/portable/nxp/khci/hcd_khci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/portable/nxp/khci/hcd_khci.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/portable/ohci/ohci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/portable/ohci/ohci.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/portable/ohci/ohci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/portable/ohci/ohci.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/portable/sunxi/musb_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/portable/sunxi/musb_def.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/tinyusb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/tinyusb.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/tusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/tusb.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/tusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/tusb.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/tusb_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/tusb_option.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/typec/pd_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/typec/pd_types.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/typec/tcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/typec/tcd.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/typec/usbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/typec/usbc.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/src/typec/usbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/src/typec/usbc.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/dcd_fuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/dcd_fuzz.cc -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/device/cdc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/device/cdc/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/device/cdc/src/fuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/device/cdc/src/fuzz.cc -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/device/msc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/device/msc/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/device/msc/src/fuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/device/msc/src/fuzz.cc -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/device/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/device/net/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/device/net/src/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/device/net/src/arch/cc.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/device/net/src/fuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/device/net/src/fuzz.cc -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/dicts/cdc.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/dicts/cdc.dict -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/fuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/fuzz.cc -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/fuzz.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/fuzz_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/fuzz_private.h -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/make.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/msc_fuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/msc_fuzz.cc -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/net_fuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/net_fuzz.cc -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/rules.mk -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/fuzz/usbd_fuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/fuzz/usbd_fuzz.cc -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/unit-test/ceedling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/unit-test/ceedling -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/unit-test/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/unit-test/project.yml -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/unit-test/test/test_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/test/unit-test/test/test_fifo.c -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/unit-test/vendor/ceedling/plugins/fake_function_framework/examples/fff_example/src/bar.c: -------------------------------------------------------------------------------- 1 | #include "bar.h" 2 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/test/unit-test/vendor/ceedling/plugins/fake_function_framework/examples/fff_example/src/subfolder/zzz.c: -------------------------------------------------------------------------------- 1 | #include "zzz.h" 2 | -------------------------------------------------------------------------------- /ch32v003programmer/components/tinyusb/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/components/tinyusb/version.yml -------------------------------------------------------------------------------- /ch32v003programmer/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/main/CMakeLists.txt -------------------------------------------------------------------------------- /ch32v003programmer/main/advanced_usb_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/main/advanced_usb_control.c -------------------------------------------------------------------------------- /ch32v003programmer/main/advanced_usb_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/main/advanced_usb_control.h -------------------------------------------------------------------------------- /ch32v003programmer/main/ch32v003_swio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/main/ch32v003_swio.h -------------------------------------------------------------------------------- /ch32v003programmer/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/main/main.c -------------------------------------------------------------------------------- /ch32v003programmer/main/pindefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/main/pindefs.h -------------------------------------------------------------------------------- /ch32v003programmer/main/programmer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/main/programmer.c -------------------------------------------------------------------------------- /ch32v003programmer/main/trunk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/main/trunk.txt -------------------------------------------------------------------------------- /ch32v003programmer/main/updi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/main/updi_bitbang.h -------------------------------------------------------------------------------- /ch32v003programmer/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/partitions.csv -------------------------------------------------------------------------------- /ch32v003programmer/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/sdkconfig -------------------------------------------------------------------------------- /ch32v003programmer/swadgeterm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/swadgeterm/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/swadgeterm/swadgeterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/swadgeterm/swadgeterm.c -------------------------------------------------------------------------------- /ch32v003programmer/testapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/testapp/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/testapp/hidapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/testapp/hidapi.c -------------------------------------------------------------------------------- /ch32v003programmer/testapp/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/testapp/hidapi.h -------------------------------------------------------------------------------- /ch32v003programmer/testapp/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/testapp/testapp.c -------------------------------------------------------------------------------- /ch32v003programmer/testapp_attiny416/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/testapp_attiny416/Makefile -------------------------------------------------------------------------------- /ch32v003programmer/testapp_attiny416/attiny416.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/testapp_attiny416/attiny416.S -------------------------------------------------------------------------------- /ch32v003programmer/testapp_attiny416/avr_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/testapp_attiny416/avr_test.c -------------------------------------------------------------------------------- /ch32v003programmer/testapp_attiny416/iotn416.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/testapp_attiny416/iotn416.h -------------------------------------------------------------------------------- /ch32v003programmer/testapp_attiny416/updioprog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/ch32v003programmer/testapp_attiny416/updioprog.c -------------------------------------------------------------------------------- /examples/another_adc1_dig_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/examples/another_adc1_dig_test.c -------------------------------------------------------------------------------- /examples/esp32-s2-dig-controller-with-adc-dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/examples/esp32-s2-dig-controller-with-adc-dma.c -------------------------------------------------------------------------------- /examples/esp32s2-proalone-overclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/examples/esp32s2-proalone-overclock.c -------------------------------------------------------------------------------- /examples/esp32s2-sandbox-lecd-without-idf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/examples/esp32s2-sandbox-lecd-without-idf.c -------------------------------------------------------------------------------- /examples/esp32s2_sandbox_better_adc_dig_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/examples/esp32s2_sandbox_better_adc_dig_test.c -------------------------------------------------------------------------------- /examples/minimal_serial_i2s_example_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/examples/minimal_serial_i2s_example_out.c -------------------------------------------------------------------------------- /examples/sandbox-with-idf-rmt_using_idf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/examples/sandbox-with-idf-rmt_using_idf.c -------------------------------------------------------------------------------- /examples/sandbox_fake_touch_with_rmt_module_no_idf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/examples/sandbox_fake_touch_with_rmt_module_no_idf.c -------------------------------------------------------------------------------- /hardware/exposed_power_rails/exposed_power_rails.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/exposed_power_rails/exposed_power_rails.kicad_pcb -------------------------------------------------------------------------------- /hardware/exposed_power_rails/exposed_power_rails.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/exposed_power_rails/exposed_power_rails.kicad_prl -------------------------------------------------------------------------------- /hardware/exposed_power_rails/exposed_power_rails.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/exposed_power_rails/exposed_power_rails.kicad_pro -------------------------------------------------------------------------------- /hardware/exposed_power_rails/exposed_power_rails.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/exposed_power_rails/exposed_power_rails.kicad_sch -------------------------------------------------------------------------------- /hardware/exposed_power_rails/exposed_power_rails_rev-.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/exposed_power_rails/exposed_power_rails_rev-.zip -------------------------------------------------------------------------------- /hardware/parts/ALPS_RKJXK_RKJXV.pretty/ALPS_RKJXK_RKJXV.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/ALPS_RKJXK_RKJXV.pretty/ALPS_RKJXK_RKJXV.kicad_mod -------------------------------------------------------------------------------- /hardware/parts/AP0803QD_DualNFet.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/AP0803QD_DualNFet.kicad_sym -------------------------------------------------------------------------------- /hardware/parts/AP4580-FULLBRIDGEFET.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/AP4580-FULLBRIDGEFET.bak -------------------------------------------------------------------------------- /hardware/parts/AP4580-FULLBRIDGEFET.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/AP4580-FULLBRIDGEFET.kicad_sym -------------------------------------------------------------------------------- /hardware/parts/EPC2014C.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/EPC2014C.kicad_sym -------------------------------------------------------------------------------- /hardware/parts/EPC2014C.pretty/EPC2014C.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/EPC2014C.pretty/EPC2014C.kicad_mod -------------------------------------------------------------------------------- /hardware/parts/NCP81166.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/NCP81166.kicad_sym -------------------------------------------------------------------------------- /hardware/parts/RY9320AT6_Buck.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/RY9320AT6_Buck.kicad_sym -------------------------------------------------------------------------------- /hardware/parts/TVS-USB.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/TVS-USB.kicad_sym -------------------------------------------------------------------------------- /hardware/parts/TouchPadTest.pretty/TouchPadTest.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/TouchPadTest.pretty/TouchPadTest.kicad_mod -------------------------------------------------------------------------------- /hardware/parts/WS2816-2121.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/WS2816-2121.kicad_mod -------------------------------------------------------------------------------- /hardware/parts/WS2816C-2121.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/WS2816C-2121.kicad_sym -------------------------------------------------------------------------------- /hardware/parts/alpsjoystick.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/alpsjoystick.bak -------------------------------------------------------------------------------- /hardware/parts/alpsjoystick.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/alpsjoystick.kicad_sym -------------------------------------------------------------------------------- /hardware/parts/ap4580.pretty/ap4580.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/ap4580.pretty/ap4580.kicad_mod -------------------------------------------------------------------------------- /hardware/parts/esp32s2.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/esp32s2.kicad_sym -------------------------------------------------------------------------------- /hardware/parts/ffc11_270.pretty/ffc11_270.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/ffc11_270.pretty/ffc11_270.kicad_mod -------------------------------------------------------------------------------- /hardware/parts/localparts.pretty/ESP32S2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/localparts.pretty/ESP32S2.kicad_mod -------------------------------------------------------------------------------- /hardware/parts/lsm6ds3.pretty/LSM6DS3.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/lsm6ds3.pretty/LSM6DS3.kicad_mod -------------------------------------------------------------------------------- /hardware/parts/ncp81166.pretty/ncp81166.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/ncp81166.pretty/ncp81166.kicad_mod -------------------------------------------------------------------------------- /hardware/parts/pmpack3_dualfet.pretty/pmpack3_dualfet.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/pmpack3_dualfet.pretty/pmpack3_dualfet.kicad_mod -------------------------------------------------------------------------------- /hardware/parts/xdfn_reg.pretty/xdfn-reg.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/hardware/parts/xdfn_reg.pretty/xdfn-reg.kicad_mod -------------------------------------------------------------------------------- /idf_sandbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/CMakeLists.txt -------------------------------------------------------------------------------- /idf_sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/README.md -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/CMakeLists.txt -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/Kconfig -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/include/tinyusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/include/tinyusb.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/include/tinyusb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/include/tinyusb_types.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/include/tusb_cdc_acm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/include/tusb_cdc_acm.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/include/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/include/tusb_config.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/include/tusb_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/include/tusb_console.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/include/tusb_hid_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/include/tusb_hid_gamepad.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/include/tusb_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/include/tusb_tasks.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/include/vfs_tinyusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/include/vfs_tinyusb.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/include_private/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/include_private/cdc.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/src/cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/src/cdc.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/src/descriptors_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/src/descriptors_control.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/src/tinyusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/src/tinyusb.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/src/tusb_cdc_acm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/src/tusb_cdc_acm.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/src/tusb_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/src/tusb_console.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/src/tusb_hid_gamepad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/src/tusb_hid_gamepad.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/src/tusb_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/src/tusb_tasks.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/src/usb_descriptors.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/additions/src/vfs_tinyusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/additions/src/vfs_tinyusb.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/sdkconfig.rename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/sdkconfig.rename -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/.gitattributes -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/.github/workflows/build.yml -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/.github/workflows/trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/.github/workflows/trigger.yml -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/.gitignore -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/CONTRIBUTORS.md -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/LICENSE -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/README.md -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/hw/bsp/esp32s2/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/hw/bsp/esp32s2/family.cmake -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/hw/bsp/esp32s2/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/hw/bsp/esp32s2/family.mk -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/hw/bsp/esp32s3/family.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/hw/bsp/esp32s3/family.cmake -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/hw/bsp/esp32s3/family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/hw/bsp/esp32s3/family.mk -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/pkg.yml -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/repository.yml -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/audio/audio.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/audio/audio_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/audio/audio_device.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/audio/audio_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/audio/audio_device.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/bth/bth_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/bth/bth_device.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/bth/bth_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/bth/bth_device.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_device.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_device.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_host.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_host.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_rndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_rndis.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_rndis_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_rndis_host.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_rndis_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/cdc/cdc_rndis_host.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/dfu/dfu_rt_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/dfu/dfu_rt_device.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/dfu/dfu_rt_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/dfu/dfu_rt_device.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/hid/hid.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/hid/hid_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/hid/hid_device.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/hid/hid_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/hid/hid_device.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/hid/hid_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/hid/hid_host.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/hid/hid_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/hid/hid_host.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/midi/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/midi/midi.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/midi/midi_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/midi/midi_device.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/midi/midi_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/midi/midi_device.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/msc/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/msc/msc.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/msc/msc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/msc/msc_device.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/msc/msc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/msc/msc_device.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/msc/msc_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/msc/msc_host.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/msc/msc_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/msc/msc_host.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/net/net_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/net/net_device.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/net/net_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/net/net_device.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/usbtmc/usbtmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/usbtmc/usbtmc.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/vendor/vendor_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/vendor/vendor_host.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/class/vendor/vendor_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/class/vendor/vendor_host.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_common.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_compiler.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_error.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_fifo.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_fifo.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_timeout.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_types.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/common/tusb_verify.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/device/dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/device/dcd.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/device/usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/device/usbd.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/device/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/device/usbd.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/device/usbd_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/device/usbd_control.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/device/usbd_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/device/usbd_pvt.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/host/hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/host/hcd.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/host/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/host/hub.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/host/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/host/hub.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/host/usbh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/host/usbh.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/host/usbh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/host/usbh.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/host/usbh_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/host/usbh_control.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/host/usbh_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/host/usbh_hcd.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/osal/osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/osal/osal.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/osal/osal_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/osal/osal_freertos.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/osal/osal_mynewt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/osal/osal_mynewt.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/osal/osal_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/osal/osal_none.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/osal/osal_pico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/osal/osal_pico.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/osal/osal_rtthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/osal/osal_rtthread.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/tusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/tusb.c -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/tusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/tusb.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/src/tusb_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/src/tusb_option.h -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/tinyusb.Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/tinyusb.Doxyfile -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/tools/build_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/tools/build_board.py -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/tools/build_esp32sx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/tools/build_esp32sx.py -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/tools/build_family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/tools/build_family.py -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/tools/top.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/tools/top.mk -------------------------------------------------------------------------------- /idf_sandbox/components/tinyusb/tinyusb/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/components/tinyusb/tinyusb/version.yml -------------------------------------------------------------------------------- /idf_sandbox/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/main/CMakeLists.txt -------------------------------------------------------------------------------- /idf_sandbox/main/advanced_usb_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/main/advanced_usb_control.c -------------------------------------------------------------------------------- /idf_sandbox/main/advanced_usb_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/main/advanced_usb_control.h -------------------------------------------------------------------------------- /idf_sandbox/main/sandbox_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/main/sandbox_main.c -------------------------------------------------------------------------------- /idf_sandbox/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/partitions.csv -------------------------------------------------------------------------------- /idf_sandbox/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/sdkconfig -------------------------------------------------------------------------------- /idf_sandbox/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/sdkconfig.old -------------------------------------------------------------------------------- /idf_sandbox/tools/bootload_reboot_stub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/bootload_reboot_stub/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/bootload_reboot_stub/bootload_reboot_stub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/bootload_reboot_stub/bootload_reboot_stub.bin -------------------------------------------------------------------------------- /idf_sandbox/tools/bootload_reboot_stub/bootload_reboot_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/bootload_reboot_stub/bootload_reboot_stub.c -------------------------------------------------------------------------------- /idf_sandbox/tools/bootload_reboot_stub/esp32_s2_stub.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/bootload_reboot_stub/esp32_s2_stub.ld -------------------------------------------------------------------------------- /idf_sandbox/tools/ch32v003_swio_interface_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/ch32v003_swio_interface_test/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/ch32v003_swio_interface_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/ch32v003_swio_interface_test/README.md -------------------------------------------------------------------------------- /idf_sandbox/tools/ch32v003_swio_interface_test/ch32v003_swio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/ch32v003_swio_interface_test/ch32v003_swio.h -------------------------------------------------------------------------------- /idf_sandbox/tools/ch32v003_swio_interface_test/sandbox.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/ch32v003_swio_interface_test/sandbox.S -------------------------------------------------------------------------------- /idf_sandbox/tools/ch32v003_swio_interface_test/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/ch32v003_swio_interface_test/sandbox.c -------------------------------------------------------------------------------- /idf_sandbox/tools/ch32v003_swio_interface_test/testapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/ch32v003_swio_interface_test/testapp/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/ch32v003_swio_interface_test/testapp/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/ch32v003_swio_interface_test/testapp/testapp.c -------------------------------------------------------------------------------- /idf_sandbox/tools/common/buildhelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/common/buildhelp.c -------------------------------------------------------------------------------- /idf_sandbox/tools/common/sandbox_interactive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/common/sandbox_interactive.c -------------------------------------------------------------------------------- /idf_sandbox/tools/common/sandbox_upload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/common/sandbox_upload.c -------------------------------------------------------------------------------- /idf_sandbox/tools/common/ulp_linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/common/ulp_linker_script.ld -------------------------------------------------------------------------------- /idf_sandbox/tools/dedicated_fast_io_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/dedicated_fast_io_demo/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/dedicated_fast_io_demo/sandbox.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/dedicated_fast_io_demo/sandbox.S -------------------------------------------------------------------------------- /idf_sandbox/tools/dedicated_fast_io_demo/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/dedicated_fast_io_demo/sandbox.c -------------------------------------------------------------------------------- /idf_sandbox/tools/fsm_sandbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/fsm_sandbox/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/fsm_sandbox/fsm_program.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/fsm_sandbox/fsm_program.S -------------------------------------------------------------------------------- /idf_sandbox/tools/fsm_sandbox/sandbox.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/fsm_sandbox/sandbox.S -------------------------------------------------------------------------------- /idf_sandbox/tools/fsm_sandbox/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/fsm_sandbox/sandbox.c -------------------------------------------------------------------------------- /idf_sandbox/tools/hidapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/hidapi.c -------------------------------------------------------------------------------- /idf_sandbox/tools/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/hidapi.h -------------------------------------------------------------------------------- /idf_sandbox/tools/hidapi_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/hidapi_test/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/hidapi_test/hidapi_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/hidapi_test/hidapi_test.c -------------------------------------------------------------------------------- /idf_sandbox/tools/i2stest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/i2stest/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/i2stest/sandbox.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/i2stest/sandbox.S -------------------------------------------------------------------------------- /idf_sandbox/tools/i2stest/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/i2stest/sandbox.c -------------------------------------------------------------------------------- /idf_sandbox/tools/rbo128128G-610-4wspi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/rbo128128G-610-4wspi/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/rbo128128G-610-4wspi/sandbox.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/rbo128128G-610-4wspi/sandbox.S -------------------------------------------------------------------------------- /idf_sandbox/tools/rbo128128G-610-4wspi/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/rbo128128G-610-4wspi/sandbox.c -------------------------------------------------------------------------------- /idf_sandbox/tools/rbo128128G-610-4wspi/testapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/rbo128128G-610-4wspi/testapp/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/rbo128128G-610-4wspi/testapp/badappleplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/rbo128128G-610-4wspi/testapp/badappleplay.c -------------------------------------------------------------------------------- /idf_sandbox/tools/rbo128128G-610-4wspi/testapp/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/rbo128128G-610-4wspi/testapp/testapp.c -------------------------------------------------------------------------------- /idf_sandbox/tools/rbo128128G-610-parallel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/rbo128128G-610-parallel/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/rbo128128G-610-parallel/sandbox.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/rbo128128G-610-parallel/sandbox.S -------------------------------------------------------------------------------- /idf_sandbox/tools/rbo128128G-610-parallel/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/rbo128128G-610-parallel/sandbox.c -------------------------------------------------------------------------------- /idf_sandbox/tools/reboot_into_bootloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/reboot_into_bootloader/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/sandbox_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/sandbox_test/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/sandbox_test/sandbox.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/sandbox_test/sandbox.S -------------------------------------------------------------------------------- /idf_sandbox/tools/sandbox_test/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/sandbox_test/sandbox.c -------------------------------------------------------------------------------- /idf_sandbox/tools/sandbox_test/sandboxes/adc_monitor_with_dig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/sandbox_test/sandboxes/adc_monitor_with_dig.c -------------------------------------------------------------------------------- /idf_sandbox/tools/sandbox_test/sandboxes/really_basic_sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/sandbox_test/sandboxes/really_basic_sandbox.c -------------------------------------------------------------------------------- /idf_sandbox/tools/sandbox_test/sandboxes/touchgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/sandbox_test/sandboxes/touchgraph.c -------------------------------------------------------------------------------- /idf_sandbox/tools/ulp_sandbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/ulp_sandbox/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/ulp_sandbox/sandbox.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/ulp_sandbox/sandbox.S -------------------------------------------------------------------------------- /idf_sandbox/tools/ulp_sandbox/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/ulp_sandbox/sandbox.c -------------------------------------------------------------------------------- /idf_sandbox/tools/ulp_sandbox/ulp_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/ulp_sandbox/ulp_program.c -------------------------------------------------------------------------------- /idf_sandbox/tools/updi_programmer_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/updi_programmer_test/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/updi_programmer_test/THIS_HAS_MOVED_TO_ch32v003programmer: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /idf_sandbox/tools/updi_programmer_test/build/compilecount.txt: -------------------------------------------------------------------------------- 1 | 567 2 | -------------------------------------------------------------------------------- /idf_sandbox/tools/updi_programmer_test/sandbox.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/updi_programmer_test/sandbox.S -------------------------------------------------------------------------------- /idf_sandbox/tools/updi_programmer_test/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/updi_programmer_test/sandbox.c -------------------------------------------------------------------------------- /idf_sandbox/tools/updi_programmer_test/testapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/updi_programmer_test/testapp/Makefile -------------------------------------------------------------------------------- /idf_sandbox/tools/updi_programmer_test/testapp/attiny416.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/updi_programmer_test/testapp/attiny416.S -------------------------------------------------------------------------------- /idf_sandbox/tools/updi_programmer_test/testapp/avr_test.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/updi_programmer_test/testapp/avr_test.bin -------------------------------------------------------------------------------- /idf_sandbox/tools/updi_programmer_test/testapp/avr_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/updi_programmer_test/testapp/avr_test.c -------------------------------------------------------------------------------- /idf_sandbox/tools/updi_programmer_test/testapp/iotn416.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/updi_programmer_test/testapp/iotn416.h -------------------------------------------------------------------------------- /idf_sandbox/tools/updi_programmer_test/testapp/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/updi_programmer_test/testapp/testapp.c -------------------------------------------------------------------------------- /idf_sandbox/tools/updi_programmer_test/updi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/idf_sandbox/tools/updi_programmer_test/updi_bitbang.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build 3 | -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/CMakeLists.txt -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/README.md -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/CMakeLists.txt -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/Kconfig -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/additions/include/tinyusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/additions/include/tinyusb.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/additions/src/cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/additions/src/cdc.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/additions/src/tinyusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/additions/src/tinyusb.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/additions/src/tusb_cdc_acm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/additions/src/tusb_cdc_acm.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/additions/src/tusb_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/additions/src/tusb_console.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/additions/src/tusb_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/additions/src/tusb_tasks.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/additions/src/vfs_tinyusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/additions/src/vfs_tinyusb.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/sdkconfig.rename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/sdkconfig.rename -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/.gitattributes -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/.gitignore -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/CONTRIBUTORS.md -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/LICENSE -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/README.md -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/docs/boards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/docs/boards.md -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/docs/changelog.md -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/docs/concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/docs/concurrency.md -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/docs/porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/docs/porting.md -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/pkg.yml -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/repository.yml -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/class/cdc/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/class/cdc/cdc.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/class/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/class/hid/hid.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/class/midi/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/class/midi/midi.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/class/msc/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/class/msc/msc.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/device/dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/device/dcd.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/device/usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/device/usbd.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/device/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/device/usbd.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/device/usbd_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/device/usbd_pvt.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/host/hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/host/hcd.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/host/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/host/hub.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/host/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/host/hub.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/host/usbh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/host/usbh.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/host/usbh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/host/usbh.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/host/usbh_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/host/usbh_hcd.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/osal/osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/osal/osal.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/osal/osal_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/osal/osal_none.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/osal/osal_pico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/osal/osal_pico.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/tusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/tusb.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/tusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/tusb.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/tusb_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/src/tusb_option.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/tinyusb.Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/tinyusb.Doxyfile -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/tools/build_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/tools/build_board.py -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/tools/build_family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/tools/build_family.py -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/tools/top.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/tools/top.mk -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/components/tinyusb/tinyusb/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/components/tinyusb/tinyusb/version.yml -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/main/CMakeLists.txt -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/main/advanced_usb_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/main/advanced_usb_control.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/main/advanced_usb_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/main/advanced_usb_control.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/main/main.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/main/sandrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/main/sandrun.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/partitions.csv -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/sdkconfig -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/testapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/testapp/Makefile -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/testapp/badappleplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/testapp/badappleplay.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/testapp/hidapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/testapp/hidapi.c -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/testapp/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/testapp/hidapi.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/testapp/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/testapp/stb_image.h -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/testapp/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/testapp/test.png -------------------------------------------------------------------------------- /rbo128128g-610-4wspi/testapp/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/rbo128128g-610-4wspi/testapp/testapp.c -------------------------------------------------------------------------------- /run_from_ram_overclock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/run_from_ram_overclock/Makefile -------------------------------------------------------------------------------- /run_from_ram_overclock/checksums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/run_from_ram_overclock/checksums.c -------------------------------------------------------------------------------- /run_from_ram_overclock/esp32s2-ram.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/run_from_ram_overclock/esp32s2-ram.lds -------------------------------------------------------------------------------- /run_from_ram_overclock/main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/run_from_ram_overclock/main.S -------------------------------------------------------------------------------- /run_from_ram_overclock/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/run_from_ram_overclock/main.c -------------------------------------------------------------------------------- /run_from_ram_overclock/sdkconfig.h: -------------------------------------------------------------------------------- 1 | 2 | // ... 3 | 4 | -------------------------------------------------------------------------------- /run_from_ram_rgb_led/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/run_from_ram_rgb_led/Makefile -------------------------------------------------------------------------------- /run_from_ram_rgb_led/esp32s2-ram.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/run_from_ram_rgb_led/esp32s2-ram.lds -------------------------------------------------------------------------------- /run_from_ram_rgb_led/main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/run_from_ram_rgb_led/main.S -------------------------------------------------------------------------------- /run_from_ram_rgb_led/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/run_from_ram_rgb_led/main.c -------------------------------------------------------------------------------- /run_from_ram_rgb_led/sdkconfig.h: -------------------------------------------------------------------------------- 1 | 2 | // ... 3 | 4 | -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/graph_values_over_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/tools/graph_values_over_time.c -------------------------------------------------------------------------------- /tools/multi_graph_values_over_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/tools/multi_graph_values_over_time.c -------------------------------------------------------------------------------- /tools/per_line_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/tools/per_line_graph.c -------------------------------------------------------------------------------- /tools/rawdraw_sf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/esp32s2-cookbook/HEAD/tools/rawdraw_sf.h --------------------------------------------------------------------------------