-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathlibrary.json
115 lines (111 loc) · 2.54 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "HML_FwLib_STC89",
"version": "1.3.1",
"description": "A lite firmware library for STC micro STC89 series MCU based on SDCC complier",
"keywords": [
"mcs51",
"stc",
"stc89"
],
"license": "WTFPL",
"platforms": "intel_mcs51",
"homepage": "https://github.com/MCU-ZHISHAN-IoT/HML_FwLib_STC89",
"authors": [
{
"name": "Weilun Fong",
"email": "[email protected]"
},
{
"name": "Jiabin Hsu",
"email": "[email protected]",
"maintainer": true
},
{
"name": "Amy Chung",
"email": "[email protected]"
},
{
"name": "Qiyuan Chen",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/MCU-ZHISHAN-IoT/HML_FwLib_STC89.git"
},
"build": {
"srcDir": "src",
"includeDir": "inc",
"flags": [
"--fsigned-char"
]
},
"examples": [
{
"name": "exti",
"base": "example/exti",
"files": [
"exti_interruptPriority.c",
"exti_toggleIo.c"
]
},
{
"name": "gpio",
"base": "example/gpio",
"files": [
"gpio_toggleIo.c"
]
},
{
"name": "isp",
"base": "example/isp",
"files": [
"isp_access.c"
]
},
{
"name": "rst",
"base": "example/rst",
"files": [
"rst_softwareReset.c"
]
},
{
"name": "tim",
"base": "example/tim",
"files": [
"tim_toggleIo.c"
]
},
{
"name": "tim2",
"base": "example/tim2",
"files": [
"tim2_toggleIo.c"
]
},
{
"name": "uart",
"base": "example/uart",
"files": [
"uart_sendString.c"
]
},
{
"name": "wdt",
"base": "example/wdt",
"files": [
"wdt_feedDog.c"
]
},
{
"name": "zcli",
"base": "example/zcli",
"files": [
"zcli.c",
"zcli-usage-demo.gif",
"README.md"
]
}
]
}