Initial Release

This commit is contained in:
graham sanderson
2021-01-20 10:49:34 -06:00
commit 46078742c7
245 changed files with 21157 additions and 0 deletions

10
usb/CMakeLists.txt Normal file
View File

@@ -0,0 +1,10 @@
if (TARGET tinyusb_device)
add_subdirectory(device)
else ()
message("Skipping TinyUSB device examples, as TinyUSB unavailable")
endif ()
if (TARGET tinyusb_host)
add_subdirectory(host)
else ()
message("Skipping TinyUSB host examples, as TinyUSB unavailable")
endif ()