├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── main_device.c ├── main_host.c ├── pico_sdk_import.cmake ├── tusb_config.h ├── usb_descriptors.c └── usb_descriptors.h /.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendena/pico_device_and_host/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendena/pico_device_and_host/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendena/pico_device_and_host/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendena/pico_device_and_host/HEAD/README.md -------------------------------------------------------------------------------- /main_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendena/pico_device_and_host/HEAD/main_device.c -------------------------------------------------------------------------------- /main_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendena/pico_device_and_host/HEAD/main_host.c -------------------------------------------------------------------------------- /pico_sdk_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendena/pico_device_and_host/HEAD/pico_sdk_import.cmake -------------------------------------------------------------------------------- /tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendena/pico_device_and_host/HEAD/tusb_config.h -------------------------------------------------------------------------------- /usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendena/pico_device_and_host/HEAD/usb_descriptors.c -------------------------------------------------------------------------------- /usb_descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendena/pico_device_and_host/HEAD/usb_descriptors.h --------------------------------------------------------------------------------