From 329cae4481b4fb303505cd39c685e89d2c4f36bd Mon Sep 17 00:00:00 2001 From: Vladimir Dronnikov Date: Mon, 18 Jun 2018 07:37:25 +0300 Subject: [PATCH] add platformio manifest --- library.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..aa3979d --- /dev/null +++ b/library.json @@ -0,0 +1,23 @@ +{ + "description": "A Firmware-Only USB implementation for Atmel's AVR Microcontrollers", + "repository": { + "url": "https://github.com/dvv/v-usb", + "type": "git" + }, + "platforms": [ + "atmelavr" + ], + "include": "usbdrv", + "build": { + "flags": "-I ../../src", + "srcFilter": "+ + + -<*.asm>" + }, + "keywords": [ + "USB" + ], + "name": "V-USB", + "frameworks": [ + "arduino" + ], + "version": "0.0.1" +} \ No newline at end of file