@blueid/access-proto 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BlueCore.proto +841 -0
- package/BlueLock.proto +35 -0
- package/BlueSDK.proto +56 -0
- package/BlueSystem.proto +278 -0
- package/es/BlueCore_pb.d.ts +2937 -0
- package/es/BlueCore_pb.js +975 -0
- package/es/BlueLock_pb.d.ts +118 -0
- package/es/BlueLock_pb.js +46 -0
- package/es/BlueSDK_pb.d.ts +197 -0
- package/es/BlueSDK_pb.js +73 -0
- package/es/BlueSystem_pb.d.ts +913 -0
- package/es/BlueSystem_pb.js +272 -0
- package/nanopb/BlueCore.pb.c +188 -0
- package/nanopb/BlueCore.pb.h +1715 -0
- package/nanopb/BlueLock.pb.c +16 -0
- package/nanopb/BlueLock.pb.h +104 -0
- package/nanopb/BlueSDK.pb.c +22 -0
- package/nanopb/BlueSDK.pb.h +159 -0
- package/nanopb/BlueSystem.pb.c +64 -0
- package/nanopb/BlueSystem.pb.h +631 -0
- package/package.json +18 -0
- package/swift/BlueCore.pb.swift +6840 -0
- package/swift/BlueLock.pb.swift +276 -0
- package/swift/BlueSDK.pb.swift +624 -0
- package/swift/BlueSystem.pb.swift +2489 -0
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v1.4.0 with parameter "target=js+dts"
|
|
2
|
+
// @generated from file BlueSystem.proto (syntax proto2)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import { proto2 } from "@bufbuild/protobuf";
|
|
7
|
+
import { BlueBatteryLevel, BlueBlacklistEntry, BlueEvent, BlueHardwareType, BlueLocalTimeSchedule, BlueLocalTimestamp } from "./BlueCore_pb.js";
|
|
8
|
+
import { BlueLockConfig, BlueLockStatus } from "./BlueLock_pb.js";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* @generated from enum BlueOnlineMode
|
|
12
|
+
*/
|
|
13
|
+
export const BlueOnlineMode = proto2.makeEnum(
|
|
14
|
+
"BlueOnlineMode",
|
|
15
|
+
[
|
|
16
|
+
{no: 0, name: "OfflineMode"},
|
|
17
|
+
{no: 1, name: "ManualWifi"},
|
|
18
|
+
{no: 2, name: "AlwaysOnWifi"},
|
|
19
|
+
{no: 3, name: "UseLan"},
|
|
20
|
+
],
|
|
21
|
+
);
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @generated from message BlueTimeOffsetPeriod
|
|
25
|
+
*/
|
|
26
|
+
export const BlueTimeOffsetPeriod = proto2.makeMessageType(
|
|
27
|
+
"BlueTimeOffsetPeriod",
|
|
28
|
+
() => [
|
|
29
|
+
{ no: 1, name: "epoch", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
30
|
+
{ no: 2, name: "offset", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
31
|
+
],
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* @generated from message BlueBaseConfig
|
|
36
|
+
*/
|
|
37
|
+
export const BlueBaseConfig = proto2.makeMessageType(
|
|
38
|
+
"BlueBaseConfig",
|
|
39
|
+
() => [
|
|
40
|
+
{ no: 1, name: "timeOffsetPeriods", kind: "message", T: BlueTimeOffsetPeriod, repeated: true },
|
|
41
|
+
{ no: 2, name: "autoCheckSystemStatus", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: false },
|
|
42
|
+
],
|
|
43
|
+
);
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* @generated from message BlueBleConfig
|
|
47
|
+
*/
|
|
48
|
+
export const BlueBleConfig = proto2.makeMessageType(
|
|
49
|
+
"BlueBleConfig",
|
|
50
|
+
() => [
|
|
51
|
+
{ no: 1, name: "isAdvertising", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: true },
|
|
52
|
+
{ no: 2, name: "advertisingSchedules", kind: "message", T: BlueLocalTimeSchedule, repeated: true },
|
|
53
|
+
{ no: 3, name: "maxPowerAdvertisingSchedulesIndices", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
|
|
54
|
+
{ no: 4, name: "advertisingIntervalMs", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 500 },
|
|
55
|
+
{ no: 5, name: "maxConnectionTimeoutMs", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 3000 },
|
|
56
|
+
{ no: 6, name: "txPowerLevel", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 3 },
|
|
57
|
+
{ no: 7, name: "advertisedTxPower1Meter", kind: "scalar", T: 5 /* ScalarType.INT32 */, default: -77 },
|
|
58
|
+
{ no: 8, name: "isIBeaconAdvertisement", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
59
|
+
],
|
|
60
|
+
);
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* @generated from message BlueOnlineConfig
|
|
64
|
+
*/
|
|
65
|
+
export const BlueOnlineConfig = proto2.makeMessageType(
|
|
66
|
+
"BlueOnlineConfig",
|
|
67
|
+
() => [
|
|
68
|
+
{ no: 1, name: "mode", kind: "enum", T: proto2.getEnumType(BlueOnlineMode), default: BlueOnlineMode.OfflineMode },
|
|
69
|
+
{ no: 2, name: "connectSchedules", kind: "message", T: BlueLocalTimeSchedule, repeated: true },
|
|
70
|
+
{ no: 3, name: "wifiSSID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
71
|
+
{ no: 4, name: "wifiPassword", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
72
|
+
{ no: 5, name: "timeoutSec", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 30 },
|
|
73
|
+
],
|
|
74
|
+
);
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* @generated from message BlueAccessConfig
|
|
78
|
+
*/
|
|
79
|
+
export const BlueAccessConfig = proto2.makeMessageType(
|
|
80
|
+
"BlueAccessConfig",
|
|
81
|
+
() => [
|
|
82
|
+
{ no: 1, name: "id", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 1 },
|
|
83
|
+
{ no: 2, name: "siteId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 1 },
|
|
84
|
+
{ no: 3, name: "groupIds", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
|
|
85
|
+
],
|
|
86
|
+
);
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* -- Oss SecureId --
|
|
91
|
+
*
|
|
92
|
+
*
|
|
93
|
+
* @generated from message BlueOssConfig
|
|
94
|
+
*/
|
|
95
|
+
export const BlueOssConfig = proto2.makeMessageType(
|
|
96
|
+
"BlueOssConfig",
|
|
97
|
+
() => [
|
|
98
|
+
{ no: 1, name: "sidMifareAesKey", kind: "scalar", T: 12 /* ScalarType.BYTES */, default: new Uint8Array([0xFF, 0xEE, 0xDD, 0xCC, 0xBB, 0xAA, 0x99, 0x88, 0x77, 0x66, 0x55, 0x44, 0x33, 0x11, 0x00]) },
|
|
99
|
+
{ no: 2, name: "sidMifareAid", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 16076801 },
|
|
100
|
+
{ no: 3, name: "soUpdater", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: false },
|
|
101
|
+
{ no: 4, name: "soPushEvents", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: false },
|
|
102
|
+
{ no: 5, name: "soWritePendingEvents", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: true },
|
|
103
|
+
{ no: 6, name: "soUpdateFromBlacklist", kind: "scalar", T: 8 /* ScalarType.BOOL */, default: true },
|
|
104
|
+
{ no: 7, name: "soMifareAesKey", kind: "scalar", T: 12 /* ScalarType.BYTES */, default: new Uint8Array([0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F]) },
|
|
105
|
+
{ no: 8, name: "soMifareAid", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 16076800 },
|
|
106
|
+
],
|
|
107
|
+
);
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* @generated from message BlueSystemConfig
|
|
111
|
+
*/
|
|
112
|
+
export const BlueSystemConfig = proto2.makeMessageType(
|
|
113
|
+
"BlueSystemConfig",
|
|
114
|
+
() => [
|
|
115
|
+
{ no: 1, name: "version", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
116
|
+
{ no: 2, name: "base", kind: "message", T: BlueBaseConfig },
|
|
117
|
+
{ no: 3, name: "ble", kind: "message", T: BlueBleConfig },
|
|
118
|
+
{ no: 4, name: "online", kind: "message", T: BlueOnlineConfig },
|
|
119
|
+
{ no: 5, name: "access", kind: "message", T: BlueAccessConfig },
|
|
120
|
+
{ no: 6, name: "oss", kind: "message", T: BlueOssConfig },
|
|
121
|
+
{ no: 7, name: "lock", kind: "message", T: BlueLockConfig, opt: true },
|
|
122
|
+
],
|
|
123
|
+
);
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @generated from message BlueSystemTimeUnix
|
|
127
|
+
*/
|
|
128
|
+
export const BlueSystemTimeUnix = proto2.makeMessageType(
|
|
129
|
+
"BlueSystemTimeUnix",
|
|
130
|
+
() => [
|
|
131
|
+
{ no: 1, name: "epoch", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
132
|
+
],
|
|
133
|
+
);
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* @generated from message BlueSystemUpdate
|
|
137
|
+
*/
|
|
138
|
+
export const BlueSystemUpdate = proto2.makeMessageType(
|
|
139
|
+
"BlueSystemUpdate",
|
|
140
|
+
() => [
|
|
141
|
+
{ no: 1, name: "config", kind: "message", T: BlueSystemConfig, opt: true },
|
|
142
|
+
{ no: 2, name: "timeUnix", kind: "message", T: BlueSystemTimeUnix, opt: true },
|
|
143
|
+
],
|
|
144
|
+
);
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* @generated from message BlueSystemSettings
|
|
148
|
+
*/
|
|
149
|
+
export const BlueSystemSettings = proto2.makeMessageType(
|
|
150
|
+
"BlueSystemSettings",
|
|
151
|
+
() => [
|
|
152
|
+
{ no: 1, name: "blacklistMaxEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
153
|
+
{ no: 2, name: "blacklistEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
154
|
+
{ no: 3, name: "eventLogMaxEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
155
|
+
{ no: 4, name: "eventLogEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
156
|
+
{ no: 5, name: "eventLogSequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
157
|
+
{ no: 6, name: "eventLogIndex", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
158
|
+
{ no: 7, name: "systemLogMaxEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
159
|
+
{ no: 8, name: "systemLogEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
160
|
+
{ no: 9, name: "systemLogSequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
161
|
+
{ no: 10, name: "systemLogIndex", kind: "scalar", T: 13 /* ScalarType.UINT32 */, default: 0 },
|
|
162
|
+
{ no: 11, name: "timeWasSet", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
163
|
+
{ no: 12, name: "isBatteryLow", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
164
|
+
],
|
|
165
|
+
);
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* @generated from message BlueSystemProvisioning
|
|
169
|
+
*/
|
|
170
|
+
export const BlueSystemProvisioning = proto2.makeMessageType(
|
|
171
|
+
"BlueSystemProvisioning",
|
|
172
|
+
() => [
|
|
173
|
+
{ no: 1, name: "hardwareType", kind: "enum", T: proto2.getEnumType(BlueHardwareType), default: BlueHardwareType.TestHardware },
|
|
174
|
+
{ no: 2, name: "deviceId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
175
|
+
{ no: 3, name: "serialNumber", kind: "scalar", T: 9 /* ScalarType.STRING */, default: "00000000000000000000" },
|
|
176
|
+
{ no: 4, name: "terminalPrivateKey", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
|
|
177
|
+
{ no: 5, name: "signaturePublicKey", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
|
|
178
|
+
],
|
|
179
|
+
);
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* @generated from message BlueSystemStatus
|
|
183
|
+
*/
|
|
184
|
+
export const BlueSystemStatus = proto2.makeMessageType(
|
|
185
|
+
"BlueSystemStatus",
|
|
186
|
+
() => [
|
|
187
|
+
{ no: 1, name: "configVersion", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
188
|
+
{ no: 2, name: "deviceId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
189
|
+
{ no: 3, name: "serialNumber", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
190
|
+
{ no: 4, name: "hardwareType", kind: "enum", T: proto2.getEnumType(BlueHardwareType) },
|
|
191
|
+
{ no: 5, name: "batteryLevel", kind: "enum", T: proto2.getEnumType(BlueBatteryLevel) },
|
|
192
|
+
{ no: 6, name: "applicationVersion", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
193
|
+
{ no: 7, name: "localTime", kind: "message", T: BlueLocalTimestamp },
|
|
194
|
+
{ no: 8, name: "settings", kind: "message", T: BlueSystemSettings },
|
|
195
|
+
{ no: 9, name: "blacklistEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
196
|
+
{ no: 10, name: "eventLogEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
197
|
+
{ no: 11, name: "eventLogSequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
198
|
+
{ no: 12, name: "systemLogEntriesCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
199
|
+
{ no: 13, name: "systemLogSequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
200
|
+
{ no: 14, name: "lock", kind: "message", T: BlueLockStatus, opt: true },
|
|
201
|
+
],
|
|
202
|
+
);
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* @generated from message BlueSystemLogQuery
|
|
206
|
+
*/
|
|
207
|
+
export const BlueSystemLogQuery = proto2.makeMessageType(
|
|
208
|
+
"BlueSystemLogQuery",
|
|
209
|
+
() => [
|
|
210
|
+
{ no: 1, name: "maxCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
211
|
+
{ no: 2, name: "sequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, oneof: "start" },
|
|
212
|
+
{ no: 3, name: "fromHead", kind: "scalar", T: 8 /* ScalarType.BOOL */, oneof: "start" },
|
|
213
|
+
],
|
|
214
|
+
);
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* @generated from message BlueSystemLogEntry
|
|
218
|
+
*/
|
|
219
|
+
export const BlueSystemLogEntry = proto2.makeMessageType(
|
|
220
|
+
"BlueSystemLogEntry",
|
|
221
|
+
() => [
|
|
222
|
+
{ no: 1, name: "sequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
223
|
+
{ no: 2, name: "time", kind: "message", T: BlueLocalTimestamp },
|
|
224
|
+
{ no: 3, name: "severity", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
225
|
+
{ no: 4, name: "line", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
226
|
+
{ no: 5, name: "file", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
227
|
+
{ no: 6, name: "message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
228
|
+
],
|
|
229
|
+
);
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* @generated from message BlueSystemLogResult
|
|
233
|
+
*/
|
|
234
|
+
export const BlueSystemLogResult = proto2.makeMessageType(
|
|
235
|
+
"BlueSystemLogResult",
|
|
236
|
+
() => [
|
|
237
|
+
{ no: 1, name: "entries", kind: "message", T: BlueSystemLogEntry, repeated: true },
|
|
238
|
+
],
|
|
239
|
+
);
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* @generated from message BlueEventLogQuery
|
|
243
|
+
*/
|
|
244
|
+
export const BlueEventLogQuery = proto2.makeMessageType(
|
|
245
|
+
"BlueEventLogQuery",
|
|
246
|
+
() => [
|
|
247
|
+
{ no: 1, name: "maxCount", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
248
|
+
{ no: 2, name: "sequenceId", kind: "scalar", T: 13 /* ScalarType.UINT32 */, oneof: "start" },
|
|
249
|
+
{ no: 3, name: "fromHead", kind: "scalar", T: 8 /* ScalarType.BOOL */, oneof: "start" },
|
|
250
|
+
],
|
|
251
|
+
);
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* @generated from message BlueEventLogResult
|
|
255
|
+
*/
|
|
256
|
+
export const BlueEventLogResult = proto2.makeMessageType(
|
|
257
|
+
"BlueEventLogResult",
|
|
258
|
+
() => [
|
|
259
|
+
{ no: 1, name: "events", kind: "message", T: BlueEvent, repeated: true },
|
|
260
|
+
],
|
|
261
|
+
);
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* @generated from message BlueBlacklistEntries
|
|
265
|
+
*/
|
|
266
|
+
export const BlueBlacklistEntries = proto2.makeMessageType(
|
|
267
|
+
"BlueBlacklistEntries",
|
|
268
|
+
() => [
|
|
269
|
+
{ no: 1, name: "entries", kind: "message", T: BlueBlacklistEntry, repeated: true },
|
|
270
|
+
],
|
|
271
|
+
);
|
|
272
|
+
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
/* Automatically generated nanopb constant definitions */
|
|
2
|
+
/* Generated by nanopb-0.4.8-dev */
|
|
3
|
+
|
|
4
|
+
#include "BlueCore.pb.h"
|
|
5
|
+
#if PB_PROTO_HEADER_VERSION != 40
|
|
6
|
+
#error Regenerate this file with the current version of nanopb generator.
|
|
7
|
+
#endif
|
|
8
|
+
|
|
9
|
+
PB_BIND(BLUESHAREDDEMODATA, BlueSharedDemoData_t, 2)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
PB_BIND(BLUEVERSIONINFO, BlueVersionInfo_t, AUTO)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
PB_BIND(BLUELOCALTIMESTAMP, BlueLocalTimestamp_t, AUTO)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
PB_BIND(BLUELOCALTIMEPERIOD, BlueLocalTimeperiod_t, AUTO)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
PB_BIND(BLUELOCALTIMESCHEDULE, BlueLocalTimeSchedule_t, AUTO)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
PB_BIND(BLUECREDENTIALID, BlueCredentialId_t, AUTO)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
PB_BIND(BLUEBLACKLISTENTRY, BlueBlacklistEntry_t, AUTO)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
PB_BIND(BLUEBLEMANUFACTURERINFO, BlueBleManufacturerInfo_t, AUTO)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
PB_BIND(BLUEBLEADVERTISEMENTINFO, BlueBleAdvertisementInfo_t, AUTO)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
PB_BIND(BLUEEVENT, BlueEvent_t, AUTO)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
PB_BIND(BLUESPHANDSHAKE, BlueSPHandshake_t, AUTO)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
PB_BIND(BLUESPHANDSHAKEREPLY, BlueSPHandshakeReply_t, AUTO)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
PB_BIND(BLUESPDATACOMMAND, BlueSPDataCommand_t, 2)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
PB_BIND(BLUESPDATA, BlueSPData_t, 2)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
PB_BIND(BLUESPRESULT, BlueSPResult_t, 2)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
PB_BIND(BLUEOSSACCESSRESULT, BlueOssAccessResult_t, AUTO)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
PB_BIND(BLUEOSSSIDVERSION, BlueOssSidVersion_t, AUTO)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
PB_BIND(BLUEOSSSIDCREDENTIALTYPEOSS, BlueOssSidCredentialTypeOss_t, AUTO)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
PB_BIND(BLUEOSSSIDCREDENTIALTYPEPROPRIETARY, BlueOssSidCredentialTypeProprietary_t, AUTO)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
PB_BIND(BLUEOSSSIDCREDENTIALTYPE, BlueOssSidCredentialType_t, AUTO)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
PB_BIND(BLUEOSSSIDFILEINFO, BlueOssSidFileInfo_t, AUTO)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
PB_BIND(BLUEOSSSIDCONFIGURATION, BlueOssSidConfiguration_t, AUTO)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
PB_BIND(BLUEOSSSIDSTORAGEPROFILE, BlueOssSidStorageProfile_t, AUTO)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
PB_BIND(BLUEOSSSIDPROVISIONINGCONFIGURATION, BlueOssSidProvisioningConfiguration_t, AUTO)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
PB_BIND(BLUEOSSSIDPROVISIONINGDATA, BlueOssSidProvisioningData_t, AUTO)
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
PB_BIND(BLUEOSSSIDMOBILE, BlueOssSidMobile_t, AUTO)
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
PB_BIND(BLUEOSSSIDMOBILEPROVISIONINGCONFIGURATION, BlueOssSidMobileProvisioningConfiguration_t, AUTO)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
PB_BIND(BLUEOSSSIDMIFAREDESFIREPROVISIONINGCONFIGURATION, BlueOssSidMifareDesfireProvisioningConfiguration_t, AUTO)
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
PB_BIND(BLUEOSSSIDMIFAREDESFIRECONFIGURATION, BlueOssSidMifareDesfireConfiguration_t, AUTO)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
PB_BIND(BLUEOSSSIDSETTINGS, BlueOssSidSettings_t, AUTO)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
PB_BIND(BLUEOSSSOVERSION, BlueOssSoVersion_t, AUTO)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
PB_BIND(BLUEOSSSOCREDENTIALTYPEOSS, BlueOssSoCredentialTypeOss_t, AUTO)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
PB_BIND(BLUEOSSSOCREDENTIALTYPEPROPRIETARY, BlueOssSoCredentialTypeProprietary_t, AUTO)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
PB_BIND(BLUEOSSSOCREDENTIALTYPE, BlueOssSoCredentialType_t, AUTO)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
PB_BIND(BLUEOSSSODTSCHEDULEDAY, BlueOssSoDTScheduleDay_t, AUTO)
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
PB_BIND(BLUEOSSSODTSCHEDULE, BlueOssSoDTSchedule_t, 2)
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
PB_BIND(BLUEOSSSODOORINFO, BlueOssSoDoorInfo_t, AUTO)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
PB_BIND(BLUEOSSSOEVENT, BlueOssSoEvent_t, AUTO)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
PB_BIND(BLUEOSSSOEXTFEATURE, BlueOssSoExtFeature_t, AUTO)
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
PB_BIND(BLUEOSSSOEXTFEATURE_VALIDITYSTART, BlueOssSoExtFeature_ValidityStart_t, AUTO)
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
PB_BIND(BLUEOSSSOFILEINFO, BlueOssSoFileInfo_t, AUTO)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
PB_BIND(BLUEOSSSOFILEDATA, BlueOssSoFileData_t, 4)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
PB_BIND(BLUEOSSSOFILEEVENT, BlueOssSoFileEvent_t, 4)
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
PB_BIND(BLUEOSSSOFILEBLACKLIST, BlueOssSoFileBlacklist_t, 4)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
PB_BIND(BLUEOSSSOFILECUSTOMEREXTENSIONS, BlueOssSoFileCustomerExtensions_t, 2)
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
PB_BIND(BLUEOSSSOCONFIGURATION, BlueOssSoConfiguration_t, 4)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
PB_BIND(BLUEOSSSOSTORAGEPROFILE, BlueOssSoStorageProfile_t, AUTO)
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
PB_BIND(BLUEOSSSOPROVISIONINGCONFIGURATION, BlueOssSoProvisioningConfiguration_t, AUTO)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
PB_BIND(BLUEOSSSOPROVISIONINGDATA, BlueOssSoProvisioningData_t, AUTO)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
PB_BIND(BLUEOSSSOMOBILE, BlueOssSoMobile_t, 2)
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
PB_BIND(BLUEOSSSOMOBILEPROVISIONINGCONFIGURATION, BlueOssSoMobileProvisioningConfiguration_t, AUTO)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
PB_BIND(BLUEOSSSOMIFAREDESFIREPROVISIONINGCONFIGURATION, BlueOssSoMifareDesfireProvisioningConfiguration_t, AUTO)
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
PB_BIND(BLUEOSSSOMIFAREDESFIRECONFIGURATION, BlueOssSoMifareDesfireConfiguration_t, AUTO)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
PB_BIND(BLUEOSSSOSETTINGS, BlueOssSoSettings_t, AUTO)
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
PB_BIND(_BLUETESTENCODEDECODE, _BlueTestEncodeDecode_t, AUTO)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|