-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.json
76 lines (76 loc) · 2.04 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
{
"name": "HamlibRotctlEasycommParser",
"keywords": "hamlib, rotctl, easycomm, parser, antenna, rotor, rotator, hamradio",
"description": "Easycomm parser for hamlib rotator control",
"homepage": "https://github.com/yapiolibs/hamlib-rotctl-easycomm-parser",
"repository": {
"type": "git",
"url": "https://github.com/yapiolibs/hamlib-rotctl-easycomm-parser.git"
},
"authors": [{
"name": "Raoul Rubien",
"url": "https://github.com/rubienr",
"maintainer": "true"
}],
"license": "Apache-2.0",
"version": "0.1.3",
"frameworks": ["native", "arduino"],
"platforms": ["native", "atmelavr", "ststm32", "espressiv8266", "espressif32"],
"headers": [
"easycomm-parser.h",
"easycomm-command-callback-handler.h",
"easycomm-buffered-tokenizer.h",
"easycomm-types.h",
"easycomm-parser-types.h",
"easycomm-parser-types-ctors.h",
"easycomm-parser-types-sprintf.h",
"easycomm-parser-types-operators.h",
"easycomm-response-types.h",
"easycomm-response-types-ctors.h",
"easycomm-response-types-sprintf.h"
],
"examples": [{
"name": "parse_a_single_command",
"base": "test/",
"files": [
"platformio.ini",
"src/example-parse-command.h",
"src/example-parse-command.cpp"
]
},
{
"name": "parse_a_command_with_callback",
"base": "test/",
"files": [
"platformio.ini",
"src/example-parse-with-callback.h",
"src/example-parse-with-callback.cpp"
]
},
{
"name": "parse_data_from_stream",
"base": "test/",
"files": [
"platformio.ini",
"src/example-parse-stream.h",
"src/example-parse-stream.cpp"
]
},
{
"name": "parse_from_stream_and_reply-native_integration_test_program",
"base": "test/",
"files": [
"platformio.ini",
"src/native-integration-test-program.h",
"src/native-integration-test-program.cpp"
]
}
],
"export": {
"exclude": [
".github/",
"test/cmake*",
"test/.idea"
]
}
}