From be9d46a86e2c499f875ba6a1ff3e65a6efe75bfb Mon Sep 17 00:00:00 2001 From: kazetsukaimiko <3697327+kazetsukaimiko@users.noreply.github.com> Date: Tue, 14 May 2024 15:44:00 -0400 Subject: [PATCH] PlatformIO library descriptor (#35) * Library.json Addition * Remove duplicate key * Case * Stick with current naming convention * Updated CONTRIBUTORS --------- Co-authored-by: Simon Cahill --- CONTRIBUTORS.md | 1 + library.json | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 library.json diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 8e15f33..1ff03fd 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -10,6 +10,7 @@ | [Phil Greenland](https://github.com/pgreenland) | Added support for message retries if the remote controller was busy | #26 | | [Phil Greenland](https://github.com/pgreenland) | Fixed PIC being generated for static binaries | #27 | | [speedy-h](https://github.com/speedy-h) | Fixed compiler error when compiling with `-Wextra` caused by unused function params. | #32 | +| [kazetsukaimiko](https://github.com/kazetsukaimiko) | Added support for PlatformIO, a platform for distributing libraries for a variety of systems. | #35 | Thank you everyone for contributing to this library and improving it! Have you contributed and I've forgotten to mention you? Please let me know and I'll add you here! diff --git a/library.json b/library.json new file mode 100644 index 0000000..b582b52 --- /dev/null +++ b/library.json @@ -0,0 +1,21 @@ +{ + "name": "isotp-c", + "version": "v1.1.2", + "description": "ISO 15765-2 Support Library in C", + "keywords": "c,windows,linux,c-plus-plus,arm,multi-platform,microcontroller,embedded,mips,can,x86,ppc,powerpc,uds,embedded-c,controller-area-network,iso-tp,unified-diagnostics-services,iso-15765-2,15765-2", + "authors": { + "name": "SimonCahill", + "url": "https://github.com/SimonCahill/isotp-c", + "maintainer": true + }, + "repository": { + "type": "git", + "url": "git@github.com:SimonCahill/isotp-c.git" + }, + "frameworks": "*", + "platforms": "*", + "headers": "isotp.h", + "build": { + "libArchive": false + } +}