Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PlatformIO library descriptor #35

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
21 changes: 21 additions & 0 deletions library.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]:SimonCahill/isotp-c.git"
},
"frameworks": "*",
"platforms": "*",
"headers": "isotp.h",
"build": {
"libArchive": false
}
}
Loading