-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
31 lines (31 loc) · 803 Bytes
/
library.json
File metadata and controls
31 lines (31 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "BDSP",
"description": "The library implements a low-level packet data transfer protocol for byte communication channels (for example, UART, IP Socket). PPP and COBS byte stuffing methods are used.",
"keywords": "packet, protocol, COBS, PPP, UART, socket, ",
"authors": [
{
"name": "Arthur Koba",
"url": "https://github.com/ArthurKoba",
"maintainer": true
}
],
"repository": {
"type": "git",
"url": "https://github.com/KobaProduction/BDSP.git"
},
"version": "0.2.1",
"license": "MIT",
"homepage": "https://github.com/KobaProduction/BDSP",
"frameworks": "*",
"platforms": "*",
"headers": "BDSP.h",
"export": {
"exclude": ["docs", "tests"]
},
"build": {
"srcFilter": [
"+<*.cpp>",
"+<**/**/*.cpp>"
]
}
}