System.ems
1.16 KB
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
owner = "system@emmoco.com"
schema System {
// protocolLevel #13
enum ParameterGroup {
GROUP_A, GROUP_B
}
// protocolLevel #1
uint8 $schemaUuid[16] { // protocolLevel #10 -- invisible to applications
readonly
}
uint16 $mcmProtocolLevel {
readonly
}
uint16 $eapProtocolLevel {
readonly
}
uint8 $eapBuildDate[8] { // protocolLevel #5 -- rename from $eapBuildNumber
readonly
}
// protocolLevel #2
int16 $fileIndexReset {
writeonly
}
// protocolLevel #5
// protocolLevel #12 -- increase size to 20
uint8 $schemaHash[20] {
readonly
}
// protocolLevel #7
struct ResourceCount {
uint8 app
uint8 sys
}
ResourceCount $resourceCount {
readonly
}
// protocolLevel #9
int8 $mobileRssi {
readonly
}
// protocolLevel #11
uint8 $mcmDisconnect {
writeonly
}
// protocolLevel #13
ParameterGroup $activeGroup {
readwrite
}
}