-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.json
41 lines (41 loc) · 1.08 KB
/
library.json
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
32
33
34
35
36
37
38
39
40
41
{
"name": "MicroToolbox",
"version": "1.0.8",
"description": "Sets of various small helper functions useful when developing firmware.",
"keywords": "c, bitset, firmware, delay, convert, bits, guard, macros, ip, alignment, crc, bcd, endian, tool",
"repository":
{
"type": "git",
"url": "https://github.com/Zamuhrishka/MicroToolbox"
},
"authors":
[
{
"name": "Aliaksandr Kavalchuk",
"email": "[email protected]"
}
],
"license": "MIT",
"frameworks": "*",
"platforms": "*",
"build": {
"flags": [
"-Iinclude/align",
"-Iinclude/conversion",
"-Iinclude/crc",
"-Iinclude/endian",
"-Iinclude/environment",
"-Iinclude/macros",
"-Iinclude/types",
"-DMODULE_DELAY_DISABLED",
"-DCRC8_TABLE",
"-DCRC16_TABLE",
"-DCRC32_TABLE"
],
"includeDir": ".",
"srcDir": ".",
"export": {
"exclude": ["src/delay", "include/delay", "tools", "src/description.h", "project.yml"]
}
}
}