├── LICENSE ├── README.md ├── examples ├── cdc │ ├── cdc.ino │ └── test.ino └── mouse │ └── mouse.ino ├── library.properties └── src ├── cdchost.cpp ├── cdchost.h ├── configparse.cpp ├── configparse.h ├── hcd.c ├── hcd.h ├── mousepipe.cpp ├── mousepipe.h ├── parse_data.cpp ├── parse_hid.cpp ├── parse_hid.h ├── pipe.cpp ├── pipe.h ├── port.cpp ├── port.h └── usb.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/README.md -------------------------------------------------------------------------------- /examples/cdc/cdc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/examples/cdc/cdc.ino -------------------------------------------------------------------------------- /examples/cdc/test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/examples/cdc/test.ino -------------------------------------------------------------------------------- /examples/mouse/mouse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/examples/mouse/mouse.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/library.properties -------------------------------------------------------------------------------- /src/cdchost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/cdchost.cpp -------------------------------------------------------------------------------- /src/cdchost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/cdchost.h -------------------------------------------------------------------------------- /src/configparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/configparse.cpp -------------------------------------------------------------------------------- /src/configparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/configparse.h -------------------------------------------------------------------------------- /src/hcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/hcd.c -------------------------------------------------------------------------------- /src/hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/hcd.h -------------------------------------------------------------------------------- /src/mousepipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/mousepipe.cpp -------------------------------------------------------------------------------- /src/mousepipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/mousepipe.h -------------------------------------------------------------------------------- /src/parse_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/parse_data.cpp -------------------------------------------------------------------------------- /src/parse_hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/parse_hid.cpp -------------------------------------------------------------------------------- /src/parse_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/parse_hid.h -------------------------------------------------------------------------------- /src/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/pipe.cpp -------------------------------------------------------------------------------- /src/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/pipe.h -------------------------------------------------------------------------------- /src/port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/port.cpp -------------------------------------------------------------------------------- /src/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/port.h -------------------------------------------------------------------------------- /src/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chegewara/esp32S2-usb-host-library/HEAD/src/usb.h --------------------------------------------------------------------------------