-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlibrary.json
74 lines (70 loc) · 1.62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "HML_FwLib_8051",
"version": "0.3.2",
"description": "A lite firmware library for 8051 MCU based on SDCC complier",
"keywords": [
"mcs51"
],
"license": "WTFPL2",
"platforms": "intel_mcs51",
"homepage": "https://github.com/MCU-ZHISHAN-IoT/HML_FwLib_8051",
"authors": [
{
"name": "Weilun Fong",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/MCU-ZHISHAN-IoT/HML_FwLib_8051.git"
},
"build": {
"srcDir": "src",
"includeDir": "inc",
"flags": [
"--fsigned-char"
]
},
"examples": [
{
"name": "exti",
"base": "example/exti",
"files": [
"exti_toggleIo.c"
]
},
{
"name": "gpio",
"base": "example/gpio",
"files": [
"gpio_toggleIo.c"
]
},
{
"name": "tim2",
"base": "example/tim2",
"files": [
"tim2_baudGenerator.c",
"tim2_bleekLed.c"
]
},
{
"name": "uart",
"base": "example/uart",
"files": [
"uart_hc05ToP1.c",
"uart_sendString.c"
]
},
{
"name": "zcli",
"base": "example/zcli",
"files": [
"zcli.c",
"zcli-ChangeLog",
"zcli-usage-demo.gif",
"README.md"
]
}
]
}