summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2023-11-03 09:08:10 +0700
committerGitHub <[email protected]>2023-11-03 09:08:10 +0700
commitf3eaf0652d70e738207d41d97b0c8c56c80175d1 (patch)
treeb0e33fad984f73cfe05ae378612b02c948cf6b47
parent3af44089bc52edc0349c4879e24ae9f4f8ea3f73 (diff)
parent2f2ccb33ed6fe3f40099ec529524611c6c1c507e (diff)
Merge pull request #2293 from Yveaux/master
Add PlatformIO manifest
-rw-r--r--library.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/library.json b/library.json
new file mode 100644
index 000000000..d637b528d
--- /dev/null
+++ b/library.json
@@ -0,0 +1,23 @@
+{
+ "name": "TinyUSB",
+ "version": "0.15.0",
+ "description": "TinyUSB is an open-source cross-platform USB Host/Device stack for embedded system, designed to be memory-safe with no dynamic allocation and thread-safe with all interrupt events are deferred then handled in the non-ISR task function.",
+ "keywords": "usb, host, device",
+ "repository":
+ {
+ "type": "git",
+ "url": "https://github.com/hathach/tinyusb.git"
+ },
+ "authors":
+ [
+ {
+ "name": "Ha Thach",
+ "email": "[email protected]",
+ "maintainer": true
+ }
+ ],
+ "license": "MIT",
+ "homepage": "https://www.tinyusb.org/",
+ "frameworks": "*",
+ "platforms": "*"
+}