├── .gitmodules ├── CMakeLists.txt ├── Kconfig ├── LICENSE ├── README.md ├── include ├── psram_allocator.h ├── tusb_config.h └── usb.h └── src ├── usb.cpp ├── usb_cdc.cpp ├── usb_hid.cpp └── usb_msc.cpp /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atanisoft/esp32usb/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atanisoft/esp32usb/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atanisoft/esp32usb/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atanisoft/esp32usb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atanisoft/esp32usb/HEAD/README.md -------------------------------------------------------------------------------- /include/psram_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atanisoft/esp32usb/HEAD/include/psram_allocator.h -------------------------------------------------------------------------------- /include/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atanisoft/esp32usb/HEAD/include/tusb_config.h -------------------------------------------------------------------------------- /include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atanisoft/esp32usb/HEAD/include/usb.h -------------------------------------------------------------------------------- /src/usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atanisoft/esp32usb/HEAD/src/usb.cpp -------------------------------------------------------------------------------- /src/usb_cdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atanisoft/esp32usb/HEAD/src/usb_cdc.cpp -------------------------------------------------------------------------------- /src/usb_hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atanisoft/esp32usb/HEAD/src/usb_hid.cpp -------------------------------------------------------------------------------- /src/usb_msc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atanisoft/esp32usb/HEAD/src/usb_msc.cpp --------------------------------------------------------------------------------