diff options
| author | Yveaux <[email protected]> | 2023-10-28 14:47:29 +0200 |
|---|---|---|
| committer | Yveaux <[email protected]> | 2023-10-28 14:47:29 +0200 |
| commit | ae7ad53949d0021a8d0a736b7b33f583ca0ee5b3 (patch) | |
| tree | a5f82d9cb7db32e9f05ee82f16d9c213badf919f | |
| parent | 10558acac6658d1480a6a6c025e006f2a6f4e212 (diff) | |
Add PlatformIO manifest
| -rw-r--r-- | library.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/library.json b/library.json new file mode 100644 index 000000000..4b7266dec --- /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": "*" +}
\ No newline at end of file |
