simplejsble 0.0.29 → 0.0.31
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/NitroSimplejsble.podspec +1 -1
- package/VERSION +1 -1
- package/dependencies/external/kvn/kvn_bytearray.h +7 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +2 -0
- package/lib/specs/Adapter.nitro.d.ts +10 -0
- package/lib/specs/Adapter.nitro.d.ts.map +1 -0
- package/lib/specs/Adapter.nitro.js +1 -0
- package/package.json +2 -2
- package/simpleble/CMakeLists.txt +1 -6
- package/simpleble/src/backends/dongl/AdapterDongl.cpp +10 -143
- package/simpleble/src/backends/dongl/AdapterDongl.h +0 -1
- package/simpleble/src/backends/dongl/PeripheralDongl.cpp +120 -118
- package/simpleble/src/backends/dongl/PeripheralDongl.h +9 -2
- package/simpleble/src/backends/dongl/protocol/d2h.pb.h +9 -26
- package/simpleble/src/backends/dongl/protocol/h2d.pb.h +2 -12
- package/simpleble/src/backends/dongl/serial/Protocol.cpp +1 -755
- package/simpleble/src/backends/dongl/serial/Protocol.h +0 -75
- package/simpleble/test/src/test_bytearray.cpp +7 -0
- package/simpleble/src/backends/dongl/protocol/softdevice.pb.c +0 -18
- package/simpleble/src/backends/dongl/protocol/softdevice.pb.h +0 -815
- package/simpleble/src/backends/dongl/protocol/softdevice_gap.pb.c +0 -339
- package/simpleble/src/backends/dongl/protocol/softdevice_gap.pb.h +0 -2086
- package/simpleble/src/backends/dongl/protocol/softdevice_gattc.pb.c +0 -114
- package/simpleble/src/backends/dongl/protocol/softdevice_gattc.pb.h +0 -772
- package/simpleble/src/backends/dongl/protocol/softdevice_gatts.pb.c +0 -117
- package/simpleble/src/backends/dongl/protocol/softdevice_gatts.pb.h +0 -766
- package/simpleble/src/backends/dongl/protocol/softdevice_types.pb.c +0 -207
- package/simpleble/src/backends/dongl/protocol/softdevice_types.pb.h +0 -1686
|
@@ -1,2086 +0,0 @@
|
|
|
1
|
-
/* Automatically generated nanopb header */
|
|
2
|
-
/* Generated by nanopb-0.4.9.1 */
|
|
3
|
-
|
|
4
|
-
#ifndef PB_SD_SOFTDEVICE_GAP_PB_H_INCLUDED
|
|
5
|
-
#define PB_SD_SOFTDEVICE_GAP_PB_H_INCLUDED
|
|
6
|
-
#include "nanopb/pb.h"
|
|
7
|
-
#include "protocol/softdevice_types.pb.h"
|
|
8
|
-
|
|
9
|
-
#if PB_PROTO_HEADER_VERSION != 40
|
|
10
|
-
#error Regenerate this file with the current version of nanopb generator.
|
|
11
|
-
#endif
|
|
12
|
-
|
|
13
|
-
/* Struct definitions */
|
|
14
|
-
/* SoftDevice GAP command messages */
|
|
15
|
-
typedef struct _sd_GapAddrSetCmd {
|
|
16
|
-
bool has_addr;
|
|
17
|
-
sd_types_BleGapAddr addr;
|
|
18
|
-
} sd_GapAddrSetCmd;
|
|
19
|
-
|
|
20
|
-
typedef struct _sd_GapAddrGetCmd { /* No input parameters */
|
|
21
|
-
char dummy_field;
|
|
22
|
-
} sd_GapAddrGetCmd;
|
|
23
|
-
|
|
24
|
-
typedef struct _sd_GapWhitelistSetCmd {
|
|
25
|
-
pb_size_t wl_addrs_count;
|
|
26
|
-
sd_types_BleGapAddr wl_addrs[8]; /* BLE_GAP_WHITELIST_ADDR_MAX_COUNT = 8 */
|
|
27
|
-
uint8_t len;
|
|
28
|
-
} sd_GapWhitelistSetCmd;
|
|
29
|
-
|
|
30
|
-
typedef struct _sd_GapDeviceIdentitiesSetCmd {
|
|
31
|
-
pb_size_t id_keys_count;
|
|
32
|
-
sd_types_BleGapIdKey id_keys[8]; /* BLE_GAP_DEVICE_IDENTITIES_MAX_COUNT = 8 */
|
|
33
|
-
pb_size_t local_irks_count;
|
|
34
|
-
sd_types_BleGapIrk local_irks[8]; /* BLE_GAP_DEVICE_IDENTITIES_MAX_COUNT = 8 */
|
|
35
|
-
uint8_t len;
|
|
36
|
-
} sd_GapDeviceIdentitiesSetCmd;
|
|
37
|
-
|
|
38
|
-
typedef struct _sd_GapPrivacySetCmd {
|
|
39
|
-
bool has_privacy_params;
|
|
40
|
-
sd_types_BleGapPrivacyParams privacy_params;
|
|
41
|
-
} sd_GapPrivacySetCmd;
|
|
42
|
-
|
|
43
|
-
typedef struct _sd_GapPrivacyGetCmd { /* No input parameters */
|
|
44
|
-
char dummy_field;
|
|
45
|
-
} sd_GapPrivacyGetCmd;
|
|
46
|
-
|
|
47
|
-
typedef struct _sd_GapAdvSetConfigureCmd {
|
|
48
|
-
uint8_t adv_handle; /* Input/output */
|
|
49
|
-
bool has_adv_data;
|
|
50
|
-
sd_types_BleGapAdvData adv_data; /* Optional */
|
|
51
|
-
bool has_adv_params;
|
|
52
|
-
sd_types_BleGapAdvParams adv_params; /* Optional */
|
|
53
|
-
} sd_GapAdvSetConfigureCmd;
|
|
54
|
-
|
|
55
|
-
typedef struct _sd_GapAdvStartCmd {
|
|
56
|
-
uint8_t adv_handle;
|
|
57
|
-
uint8_t conn_cfg_tag;
|
|
58
|
-
} sd_GapAdvStartCmd;
|
|
59
|
-
|
|
60
|
-
typedef struct _sd_GapAdvStopCmd {
|
|
61
|
-
uint8_t adv_handle;
|
|
62
|
-
} sd_GapAdvStopCmd;
|
|
63
|
-
|
|
64
|
-
typedef struct _sd_GapConnParamUpdateCmd {
|
|
65
|
-
uint16_t conn_handle;
|
|
66
|
-
bool has_conn_params;
|
|
67
|
-
sd_types_BleGapConnParams conn_params; /* Optional */
|
|
68
|
-
} sd_GapConnParamUpdateCmd;
|
|
69
|
-
|
|
70
|
-
typedef struct _sd_GapDisconnectCmd {
|
|
71
|
-
uint16_t conn_handle;
|
|
72
|
-
uint8_t hci_ret_code_code;
|
|
73
|
-
} sd_GapDisconnectCmd;
|
|
74
|
-
|
|
75
|
-
typedef struct _sd_GapTxPowerSetCmd {
|
|
76
|
-
uint8_t role;
|
|
77
|
-
uint16_t handle;
|
|
78
|
-
int8_t tx_power;
|
|
79
|
-
} sd_GapTxPowerSetCmd;
|
|
80
|
-
|
|
81
|
-
typedef struct _sd_GapAppearanceSetCmd {
|
|
82
|
-
uint16_t appearance;
|
|
83
|
-
} sd_GapAppearanceSetCmd;
|
|
84
|
-
|
|
85
|
-
typedef struct _sd_GapAppearanceGetCmd { /* No input parameters */
|
|
86
|
-
char dummy_field;
|
|
87
|
-
} sd_GapAppearanceGetCmd;
|
|
88
|
-
|
|
89
|
-
typedef struct _sd_GapPpcpSetCmd {
|
|
90
|
-
bool has_conn_params;
|
|
91
|
-
sd_types_BleGapConnParams conn_params;
|
|
92
|
-
} sd_GapPpcpSetCmd;
|
|
93
|
-
|
|
94
|
-
typedef struct _sd_GapPpcpGetCmd { /* No input parameters */
|
|
95
|
-
char dummy_field;
|
|
96
|
-
} sd_GapPpcpGetCmd;
|
|
97
|
-
|
|
98
|
-
typedef PB_BYTES_ARRAY_T(248) sd_GapDeviceNameSetCmd_dev_name_t;
|
|
99
|
-
typedef struct _sd_GapDeviceNameSetCmd {
|
|
100
|
-
bool has_write_perm;
|
|
101
|
-
sd_types_BleGapConnSecMode write_perm;
|
|
102
|
-
sd_GapDeviceNameSetCmd_dev_name_t dev_name; /* BLE_GAP_DEVNAME_MAX_LEN = 248 */
|
|
103
|
-
uint16_t len;
|
|
104
|
-
} sd_GapDeviceNameSetCmd;
|
|
105
|
-
|
|
106
|
-
typedef struct _sd_GapDeviceNameGetCmd { /* No input parameters */
|
|
107
|
-
char dummy_field;
|
|
108
|
-
} sd_GapDeviceNameGetCmd;
|
|
109
|
-
|
|
110
|
-
typedef struct _sd_GapAuthenticateCmd {
|
|
111
|
-
uint16_t conn_handle;
|
|
112
|
-
bool has_sec_params;
|
|
113
|
-
sd_types_BleGapSecParams sec_params; /* Optional */
|
|
114
|
-
} sd_GapAuthenticateCmd;
|
|
115
|
-
|
|
116
|
-
typedef struct _sd_GapSecParamsReplyCmd {
|
|
117
|
-
uint16_t conn_handle;
|
|
118
|
-
sd_types_BleGapSecStatus sec_ret_code;
|
|
119
|
-
bool has_sec_params;
|
|
120
|
-
sd_types_BleGapSecParams sec_params; /* Optional */
|
|
121
|
-
bool has_sec_keyset;
|
|
122
|
-
sd_types_BleGapSecKeyset sec_keyset;
|
|
123
|
-
} sd_GapSecParamsReplyCmd;
|
|
124
|
-
|
|
125
|
-
typedef PB_BYTES_ARRAY_T(16) sd_GapAuthKeyReplyCmd_key_t;
|
|
126
|
-
typedef struct _sd_GapAuthKeyReplyCmd {
|
|
127
|
-
uint16_t conn_handle;
|
|
128
|
-
sd_types_BleGapAuthKeyType key_type;
|
|
129
|
-
sd_GapAuthKeyReplyCmd_key_t key; /* Max for OOB key */
|
|
130
|
-
} sd_GapAuthKeyReplyCmd;
|
|
131
|
-
|
|
132
|
-
typedef struct _sd_GapLescDhkeyReplyCmd {
|
|
133
|
-
uint16_t conn_handle;
|
|
134
|
-
bool has_dhkey;
|
|
135
|
-
sd_types_BleGapLescDhkey dhkey;
|
|
136
|
-
} sd_GapLescDhkeyReplyCmd;
|
|
137
|
-
|
|
138
|
-
typedef struct _sd_GapKeypressNotifyCmd {
|
|
139
|
-
uint16_t conn_handle;
|
|
140
|
-
sd_types_BleGapKpNotType kp_not;
|
|
141
|
-
} sd_GapKeypressNotifyCmd;
|
|
142
|
-
|
|
143
|
-
typedef struct _sd_GapLescOobDataGetCmd {
|
|
144
|
-
uint16_t conn_handle;
|
|
145
|
-
bool has_pk_own;
|
|
146
|
-
sd_types_BleGapLescP256Pk pk_own;
|
|
147
|
-
} sd_GapLescOobDataGetCmd;
|
|
148
|
-
|
|
149
|
-
typedef struct _sd_GapLescOobDataSetCmd {
|
|
150
|
-
uint16_t conn_handle;
|
|
151
|
-
bool has_oobd_own;
|
|
152
|
-
sd_types_BleGapLescOobData oobd_own; /* Optional */
|
|
153
|
-
bool has_oobd_peer;
|
|
154
|
-
sd_types_BleGapLescOobData oobd_peer; /* Optional */
|
|
155
|
-
} sd_GapLescOobDataSetCmd;
|
|
156
|
-
|
|
157
|
-
typedef struct _sd_GapEncryptCmd {
|
|
158
|
-
uint16_t conn_handle;
|
|
159
|
-
bool has_master_id;
|
|
160
|
-
sd_types_BleGapMasterId master_id;
|
|
161
|
-
bool has_enc_info;
|
|
162
|
-
sd_types_BleGapEncInfo enc_info;
|
|
163
|
-
} sd_GapEncryptCmd;
|
|
164
|
-
|
|
165
|
-
typedef struct _sd_GapSecInfoReplyCmd {
|
|
166
|
-
uint16_t conn_handle;
|
|
167
|
-
bool has_enc_info;
|
|
168
|
-
sd_types_BleGapEncInfo enc_info; /* Optional */
|
|
169
|
-
bool has_id_info;
|
|
170
|
-
sd_types_BleGapIrk id_info; /* Optional */
|
|
171
|
-
bool has_sign_info;
|
|
172
|
-
sd_types_BleGapSignInfo sign_info; /* Optional */
|
|
173
|
-
} sd_GapSecInfoReplyCmd;
|
|
174
|
-
|
|
175
|
-
typedef struct _sd_GapConnSecGetCmd {
|
|
176
|
-
uint16_t conn_handle;
|
|
177
|
-
} sd_GapConnSecGetCmd;
|
|
178
|
-
|
|
179
|
-
typedef struct _sd_GapRssiStartCmd {
|
|
180
|
-
uint16_t conn_handle;
|
|
181
|
-
uint8_t threshold_dbm;
|
|
182
|
-
uint8_t skip_count;
|
|
183
|
-
} sd_GapRssiStartCmd;
|
|
184
|
-
|
|
185
|
-
typedef struct _sd_GapRssiStopCmd {
|
|
186
|
-
uint16_t conn_handle;
|
|
187
|
-
} sd_GapRssiStopCmd;
|
|
188
|
-
|
|
189
|
-
typedef struct _sd_GapScanStartCmd {
|
|
190
|
-
bool has_scan_params;
|
|
191
|
-
sd_types_BleGapScanParams scan_params; /* Optional */
|
|
192
|
-
} sd_GapScanStartCmd;
|
|
193
|
-
|
|
194
|
-
typedef struct _sd_GapScanStopCmd { /* No input parameters */
|
|
195
|
-
char dummy_field;
|
|
196
|
-
} sd_GapScanStopCmd;
|
|
197
|
-
|
|
198
|
-
typedef struct _sd_GapConnectCmd {
|
|
199
|
-
bool has_peer_addr;
|
|
200
|
-
sd_types_BleGapAddr peer_addr;
|
|
201
|
-
bool has_scan_params;
|
|
202
|
-
sd_types_BleGapScanParams scan_params;
|
|
203
|
-
bool has_conn_params;
|
|
204
|
-
sd_types_BleGapConnParams conn_params;
|
|
205
|
-
uint8_t conn_cfg_tag;
|
|
206
|
-
} sd_GapConnectCmd;
|
|
207
|
-
|
|
208
|
-
typedef struct _sd_GapConnectCancelCmd { /* No input parameters */
|
|
209
|
-
char dummy_field;
|
|
210
|
-
} sd_GapConnectCancelCmd;
|
|
211
|
-
|
|
212
|
-
typedef struct _sd_GapRssiGetCmd {
|
|
213
|
-
uint16_t conn_handle;
|
|
214
|
-
} sd_GapRssiGetCmd;
|
|
215
|
-
|
|
216
|
-
typedef struct _sd_BleGapPhysCmd {
|
|
217
|
-
sd_types_BleGapPhy tx_phys;
|
|
218
|
-
sd_types_BleGapPhy rx_phys;
|
|
219
|
-
} sd_BleGapPhysCmd;
|
|
220
|
-
|
|
221
|
-
typedef struct _sd_GapPhyUpdateCmd {
|
|
222
|
-
uint16_t conn_handle;
|
|
223
|
-
bool has_phys;
|
|
224
|
-
sd_BleGapPhysCmd phys;
|
|
225
|
-
} sd_GapPhyUpdateCmd;
|
|
226
|
-
|
|
227
|
-
typedef struct _sd_GapDataLengthUpdateCmd {
|
|
228
|
-
uint16_t conn_handle;
|
|
229
|
-
bool has_dl_params;
|
|
230
|
-
sd_types_BleGapDataLengthParams dl_params; /* Optional */
|
|
231
|
-
bool has_dl_limitation;
|
|
232
|
-
sd_types_BleGapDataLengthLimitation dl_limitation; /* Optional */
|
|
233
|
-
} sd_GapDataLengthUpdateCmd;
|
|
234
|
-
|
|
235
|
-
typedef struct _sd_GapQosChannelSurveyStartCmd {
|
|
236
|
-
uint32_t interval_us;
|
|
237
|
-
} sd_GapQosChannelSurveyStartCmd;
|
|
238
|
-
|
|
239
|
-
typedef struct _sd_GapQosChannelSurveyStopCmd { /* No input parameters */
|
|
240
|
-
char dummy_field;
|
|
241
|
-
} sd_GapQosChannelSurveyStopCmd;
|
|
242
|
-
|
|
243
|
-
typedef struct _sd_GapAdvAddrGetCmd {
|
|
244
|
-
uint8_t adv_handle;
|
|
245
|
-
} sd_GapAdvAddrGetCmd;
|
|
246
|
-
|
|
247
|
-
typedef struct _sd_GapNextConnEvtCounterGetCmd {
|
|
248
|
-
uint16_t conn_handle;
|
|
249
|
-
} sd_GapNextConnEvtCounterGetCmd;
|
|
250
|
-
|
|
251
|
-
typedef struct _sd_GapConnEvtTriggerStartCmd {
|
|
252
|
-
uint16_t conn_handle;
|
|
253
|
-
bool has_params;
|
|
254
|
-
sd_types_BleGapConnEventTrigger params;
|
|
255
|
-
} sd_GapConnEvtTriggerStartCmd;
|
|
256
|
-
|
|
257
|
-
typedef struct _sd_GapConnEvtTriggerStopCmd {
|
|
258
|
-
uint16_t conn_handle;
|
|
259
|
-
} sd_GapConnEvtTriggerStopCmd;
|
|
260
|
-
|
|
261
|
-
/* SoftDevice GAP response messages */
|
|
262
|
-
typedef struct _sd_GapAddrSetRsp {
|
|
263
|
-
uint32_t ret_code;
|
|
264
|
-
} sd_GapAddrSetRsp;
|
|
265
|
-
|
|
266
|
-
typedef struct _sd_GapAddrGetRsp {
|
|
267
|
-
uint32_t ret_code;
|
|
268
|
-
bool has_addr;
|
|
269
|
-
sd_types_BleGapAddr addr;
|
|
270
|
-
} sd_GapAddrGetRsp;
|
|
271
|
-
|
|
272
|
-
typedef struct _sd_GapWhitelistSetRsp {
|
|
273
|
-
uint32_t ret_code;
|
|
274
|
-
} sd_GapWhitelistSetRsp;
|
|
275
|
-
|
|
276
|
-
typedef struct _sd_GapDeviceIdentitiesSetRsp {
|
|
277
|
-
uint32_t ret_code;
|
|
278
|
-
} sd_GapDeviceIdentitiesSetRsp;
|
|
279
|
-
|
|
280
|
-
typedef struct _sd_GapPrivacySetRsp {
|
|
281
|
-
uint32_t ret_code;
|
|
282
|
-
} sd_GapPrivacySetRsp;
|
|
283
|
-
|
|
284
|
-
typedef struct _sd_GapPrivacyGetRsp {
|
|
285
|
-
uint32_t ret_code;
|
|
286
|
-
bool has_privacy_params;
|
|
287
|
-
sd_types_BleGapPrivacyParams privacy_params;
|
|
288
|
-
} sd_GapPrivacyGetRsp;
|
|
289
|
-
|
|
290
|
-
typedef struct _sd_GapAdvSetConfigureRsp {
|
|
291
|
-
uint32_t ret_code;
|
|
292
|
-
uint8_t adv_handle;
|
|
293
|
-
} sd_GapAdvSetConfigureRsp;
|
|
294
|
-
|
|
295
|
-
typedef struct _sd_GapAdvStartRsp {
|
|
296
|
-
uint32_t ret_code;
|
|
297
|
-
} sd_GapAdvStartRsp;
|
|
298
|
-
|
|
299
|
-
typedef struct _sd_GapAdvStopRsp {
|
|
300
|
-
uint32_t ret_code;
|
|
301
|
-
} sd_GapAdvStopRsp;
|
|
302
|
-
|
|
303
|
-
typedef struct _sd_GapConnParamUpdateRsp {
|
|
304
|
-
uint32_t ret_code;
|
|
305
|
-
} sd_GapConnParamUpdateRsp;
|
|
306
|
-
|
|
307
|
-
typedef struct _sd_GapDisconnectRsp {
|
|
308
|
-
uint32_t ret_code;
|
|
309
|
-
} sd_GapDisconnectRsp;
|
|
310
|
-
|
|
311
|
-
typedef struct _sd_GapTxPowerSetRsp {
|
|
312
|
-
uint32_t ret_code;
|
|
313
|
-
} sd_GapTxPowerSetRsp;
|
|
314
|
-
|
|
315
|
-
typedef struct _sd_GapAppearanceSetRsp {
|
|
316
|
-
uint32_t ret_code;
|
|
317
|
-
} sd_GapAppearanceSetRsp;
|
|
318
|
-
|
|
319
|
-
typedef struct _sd_GapAppearanceGetRsp {
|
|
320
|
-
uint32_t ret_code;
|
|
321
|
-
uint16_t appearance;
|
|
322
|
-
} sd_GapAppearanceGetRsp;
|
|
323
|
-
|
|
324
|
-
typedef struct _sd_GapPpcpSetRsp {
|
|
325
|
-
uint32_t ret_code;
|
|
326
|
-
} sd_GapPpcpSetRsp;
|
|
327
|
-
|
|
328
|
-
typedef struct _sd_GapPpcpGetRsp {
|
|
329
|
-
uint32_t ret_code;
|
|
330
|
-
bool has_conn_params;
|
|
331
|
-
sd_types_BleGapConnParams conn_params;
|
|
332
|
-
} sd_GapPpcpGetRsp;
|
|
333
|
-
|
|
334
|
-
typedef struct _sd_GapDeviceNameSetRsp {
|
|
335
|
-
uint32_t ret_code;
|
|
336
|
-
} sd_GapDeviceNameSetRsp;
|
|
337
|
-
|
|
338
|
-
typedef PB_BYTES_ARRAY_T(248) sd_GapDeviceNameGetRsp_dev_name_t;
|
|
339
|
-
typedef struct _sd_GapDeviceNameGetRsp {
|
|
340
|
-
uint32_t ret_code;
|
|
341
|
-
sd_GapDeviceNameGetRsp_dev_name_t dev_name; /* BLE_GAP_DEVNAME_MAX_LEN = 248 */
|
|
342
|
-
uint16_t len;
|
|
343
|
-
} sd_GapDeviceNameGetRsp;
|
|
344
|
-
|
|
345
|
-
typedef struct _sd_GapAuthenticateRsp {
|
|
346
|
-
uint32_t ret_code;
|
|
347
|
-
} sd_GapAuthenticateRsp;
|
|
348
|
-
|
|
349
|
-
typedef struct _sd_GapSecParamsReplyRsp {
|
|
350
|
-
uint32_t ret_code;
|
|
351
|
-
} sd_GapSecParamsReplyRsp;
|
|
352
|
-
|
|
353
|
-
typedef struct _sd_GapAuthKeyReplyRsp {
|
|
354
|
-
uint32_t ret_code;
|
|
355
|
-
} sd_GapAuthKeyReplyRsp;
|
|
356
|
-
|
|
357
|
-
typedef struct _sd_GapLescDhkeyReplyRsp {
|
|
358
|
-
uint32_t ret_code;
|
|
359
|
-
} sd_GapLescDhkeyReplyRsp;
|
|
360
|
-
|
|
361
|
-
typedef struct _sd_GapKeypressNotifyRsp {
|
|
362
|
-
uint32_t ret_code;
|
|
363
|
-
} sd_GapKeypressNotifyRsp;
|
|
364
|
-
|
|
365
|
-
typedef struct _sd_GapLescOobDataGetRsp {
|
|
366
|
-
uint32_t ret_code;
|
|
367
|
-
bool has_oobd_own;
|
|
368
|
-
sd_types_BleGapLescOobData oobd_own;
|
|
369
|
-
} sd_GapLescOobDataGetRsp;
|
|
370
|
-
|
|
371
|
-
typedef struct _sd_GapLescOobDataSetRsp {
|
|
372
|
-
uint32_t ret_code;
|
|
373
|
-
} sd_GapLescOobDataSetRsp;
|
|
374
|
-
|
|
375
|
-
typedef struct _sd_GapEncryptRsp {
|
|
376
|
-
uint32_t ret_code;
|
|
377
|
-
} sd_GapEncryptRsp;
|
|
378
|
-
|
|
379
|
-
typedef struct _sd_GapSecInfoReplyRsp {
|
|
380
|
-
uint32_t ret_code;
|
|
381
|
-
} sd_GapSecInfoReplyRsp;
|
|
382
|
-
|
|
383
|
-
typedef struct _sd_GapConnSecGetRsp {
|
|
384
|
-
uint32_t ret_code;
|
|
385
|
-
bool has_conn_sec;
|
|
386
|
-
sd_types_BleGapConnSec conn_sec;
|
|
387
|
-
} sd_GapConnSecGetRsp;
|
|
388
|
-
|
|
389
|
-
typedef struct _sd_GapRssiStartRsp {
|
|
390
|
-
uint32_t ret_code;
|
|
391
|
-
} sd_GapRssiStartRsp;
|
|
392
|
-
|
|
393
|
-
typedef struct _sd_GapRssiStopRsp {
|
|
394
|
-
uint32_t ret_code;
|
|
395
|
-
} sd_GapRssiStopRsp;
|
|
396
|
-
|
|
397
|
-
typedef struct _sd_GapScanStartRsp {
|
|
398
|
-
uint32_t ret_code;
|
|
399
|
-
} sd_GapScanStartRsp;
|
|
400
|
-
|
|
401
|
-
typedef struct _sd_GapScanStopRsp {
|
|
402
|
-
uint32_t ret_code;
|
|
403
|
-
} sd_GapScanStopRsp;
|
|
404
|
-
|
|
405
|
-
typedef struct _sd_GapConnectRsp {
|
|
406
|
-
uint32_t ret_code;
|
|
407
|
-
} sd_GapConnectRsp;
|
|
408
|
-
|
|
409
|
-
typedef struct _sd_GapConnectCancelRsp {
|
|
410
|
-
uint32_t ret_code;
|
|
411
|
-
} sd_GapConnectCancelRsp;
|
|
412
|
-
|
|
413
|
-
typedef struct _sd_GapRssiGetRsp {
|
|
414
|
-
uint32_t ret_code;
|
|
415
|
-
int8_t rssi;
|
|
416
|
-
} sd_GapRssiGetRsp;
|
|
417
|
-
|
|
418
|
-
typedef struct _sd_GapPhyUpdateRsp {
|
|
419
|
-
uint32_t ret_code;
|
|
420
|
-
} sd_GapPhyUpdateRsp;
|
|
421
|
-
|
|
422
|
-
typedef struct _sd_GapDataLengthUpdateRsp {
|
|
423
|
-
uint32_t ret_code;
|
|
424
|
-
bool has_dl_params;
|
|
425
|
-
sd_types_BleGapDataLengthParams dl_params; /* Optional */
|
|
426
|
-
bool has_dl_limitation;
|
|
427
|
-
sd_types_BleGapDataLengthLimitation dl_limitation; /* Optional */
|
|
428
|
-
} sd_GapDataLengthUpdateRsp;
|
|
429
|
-
|
|
430
|
-
typedef struct _sd_GapQosChannelSurveyStartRsp {
|
|
431
|
-
uint32_t ret_code;
|
|
432
|
-
} sd_GapQosChannelSurveyStartRsp;
|
|
433
|
-
|
|
434
|
-
typedef struct _sd_GapQosChannelSurveyStopRsp {
|
|
435
|
-
uint32_t ret_code;
|
|
436
|
-
} sd_GapQosChannelSurveyStopRsp;
|
|
437
|
-
|
|
438
|
-
typedef struct _sd_GapAdvAddrGetRsp {
|
|
439
|
-
uint32_t ret_code;
|
|
440
|
-
bool has_addr;
|
|
441
|
-
sd_types_BleGapAddr addr;
|
|
442
|
-
} sd_GapAdvAddrGetRsp;
|
|
443
|
-
|
|
444
|
-
typedef struct _sd_GapNextConnEvtCounterGetRsp {
|
|
445
|
-
uint32_t ret_code;
|
|
446
|
-
uint16_t count;
|
|
447
|
-
} sd_GapNextConnEvtCounterGetRsp;
|
|
448
|
-
|
|
449
|
-
typedef struct _sd_GapConnEvtTriggerStartRsp {
|
|
450
|
-
uint32_t ret_code;
|
|
451
|
-
} sd_GapConnEvtTriggerStartRsp;
|
|
452
|
-
|
|
453
|
-
typedef struct _sd_GapConnEvtTriggerStopRsp {
|
|
454
|
-
uint32_t ret_code;
|
|
455
|
-
} sd_GapConnEvtTriggerStopRsp;
|
|
456
|
-
|
|
457
|
-
/* SoftDevice GAP event messages */
|
|
458
|
-
typedef struct _sd_GapEvtConnected {
|
|
459
|
-
bool has_peer_addr;
|
|
460
|
-
sd_types_BleGapAddr peer_addr;
|
|
461
|
-
uint8_t role;
|
|
462
|
-
bool has_conn_params;
|
|
463
|
-
sd_types_BleGapConnParams conn_params;
|
|
464
|
-
uint8_t adv_handle;
|
|
465
|
-
bool has_adv_data;
|
|
466
|
-
sd_types_BleGapAdvData adv_data;
|
|
467
|
-
} sd_GapEvtConnected;
|
|
468
|
-
|
|
469
|
-
typedef struct _sd_GapEvtDisconnected {
|
|
470
|
-
uint8_t reason;
|
|
471
|
-
} sd_GapEvtDisconnected;
|
|
472
|
-
|
|
473
|
-
typedef struct _sd_GapEvtConnParamUpdate {
|
|
474
|
-
bool has_conn_params;
|
|
475
|
-
sd_types_BleGapConnParams conn_params;
|
|
476
|
-
} sd_GapEvtConnParamUpdate;
|
|
477
|
-
|
|
478
|
-
typedef struct _sd_GapEvtSecParamsRequest {
|
|
479
|
-
bool has_peer_params;
|
|
480
|
-
sd_types_BleGapSecParams peer_params;
|
|
481
|
-
} sd_GapEvtSecParamsRequest;
|
|
482
|
-
|
|
483
|
-
typedef struct _sd_GapEvtSecInfoRequest {
|
|
484
|
-
bool has_peer_addr;
|
|
485
|
-
sd_types_BleGapAddr peer_addr;
|
|
486
|
-
bool has_master_id;
|
|
487
|
-
sd_types_BleGapMasterId master_id;
|
|
488
|
-
uint8_t enc_info; /* 1-bit field */
|
|
489
|
-
uint8_t id_info; /* 1-bit field */
|
|
490
|
-
uint8_t sign_info; /* 1-bit field */
|
|
491
|
-
} sd_GapEvtSecInfoRequest;
|
|
492
|
-
|
|
493
|
-
typedef struct _sd_GapEvtPasskeyDisplay {
|
|
494
|
-
pb_byte_t passkey[6]; /* BLE_GAP_PASSKEY_LEN = 6 */
|
|
495
|
-
bool match_request;
|
|
496
|
-
} sd_GapEvtPasskeyDisplay;
|
|
497
|
-
|
|
498
|
-
typedef struct _sd_GapEvtKeyPressed {
|
|
499
|
-
sd_types_BleGapKpNotType kp_not;
|
|
500
|
-
} sd_GapEvtKeyPressed;
|
|
501
|
-
|
|
502
|
-
typedef struct _sd_GapEvtAuthKeyRequest {
|
|
503
|
-
sd_types_BleGapAuthKeyType key_type;
|
|
504
|
-
} sd_GapEvtAuthKeyRequest;
|
|
505
|
-
|
|
506
|
-
typedef struct _sd_GapEvtLescDhkeyRequest {
|
|
507
|
-
bool has_pk_peer;
|
|
508
|
-
sd_types_BleGapLescP256Pk pk_peer; /* Optional */
|
|
509
|
-
bool oobd_req;
|
|
510
|
-
} sd_GapEvtLescDhkeyRequest;
|
|
511
|
-
|
|
512
|
-
typedef struct _sd_GapEvtAuthStatus {
|
|
513
|
-
sd_types_BleGapSecStatus auth_status;
|
|
514
|
-
uint8_t error_src; /* 2-bit field */
|
|
515
|
-
bool bonded;
|
|
516
|
-
bool lesc;
|
|
517
|
-
bool has_sm1_levels;
|
|
518
|
-
sd_types_BleGapSecLevelsT sm1_levels;
|
|
519
|
-
bool has_sm2_levels;
|
|
520
|
-
sd_types_BleGapSecLevelsT sm2_levels;
|
|
521
|
-
bool has_kdist_own;
|
|
522
|
-
sd_types_BleGapSecKdist kdist_own;
|
|
523
|
-
bool has_kdist_peer;
|
|
524
|
-
sd_types_BleGapSecKdist kdist_peer;
|
|
525
|
-
} sd_GapEvtAuthStatus;
|
|
526
|
-
|
|
527
|
-
typedef struct _sd_GapEvtConnSecUpdate {
|
|
528
|
-
bool has_conn_sec;
|
|
529
|
-
sd_types_BleGapConnSec conn_sec;
|
|
530
|
-
} sd_GapEvtConnSecUpdate;
|
|
531
|
-
|
|
532
|
-
typedef struct _sd_GapEvtTimeout {
|
|
533
|
-
sd_types_BleGapTimeoutSrc src;
|
|
534
|
-
bool has_adv_report_buffer;
|
|
535
|
-
sd_types_BleData adv_report_buffer; /* Optional */
|
|
536
|
-
} sd_GapEvtTimeout;
|
|
537
|
-
|
|
538
|
-
typedef struct _sd_GapEvtRssiChanged {
|
|
539
|
-
int8_t rssi;
|
|
540
|
-
uint8_t ch_index;
|
|
541
|
-
} sd_GapEvtRssiChanged;
|
|
542
|
-
|
|
543
|
-
typedef struct _sd_GapEvtAdvReport {
|
|
544
|
-
bool has_type;
|
|
545
|
-
sd_types_BleGapAdvReportTypeT type;
|
|
546
|
-
bool has_peer_addr;
|
|
547
|
-
sd_types_BleGapAddr peer_addr;
|
|
548
|
-
bool has_direct_addr;
|
|
549
|
-
sd_types_BleGapAddr direct_addr;
|
|
550
|
-
sd_types_BleGapPhy primary_phy;
|
|
551
|
-
sd_types_BleGapPhy secondary_phy;
|
|
552
|
-
int8_t tx_power;
|
|
553
|
-
int8_t rssi;
|
|
554
|
-
uint8_t ch_index;
|
|
555
|
-
uint8_t set_id;
|
|
556
|
-
uint16_t data_id; /* 12-bit field */
|
|
557
|
-
bool has_data;
|
|
558
|
-
sd_types_BleData data;
|
|
559
|
-
bool has_aux_pointer;
|
|
560
|
-
sd_types_BleGapAuxPointer aux_pointer;
|
|
561
|
-
} sd_GapEvtAdvReport;
|
|
562
|
-
|
|
563
|
-
typedef struct _sd_GapEvtSecRequest {
|
|
564
|
-
bool bond;
|
|
565
|
-
bool mitm;
|
|
566
|
-
bool lesc;
|
|
567
|
-
bool keypress;
|
|
568
|
-
} sd_GapEvtSecRequest;
|
|
569
|
-
|
|
570
|
-
typedef struct _sd_GapEvtConnParamUpdateRequest {
|
|
571
|
-
bool has_conn_params;
|
|
572
|
-
sd_types_BleGapConnParams conn_params;
|
|
573
|
-
} sd_GapEvtConnParamUpdateRequest;
|
|
574
|
-
|
|
575
|
-
typedef struct _sd_GapEvtScanReqReport {
|
|
576
|
-
uint8_t adv_handle;
|
|
577
|
-
int8_t rssi;
|
|
578
|
-
bool has_peer_addr;
|
|
579
|
-
sd_types_BleGapAddr peer_addr;
|
|
580
|
-
} sd_GapEvtScanReqReport;
|
|
581
|
-
|
|
582
|
-
typedef struct _sd_GapEvtPhyUpdateRequest {
|
|
583
|
-
sd_types_BleGapPhy tx_phys;
|
|
584
|
-
sd_types_BleGapPhy rx_phys;
|
|
585
|
-
} sd_GapEvtPhyUpdateRequest;
|
|
586
|
-
|
|
587
|
-
typedef struct _sd_GapEvtPhyUpdate {
|
|
588
|
-
uint16_t status; /* BLE_HCI_STATUS_CODES */
|
|
589
|
-
sd_types_BleGapPhy tx_phy;
|
|
590
|
-
sd_types_BleGapPhy rx_phy;
|
|
591
|
-
} sd_GapEvtPhyUpdate;
|
|
592
|
-
|
|
593
|
-
typedef struct _sd_GapEvtDataLengthUpdateRequest {
|
|
594
|
-
bool has_peer_params;
|
|
595
|
-
sd_types_BleGapDataLengthParams peer_params;
|
|
596
|
-
} sd_GapEvtDataLengthUpdateRequest;
|
|
597
|
-
|
|
598
|
-
typedef struct _sd_GapEvtDataLengthUpdate {
|
|
599
|
-
bool has_effective_params;
|
|
600
|
-
sd_types_BleGapDataLengthParams effective_params;
|
|
601
|
-
} sd_GapEvtDataLengthUpdate;
|
|
602
|
-
|
|
603
|
-
typedef struct _sd_GapEvtQosChannelSurveyReport {
|
|
604
|
-
pb_size_t channel_energy_count;
|
|
605
|
-
int32_t channel_energy[40]; /* BLE_GAP_CHANNEL_COUNT = 40 */
|
|
606
|
-
} sd_GapEvtQosChannelSurveyReport;
|
|
607
|
-
|
|
608
|
-
typedef struct _sd_GapEvtAdvSetTerminated {
|
|
609
|
-
sd_types_BleGapAdvSetTerminatedReason reason;
|
|
610
|
-
uint8_t adv_handle;
|
|
611
|
-
uint8_t num_completed_adv_events;
|
|
612
|
-
bool has_adv_data;
|
|
613
|
-
sd_types_BleGapAdvData adv_data;
|
|
614
|
-
} sd_GapEvtAdvSetTerminated;
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
#ifdef __cplusplus
|
|
618
|
-
extern "C" {
|
|
619
|
-
#endif
|
|
620
|
-
|
|
621
|
-
/* Initializer values for message structs */
|
|
622
|
-
#define sd_GapAddrSetCmd_init_default {false, sd_types_BleGapAddr_init_default}
|
|
623
|
-
#define sd_GapAddrGetCmd_init_default {0}
|
|
624
|
-
#define sd_GapWhitelistSetCmd_init_default {0, {sd_types_BleGapAddr_init_default, sd_types_BleGapAddr_init_default, sd_types_BleGapAddr_init_default, sd_types_BleGapAddr_init_default, sd_types_BleGapAddr_init_default, sd_types_BleGapAddr_init_default, sd_types_BleGapAddr_init_default, sd_types_BleGapAddr_init_default}, 0}
|
|
625
|
-
#define sd_GapDeviceIdentitiesSetCmd_init_default {0, {sd_types_BleGapIdKey_init_default, sd_types_BleGapIdKey_init_default, sd_types_BleGapIdKey_init_default, sd_types_BleGapIdKey_init_default, sd_types_BleGapIdKey_init_default, sd_types_BleGapIdKey_init_default, sd_types_BleGapIdKey_init_default, sd_types_BleGapIdKey_init_default}, 0, {sd_types_BleGapIrk_init_default, sd_types_BleGapIrk_init_default, sd_types_BleGapIrk_init_default, sd_types_BleGapIrk_init_default, sd_types_BleGapIrk_init_default, sd_types_BleGapIrk_init_default, sd_types_BleGapIrk_init_default, sd_types_BleGapIrk_init_default}, 0}
|
|
626
|
-
#define sd_GapPrivacySetCmd_init_default {false, sd_types_BleGapPrivacyParams_init_default}
|
|
627
|
-
#define sd_GapPrivacyGetCmd_init_default {0}
|
|
628
|
-
#define sd_GapAdvSetConfigureCmd_init_default {0, false, sd_types_BleGapAdvData_init_default, false, sd_types_BleGapAdvParams_init_default}
|
|
629
|
-
#define sd_GapAdvStartCmd_init_default {0, 0}
|
|
630
|
-
#define sd_GapAdvStopCmd_init_default {0}
|
|
631
|
-
#define sd_GapConnParamUpdateCmd_init_default {0, false, sd_types_BleGapConnParams_init_default}
|
|
632
|
-
#define sd_GapDisconnectCmd_init_default {0, 0}
|
|
633
|
-
#define sd_GapTxPowerSetCmd_init_default {0, 0, 0}
|
|
634
|
-
#define sd_GapAppearanceSetCmd_init_default {0}
|
|
635
|
-
#define sd_GapAppearanceGetCmd_init_default {0}
|
|
636
|
-
#define sd_GapPpcpSetCmd_init_default {false, sd_types_BleGapConnParams_init_default}
|
|
637
|
-
#define sd_GapPpcpGetCmd_init_default {0}
|
|
638
|
-
#define sd_GapDeviceNameSetCmd_init_default {false, sd_types_BleGapConnSecMode_init_default, {0, {0}}, 0}
|
|
639
|
-
#define sd_GapDeviceNameGetCmd_init_default {0}
|
|
640
|
-
#define sd_GapAuthenticateCmd_init_default {0, false, sd_types_BleGapSecParams_init_default}
|
|
641
|
-
#define sd_GapSecParamsReplyCmd_init_default {0, _sd_types_BleGapSecStatus_MIN, false, sd_types_BleGapSecParams_init_default, false, sd_types_BleGapSecKeyset_init_default}
|
|
642
|
-
#define sd_GapAuthKeyReplyCmd_init_default {0, _sd_types_BleGapAuthKeyType_MIN, {0, {0}}}
|
|
643
|
-
#define sd_GapLescDhkeyReplyCmd_init_default {0, false, sd_types_BleGapLescDhkey_init_default}
|
|
644
|
-
#define sd_GapKeypressNotifyCmd_init_default {0, _sd_types_BleGapKpNotType_MIN}
|
|
645
|
-
#define sd_GapLescOobDataGetCmd_init_default {0, false, sd_types_BleGapLescP256Pk_init_default}
|
|
646
|
-
#define sd_GapLescOobDataSetCmd_init_default {0, false, sd_types_BleGapLescOobData_init_default, false, sd_types_BleGapLescOobData_init_default}
|
|
647
|
-
#define sd_GapEncryptCmd_init_default {0, false, sd_types_BleGapMasterId_init_default, false, sd_types_BleGapEncInfo_init_default}
|
|
648
|
-
#define sd_GapSecInfoReplyCmd_init_default {0, false, sd_types_BleGapEncInfo_init_default, false, sd_types_BleGapIrk_init_default, false, sd_types_BleGapSignInfo_init_default}
|
|
649
|
-
#define sd_GapConnSecGetCmd_init_default {0}
|
|
650
|
-
#define sd_GapRssiStartCmd_init_default {0, 0, 0}
|
|
651
|
-
#define sd_GapRssiStopCmd_init_default {0}
|
|
652
|
-
#define sd_GapScanStartCmd_init_default {false, sd_types_BleGapScanParams_init_default}
|
|
653
|
-
#define sd_GapScanStopCmd_init_default {0}
|
|
654
|
-
#define sd_GapConnectCmd_init_default {false, sd_types_BleGapAddr_init_default, false, sd_types_BleGapScanParams_init_default, false, sd_types_BleGapConnParams_init_default, 0}
|
|
655
|
-
#define sd_GapConnectCancelCmd_init_default {0}
|
|
656
|
-
#define sd_GapRssiGetCmd_init_default {0}
|
|
657
|
-
#define sd_BleGapPhysCmd_init_default {_sd_types_BleGapPhy_MIN, _sd_types_BleGapPhy_MIN}
|
|
658
|
-
#define sd_GapPhyUpdateCmd_init_default {0, false, sd_BleGapPhysCmd_init_default}
|
|
659
|
-
#define sd_GapDataLengthUpdateCmd_init_default {0, false, sd_types_BleGapDataLengthParams_init_default, false, sd_types_BleGapDataLengthLimitation_init_default}
|
|
660
|
-
#define sd_GapQosChannelSurveyStartCmd_init_default {0}
|
|
661
|
-
#define sd_GapQosChannelSurveyStopCmd_init_default {0}
|
|
662
|
-
#define sd_GapAdvAddrGetCmd_init_default {0}
|
|
663
|
-
#define sd_GapNextConnEvtCounterGetCmd_init_default {0}
|
|
664
|
-
#define sd_GapConnEvtTriggerStartCmd_init_default {0, false, sd_types_BleGapConnEventTrigger_init_default}
|
|
665
|
-
#define sd_GapConnEvtTriggerStopCmd_init_default {0}
|
|
666
|
-
#define sd_GapAddrSetRsp_init_default {0}
|
|
667
|
-
#define sd_GapAddrGetRsp_init_default {0, false, sd_types_BleGapAddr_init_default}
|
|
668
|
-
#define sd_GapWhitelistSetRsp_init_default {0}
|
|
669
|
-
#define sd_GapDeviceIdentitiesSetRsp_init_default {0}
|
|
670
|
-
#define sd_GapPrivacySetRsp_init_default {0}
|
|
671
|
-
#define sd_GapPrivacyGetRsp_init_default {0, false, sd_types_BleGapPrivacyParams_init_default}
|
|
672
|
-
#define sd_GapAdvSetConfigureRsp_init_default {0, 0}
|
|
673
|
-
#define sd_GapAdvStartRsp_init_default {0}
|
|
674
|
-
#define sd_GapAdvStopRsp_init_default {0}
|
|
675
|
-
#define sd_GapConnParamUpdateRsp_init_default {0}
|
|
676
|
-
#define sd_GapDisconnectRsp_init_default {0}
|
|
677
|
-
#define sd_GapTxPowerSetRsp_init_default {0}
|
|
678
|
-
#define sd_GapAppearanceSetRsp_init_default {0}
|
|
679
|
-
#define sd_GapAppearanceGetRsp_init_default {0, 0}
|
|
680
|
-
#define sd_GapPpcpSetRsp_init_default {0}
|
|
681
|
-
#define sd_GapPpcpGetRsp_init_default {0, false, sd_types_BleGapConnParams_init_default}
|
|
682
|
-
#define sd_GapDeviceNameSetRsp_init_default {0}
|
|
683
|
-
#define sd_GapDeviceNameGetRsp_init_default {0, {0, {0}}, 0}
|
|
684
|
-
#define sd_GapAuthenticateRsp_init_default {0}
|
|
685
|
-
#define sd_GapSecParamsReplyRsp_init_default {0}
|
|
686
|
-
#define sd_GapAuthKeyReplyRsp_init_default {0}
|
|
687
|
-
#define sd_GapLescDhkeyReplyRsp_init_default {0}
|
|
688
|
-
#define sd_GapKeypressNotifyRsp_init_default {0}
|
|
689
|
-
#define sd_GapLescOobDataGetRsp_init_default {0, false, sd_types_BleGapLescOobData_init_default}
|
|
690
|
-
#define sd_GapLescOobDataSetRsp_init_default {0}
|
|
691
|
-
#define sd_GapEncryptRsp_init_default {0}
|
|
692
|
-
#define sd_GapSecInfoReplyRsp_init_default {0}
|
|
693
|
-
#define sd_GapConnSecGetRsp_init_default {0, false, sd_types_BleGapConnSec_init_default}
|
|
694
|
-
#define sd_GapRssiStartRsp_init_default {0}
|
|
695
|
-
#define sd_GapRssiStopRsp_init_default {0}
|
|
696
|
-
#define sd_GapScanStartRsp_init_default {0}
|
|
697
|
-
#define sd_GapScanStopRsp_init_default {0}
|
|
698
|
-
#define sd_GapConnectRsp_init_default {0}
|
|
699
|
-
#define sd_GapConnectCancelRsp_init_default {0}
|
|
700
|
-
#define sd_GapRssiGetRsp_init_default {0, 0}
|
|
701
|
-
#define sd_GapPhyUpdateRsp_init_default {0}
|
|
702
|
-
#define sd_GapDataLengthUpdateRsp_init_default {0, false, sd_types_BleGapDataLengthParams_init_default, false, sd_types_BleGapDataLengthLimitation_init_default}
|
|
703
|
-
#define sd_GapQosChannelSurveyStartRsp_init_default {0}
|
|
704
|
-
#define sd_GapQosChannelSurveyStopRsp_init_default {0}
|
|
705
|
-
#define sd_GapAdvAddrGetRsp_init_default {0, false, sd_types_BleGapAddr_init_default}
|
|
706
|
-
#define sd_GapNextConnEvtCounterGetRsp_init_default {0, 0}
|
|
707
|
-
#define sd_GapConnEvtTriggerStartRsp_init_default {0}
|
|
708
|
-
#define sd_GapConnEvtTriggerStopRsp_init_default {0}
|
|
709
|
-
#define sd_GapEvtConnected_init_default {false, sd_types_BleGapAddr_init_default, 0, false, sd_types_BleGapConnParams_init_default, 0, false, sd_types_BleGapAdvData_init_default}
|
|
710
|
-
#define sd_GapEvtDisconnected_init_default {0}
|
|
711
|
-
#define sd_GapEvtConnParamUpdate_init_default {false, sd_types_BleGapConnParams_init_default}
|
|
712
|
-
#define sd_GapEvtSecParamsRequest_init_default {false, sd_types_BleGapSecParams_init_default}
|
|
713
|
-
#define sd_GapEvtSecInfoRequest_init_default {false, sd_types_BleGapAddr_init_default, false, sd_types_BleGapMasterId_init_default, 0, 0, 0}
|
|
714
|
-
#define sd_GapEvtPasskeyDisplay_init_default {{0}, 0}
|
|
715
|
-
#define sd_GapEvtKeyPressed_init_default {_sd_types_BleGapKpNotType_MIN}
|
|
716
|
-
#define sd_GapEvtAuthKeyRequest_init_default {_sd_types_BleGapAuthKeyType_MIN}
|
|
717
|
-
#define sd_GapEvtLescDhkeyRequest_init_default {false, sd_types_BleGapLescP256Pk_init_default, 0}
|
|
718
|
-
#define sd_GapEvtAuthStatus_init_default {_sd_types_BleGapSecStatus_MIN, 0, 0, 0, false, sd_types_BleGapSecLevelsT_init_default, false, sd_types_BleGapSecLevelsT_init_default, false, sd_types_BleGapSecKdist_init_default, false, sd_types_BleGapSecKdist_init_default}
|
|
719
|
-
#define sd_GapEvtConnSecUpdate_init_default {false, sd_types_BleGapConnSec_init_default}
|
|
720
|
-
#define sd_GapEvtTimeout_init_default {_sd_types_BleGapTimeoutSrc_MIN, false, sd_types_BleData_init_default}
|
|
721
|
-
#define sd_GapEvtRssiChanged_init_default {0, 0}
|
|
722
|
-
#define sd_GapEvtAdvReport_init_default {false, sd_types_BleGapAdvReportTypeT_init_default, false, sd_types_BleGapAddr_init_default, false, sd_types_BleGapAddr_init_default, _sd_types_BleGapPhy_MIN, _sd_types_BleGapPhy_MIN, 0, 0, 0, 0, 0, false, sd_types_BleData_init_default, false, sd_types_BleGapAuxPointer_init_default}
|
|
723
|
-
#define sd_GapEvtSecRequest_init_default {0, 0, 0, 0}
|
|
724
|
-
#define sd_GapEvtConnParamUpdateRequest_init_default {false, sd_types_BleGapConnParams_init_default}
|
|
725
|
-
#define sd_GapEvtScanReqReport_init_default {0, 0, false, sd_types_BleGapAddr_init_default}
|
|
726
|
-
#define sd_GapEvtPhyUpdateRequest_init_default {_sd_types_BleGapPhy_MIN, _sd_types_BleGapPhy_MIN}
|
|
727
|
-
#define sd_GapEvtPhyUpdate_init_default {0, _sd_types_BleGapPhy_MIN, _sd_types_BleGapPhy_MIN}
|
|
728
|
-
#define sd_GapEvtDataLengthUpdateRequest_init_default {false, sd_types_BleGapDataLengthParams_init_default}
|
|
729
|
-
#define sd_GapEvtDataLengthUpdate_init_default {false, sd_types_BleGapDataLengthParams_init_default}
|
|
730
|
-
#define sd_GapEvtQosChannelSurveyReport_init_default {0, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}
|
|
731
|
-
#define sd_GapEvtAdvSetTerminated_init_default {_sd_types_BleGapAdvSetTerminatedReason_MIN, 0, 0, false, sd_types_BleGapAdvData_init_default}
|
|
732
|
-
#define sd_GapAddrSetCmd_init_zero {false, sd_types_BleGapAddr_init_zero}
|
|
733
|
-
#define sd_GapAddrGetCmd_init_zero {0}
|
|
734
|
-
#define sd_GapWhitelistSetCmd_init_zero {0, {sd_types_BleGapAddr_init_zero, sd_types_BleGapAddr_init_zero, sd_types_BleGapAddr_init_zero, sd_types_BleGapAddr_init_zero, sd_types_BleGapAddr_init_zero, sd_types_BleGapAddr_init_zero, sd_types_BleGapAddr_init_zero, sd_types_BleGapAddr_init_zero}, 0}
|
|
735
|
-
#define sd_GapDeviceIdentitiesSetCmd_init_zero {0, {sd_types_BleGapIdKey_init_zero, sd_types_BleGapIdKey_init_zero, sd_types_BleGapIdKey_init_zero, sd_types_BleGapIdKey_init_zero, sd_types_BleGapIdKey_init_zero, sd_types_BleGapIdKey_init_zero, sd_types_BleGapIdKey_init_zero, sd_types_BleGapIdKey_init_zero}, 0, {sd_types_BleGapIrk_init_zero, sd_types_BleGapIrk_init_zero, sd_types_BleGapIrk_init_zero, sd_types_BleGapIrk_init_zero, sd_types_BleGapIrk_init_zero, sd_types_BleGapIrk_init_zero, sd_types_BleGapIrk_init_zero, sd_types_BleGapIrk_init_zero}, 0}
|
|
736
|
-
#define sd_GapPrivacySetCmd_init_zero {false, sd_types_BleGapPrivacyParams_init_zero}
|
|
737
|
-
#define sd_GapPrivacyGetCmd_init_zero {0}
|
|
738
|
-
#define sd_GapAdvSetConfigureCmd_init_zero {0, false, sd_types_BleGapAdvData_init_zero, false, sd_types_BleGapAdvParams_init_zero}
|
|
739
|
-
#define sd_GapAdvStartCmd_init_zero {0, 0}
|
|
740
|
-
#define sd_GapAdvStopCmd_init_zero {0}
|
|
741
|
-
#define sd_GapConnParamUpdateCmd_init_zero {0, false, sd_types_BleGapConnParams_init_zero}
|
|
742
|
-
#define sd_GapDisconnectCmd_init_zero {0, 0}
|
|
743
|
-
#define sd_GapTxPowerSetCmd_init_zero {0, 0, 0}
|
|
744
|
-
#define sd_GapAppearanceSetCmd_init_zero {0}
|
|
745
|
-
#define sd_GapAppearanceGetCmd_init_zero {0}
|
|
746
|
-
#define sd_GapPpcpSetCmd_init_zero {false, sd_types_BleGapConnParams_init_zero}
|
|
747
|
-
#define sd_GapPpcpGetCmd_init_zero {0}
|
|
748
|
-
#define sd_GapDeviceNameSetCmd_init_zero {false, sd_types_BleGapConnSecMode_init_zero, {0, {0}}, 0}
|
|
749
|
-
#define sd_GapDeviceNameGetCmd_init_zero {0}
|
|
750
|
-
#define sd_GapAuthenticateCmd_init_zero {0, false, sd_types_BleGapSecParams_init_zero}
|
|
751
|
-
#define sd_GapSecParamsReplyCmd_init_zero {0, _sd_types_BleGapSecStatus_MIN, false, sd_types_BleGapSecParams_init_zero, false, sd_types_BleGapSecKeyset_init_zero}
|
|
752
|
-
#define sd_GapAuthKeyReplyCmd_init_zero {0, _sd_types_BleGapAuthKeyType_MIN, {0, {0}}}
|
|
753
|
-
#define sd_GapLescDhkeyReplyCmd_init_zero {0, false, sd_types_BleGapLescDhkey_init_zero}
|
|
754
|
-
#define sd_GapKeypressNotifyCmd_init_zero {0, _sd_types_BleGapKpNotType_MIN}
|
|
755
|
-
#define sd_GapLescOobDataGetCmd_init_zero {0, false, sd_types_BleGapLescP256Pk_init_zero}
|
|
756
|
-
#define sd_GapLescOobDataSetCmd_init_zero {0, false, sd_types_BleGapLescOobData_init_zero, false, sd_types_BleGapLescOobData_init_zero}
|
|
757
|
-
#define sd_GapEncryptCmd_init_zero {0, false, sd_types_BleGapMasterId_init_zero, false, sd_types_BleGapEncInfo_init_zero}
|
|
758
|
-
#define sd_GapSecInfoReplyCmd_init_zero {0, false, sd_types_BleGapEncInfo_init_zero, false, sd_types_BleGapIrk_init_zero, false, sd_types_BleGapSignInfo_init_zero}
|
|
759
|
-
#define sd_GapConnSecGetCmd_init_zero {0}
|
|
760
|
-
#define sd_GapRssiStartCmd_init_zero {0, 0, 0}
|
|
761
|
-
#define sd_GapRssiStopCmd_init_zero {0}
|
|
762
|
-
#define sd_GapScanStartCmd_init_zero {false, sd_types_BleGapScanParams_init_zero}
|
|
763
|
-
#define sd_GapScanStopCmd_init_zero {0}
|
|
764
|
-
#define sd_GapConnectCmd_init_zero {false, sd_types_BleGapAddr_init_zero, false, sd_types_BleGapScanParams_init_zero, false, sd_types_BleGapConnParams_init_zero, 0}
|
|
765
|
-
#define sd_GapConnectCancelCmd_init_zero {0}
|
|
766
|
-
#define sd_GapRssiGetCmd_init_zero {0}
|
|
767
|
-
#define sd_BleGapPhysCmd_init_zero {_sd_types_BleGapPhy_MIN, _sd_types_BleGapPhy_MIN}
|
|
768
|
-
#define sd_GapPhyUpdateCmd_init_zero {0, false, sd_BleGapPhysCmd_init_zero}
|
|
769
|
-
#define sd_GapDataLengthUpdateCmd_init_zero {0, false, sd_types_BleGapDataLengthParams_init_zero, false, sd_types_BleGapDataLengthLimitation_init_zero}
|
|
770
|
-
#define sd_GapQosChannelSurveyStartCmd_init_zero {0}
|
|
771
|
-
#define sd_GapQosChannelSurveyStopCmd_init_zero {0}
|
|
772
|
-
#define sd_GapAdvAddrGetCmd_init_zero {0}
|
|
773
|
-
#define sd_GapNextConnEvtCounterGetCmd_init_zero {0}
|
|
774
|
-
#define sd_GapConnEvtTriggerStartCmd_init_zero {0, false, sd_types_BleGapConnEventTrigger_init_zero}
|
|
775
|
-
#define sd_GapConnEvtTriggerStopCmd_init_zero {0}
|
|
776
|
-
#define sd_GapAddrSetRsp_init_zero {0}
|
|
777
|
-
#define sd_GapAddrGetRsp_init_zero {0, false, sd_types_BleGapAddr_init_zero}
|
|
778
|
-
#define sd_GapWhitelistSetRsp_init_zero {0}
|
|
779
|
-
#define sd_GapDeviceIdentitiesSetRsp_init_zero {0}
|
|
780
|
-
#define sd_GapPrivacySetRsp_init_zero {0}
|
|
781
|
-
#define sd_GapPrivacyGetRsp_init_zero {0, false, sd_types_BleGapPrivacyParams_init_zero}
|
|
782
|
-
#define sd_GapAdvSetConfigureRsp_init_zero {0, 0}
|
|
783
|
-
#define sd_GapAdvStartRsp_init_zero {0}
|
|
784
|
-
#define sd_GapAdvStopRsp_init_zero {0}
|
|
785
|
-
#define sd_GapConnParamUpdateRsp_init_zero {0}
|
|
786
|
-
#define sd_GapDisconnectRsp_init_zero {0}
|
|
787
|
-
#define sd_GapTxPowerSetRsp_init_zero {0}
|
|
788
|
-
#define sd_GapAppearanceSetRsp_init_zero {0}
|
|
789
|
-
#define sd_GapAppearanceGetRsp_init_zero {0, 0}
|
|
790
|
-
#define sd_GapPpcpSetRsp_init_zero {0}
|
|
791
|
-
#define sd_GapPpcpGetRsp_init_zero {0, false, sd_types_BleGapConnParams_init_zero}
|
|
792
|
-
#define sd_GapDeviceNameSetRsp_init_zero {0}
|
|
793
|
-
#define sd_GapDeviceNameGetRsp_init_zero {0, {0, {0}}, 0}
|
|
794
|
-
#define sd_GapAuthenticateRsp_init_zero {0}
|
|
795
|
-
#define sd_GapSecParamsReplyRsp_init_zero {0}
|
|
796
|
-
#define sd_GapAuthKeyReplyRsp_init_zero {0}
|
|
797
|
-
#define sd_GapLescDhkeyReplyRsp_init_zero {0}
|
|
798
|
-
#define sd_GapKeypressNotifyRsp_init_zero {0}
|
|
799
|
-
#define sd_GapLescOobDataGetRsp_init_zero {0, false, sd_types_BleGapLescOobData_init_zero}
|
|
800
|
-
#define sd_GapLescOobDataSetRsp_init_zero {0}
|
|
801
|
-
#define sd_GapEncryptRsp_init_zero {0}
|
|
802
|
-
#define sd_GapSecInfoReplyRsp_init_zero {0}
|
|
803
|
-
#define sd_GapConnSecGetRsp_init_zero {0, false, sd_types_BleGapConnSec_init_zero}
|
|
804
|
-
#define sd_GapRssiStartRsp_init_zero {0}
|
|
805
|
-
#define sd_GapRssiStopRsp_init_zero {0}
|
|
806
|
-
#define sd_GapScanStartRsp_init_zero {0}
|
|
807
|
-
#define sd_GapScanStopRsp_init_zero {0}
|
|
808
|
-
#define sd_GapConnectRsp_init_zero {0}
|
|
809
|
-
#define sd_GapConnectCancelRsp_init_zero {0}
|
|
810
|
-
#define sd_GapRssiGetRsp_init_zero {0, 0}
|
|
811
|
-
#define sd_GapPhyUpdateRsp_init_zero {0}
|
|
812
|
-
#define sd_GapDataLengthUpdateRsp_init_zero {0, false, sd_types_BleGapDataLengthParams_init_zero, false, sd_types_BleGapDataLengthLimitation_init_zero}
|
|
813
|
-
#define sd_GapQosChannelSurveyStartRsp_init_zero {0}
|
|
814
|
-
#define sd_GapQosChannelSurveyStopRsp_init_zero {0}
|
|
815
|
-
#define sd_GapAdvAddrGetRsp_init_zero {0, false, sd_types_BleGapAddr_init_zero}
|
|
816
|
-
#define sd_GapNextConnEvtCounterGetRsp_init_zero {0, 0}
|
|
817
|
-
#define sd_GapConnEvtTriggerStartRsp_init_zero {0}
|
|
818
|
-
#define sd_GapConnEvtTriggerStopRsp_init_zero {0}
|
|
819
|
-
#define sd_GapEvtConnected_init_zero {false, sd_types_BleGapAddr_init_zero, 0, false, sd_types_BleGapConnParams_init_zero, 0, false, sd_types_BleGapAdvData_init_zero}
|
|
820
|
-
#define sd_GapEvtDisconnected_init_zero {0}
|
|
821
|
-
#define sd_GapEvtConnParamUpdate_init_zero {false, sd_types_BleGapConnParams_init_zero}
|
|
822
|
-
#define sd_GapEvtSecParamsRequest_init_zero {false, sd_types_BleGapSecParams_init_zero}
|
|
823
|
-
#define sd_GapEvtSecInfoRequest_init_zero {false, sd_types_BleGapAddr_init_zero, false, sd_types_BleGapMasterId_init_zero, 0, 0, 0}
|
|
824
|
-
#define sd_GapEvtPasskeyDisplay_init_zero {{0}, 0}
|
|
825
|
-
#define sd_GapEvtKeyPressed_init_zero {_sd_types_BleGapKpNotType_MIN}
|
|
826
|
-
#define sd_GapEvtAuthKeyRequest_init_zero {_sd_types_BleGapAuthKeyType_MIN}
|
|
827
|
-
#define sd_GapEvtLescDhkeyRequest_init_zero {false, sd_types_BleGapLescP256Pk_init_zero, 0}
|
|
828
|
-
#define sd_GapEvtAuthStatus_init_zero {_sd_types_BleGapSecStatus_MIN, 0, 0, 0, false, sd_types_BleGapSecLevelsT_init_zero, false, sd_types_BleGapSecLevelsT_init_zero, false, sd_types_BleGapSecKdist_init_zero, false, sd_types_BleGapSecKdist_init_zero}
|
|
829
|
-
#define sd_GapEvtConnSecUpdate_init_zero {false, sd_types_BleGapConnSec_init_zero}
|
|
830
|
-
#define sd_GapEvtTimeout_init_zero {_sd_types_BleGapTimeoutSrc_MIN, false, sd_types_BleData_init_zero}
|
|
831
|
-
#define sd_GapEvtRssiChanged_init_zero {0, 0}
|
|
832
|
-
#define sd_GapEvtAdvReport_init_zero {false, sd_types_BleGapAdvReportTypeT_init_zero, false, sd_types_BleGapAddr_init_zero, false, sd_types_BleGapAddr_init_zero, _sd_types_BleGapPhy_MIN, _sd_types_BleGapPhy_MIN, 0, 0, 0, 0, 0, false, sd_types_BleData_init_zero, false, sd_types_BleGapAuxPointer_init_zero}
|
|
833
|
-
#define sd_GapEvtSecRequest_init_zero {0, 0, 0, 0}
|
|
834
|
-
#define sd_GapEvtConnParamUpdateRequest_init_zero {false, sd_types_BleGapConnParams_init_zero}
|
|
835
|
-
#define sd_GapEvtScanReqReport_init_zero {0, 0, false, sd_types_BleGapAddr_init_zero}
|
|
836
|
-
#define sd_GapEvtPhyUpdateRequest_init_zero {_sd_types_BleGapPhy_MIN, _sd_types_BleGapPhy_MIN}
|
|
837
|
-
#define sd_GapEvtPhyUpdate_init_zero {0, _sd_types_BleGapPhy_MIN, _sd_types_BleGapPhy_MIN}
|
|
838
|
-
#define sd_GapEvtDataLengthUpdateRequest_init_zero {false, sd_types_BleGapDataLengthParams_init_zero}
|
|
839
|
-
#define sd_GapEvtDataLengthUpdate_init_zero {false, sd_types_BleGapDataLengthParams_init_zero}
|
|
840
|
-
#define sd_GapEvtQosChannelSurveyReport_init_zero {0, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}
|
|
841
|
-
#define sd_GapEvtAdvSetTerminated_init_zero {_sd_types_BleGapAdvSetTerminatedReason_MIN, 0, 0, false, sd_types_BleGapAdvData_init_zero}
|
|
842
|
-
|
|
843
|
-
/* Field tags (for use in manual encoding/decoding) */
|
|
844
|
-
#define sd_GapAddrSetCmd_addr_tag 1
|
|
845
|
-
#define sd_GapWhitelistSetCmd_wl_addrs_tag 1
|
|
846
|
-
#define sd_GapWhitelistSetCmd_len_tag 2
|
|
847
|
-
#define sd_GapDeviceIdentitiesSetCmd_id_keys_tag 1
|
|
848
|
-
#define sd_GapDeviceIdentitiesSetCmd_local_irks_tag 2
|
|
849
|
-
#define sd_GapDeviceIdentitiesSetCmd_len_tag 3
|
|
850
|
-
#define sd_GapPrivacySetCmd_privacy_params_tag 1
|
|
851
|
-
#define sd_GapAdvSetConfigureCmd_adv_handle_tag 1
|
|
852
|
-
#define sd_GapAdvSetConfigureCmd_adv_data_tag 2
|
|
853
|
-
#define sd_GapAdvSetConfigureCmd_adv_params_tag 3
|
|
854
|
-
#define sd_GapAdvStartCmd_adv_handle_tag 1
|
|
855
|
-
#define sd_GapAdvStartCmd_conn_cfg_tag_tag 2
|
|
856
|
-
#define sd_GapAdvStopCmd_adv_handle_tag 1
|
|
857
|
-
#define sd_GapConnParamUpdateCmd_conn_handle_tag 1
|
|
858
|
-
#define sd_GapConnParamUpdateCmd_conn_params_tag 2
|
|
859
|
-
#define sd_GapDisconnectCmd_conn_handle_tag 1
|
|
860
|
-
#define sd_GapDisconnectCmd_hci_ret_code_code_tag 2
|
|
861
|
-
#define sd_GapTxPowerSetCmd_role_tag 1
|
|
862
|
-
#define sd_GapTxPowerSetCmd_handle_tag 2
|
|
863
|
-
#define sd_GapTxPowerSetCmd_tx_power_tag 3
|
|
864
|
-
#define sd_GapAppearanceSetCmd_appearance_tag 1
|
|
865
|
-
#define sd_GapPpcpSetCmd_conn_params_tag 1
|
|
866
|
-
#define sd_GapDeviceNameSetCmd_write_perm_tag 1
|
|
867
|
-
#define sd_GapDeviceNameSetCmd_dev_name_tag 2
|
|
868
|
-
#define sd_GapDeviceNameSetCmd_len_tag 3
|
|
869
|
-
#define sd_GapAuthenticateCmd_conn_handle_tag 1
|
|
870
|
-
#define sd_GapAuthenticateCmd_sec_params_tag 2
|
|
871
|
-
#define sd_GapSecParamsReplyCmd_conn_handle_tag 1
|
|
872
|
-
#define sd_GapSecParamsReplyCmd_sec_ret_code_tag 2
|
|
873
|
-
#define sd_GapSecParamsReplyCmd_sec_params_tag 3
|
|
874
|
-
#define sd_GapSecParamsReplyCmd_sec_keyset_tag 4
|
|
875
|
-
#define sd_GapAuthKeyReplyCmd_conn_handle_tag 1
|
|
876
|
-
#define sd_GapAuthKeyReplyCmd_key_type_tag 2
|
|
877
|
-
#define sd_GapAuthKeyReplyCmd_key_tag 3
|
|
878
|
-
#define sd_GapLescDhkeyReplyCmd_conn_handle_tag 1
|
|
879
|
-
#define sd_GapLescDhkeyReplyCmd_dhkey_tag 2
|
|
880
|
-
#define sd_GapKeypressNotifyCmd_conn_handle_tag 1
|
|
881
|
-
#define sd_GapKeypressNotifyCmd_kp_not_tag 2
|
|
882
|
-
#define sd_GapLescOobDataGetCmd_conn_handle_tag 1
|
|
883
|
-
#define sd_GapLescOobDataGetCmd_pk_own_tag 2
|
|
884
|
-
#define sd_GapLescOobDataSetCmd_conn_handle_tag 1
|
|
885
|
-
#define sd_GapLescOobDataSetCmd_oobd_own_tag 2
|
|
886
|
-
#define sd_GapLescOobDataSetCmd_oobd_peer_tag 3
|
|
887
|
-
#define sd_GapEncryptCmd_conn_handle_tag 1
|
|
888
|
-
#define sd_GapEncryptCmd_master_id_tag 2
|
|
889
|
-
#define sd_GapEncryptCmd_enc_info_tag 3
|
|
890
|
-
#define sd_GapSecInfoReplyCmd_conn_handle_tag 1
|
|
891
|
-
#define sd_GapSecInfoReplyCmd_enc_info_tag 2
|
|
892
|
-
#define sd_GapSecInfoReplyCmd_id_info_tag 3
|
|
893
|
-
#define sd_GapSecInfoReplyCmd_sign_info_tag 4
|
|
894
|
-
#define sd_GapConnSecGetCmd_conn_handle_tag 1
|
|
895
|
-
#define sd_GapRssiStartCmd_conn_handle_tag 1
|
|
896
|
-
#define sd_GapRssiStartCmd_threshold_dbm_tag 2
|
|
897
|
-
#define sd_GapRssiStartCmd_skip_count_tag 3
|
|
898
|
-
#define sd_GapRssiStopCmd_conn_handle_tag 1
|
|
899
|
-
#define sd_GapScanStartCmd_scan_params_tag 1
|
|
900
|
-
#define sd_GapConnectCmd_peer_addr_tag 1
|
|
901
|
-
#define sd_GapConnectCmd_scan_params_tag 2
|
|
902
|
-
#define sd_GapConnectCmd_conn_params_tag 3
|
|
903
|
-
#define sd_GapConnectCmd_conn_cfg_tag_tag 4
|
|
904
|
-
#define sd_GapRssiGetCmd_conn_handle_tag 1
|
|
905
|
-
#define sd_BleGapPhysCmd_tx_phys_tag 1
|
|
906
|
-
#define sd_BleGapPhysCmd_rx_phys_tag 2
|
|
907
|
-
#define sd_GapPhyUpdateCmd_conn_handle_tag 1
|
|
908
|
-
#define sd_GapPhyUpdateCmd_phys_tag 2
|
|
909
|
-
#define sd_GapDataLengthUpdateCmd_conn_handle_tag 1
|
|
910
|
-
#define sd_GapDataLengthUpdateCmd_dl_params_tag 2
|
|
911
|
-
#define sd_GapDataLengthUpdateCmd_dl_limitation_tag 3
|
|
912
|
-
#define sd_GapQosChannelSurveyStartCmd_interval_us_tag 1
|
|
913
|
-
#define sd_GapAdvAddrGetCmd_adv_handle_tag 1
|
|
914
|
-
#define sd_GapNextConnEvtCounterGetCmd_conn_handle_tag 1
|
|
915
|
-
#define sd_GapConnEvtTriggerStartCmd_conn_handle_tag 1
|
|
916
|
-
#define sd_GapConnEvtTriggerStartCmd_params_tag 2
|
|
917
|
-
#define sd_GapConnEvtTriggerStopCmd_conn_handle_tag 1
|
|
918
|
-
#define sd_GapAddrSetRsp_ret_code_tag 1
|
|
919
|
-
#define sd_GapAddrGetRsp_ret_code_tag 1
|
|
920
|
-
#define sd_GapAddrGetRsp_addr_tag 2
|
|
921
|
-
#define sd_GapWhitelistSetRsp_ret_code_tag 1
|
|
922
|
-
#define sd_GapDeviceIdentitiesSetRsp_ret_code_tag 1
|
|
923
|
-
#define sd_GapPrivacySetRsp_ret_code_tag 1
|
|
924
|
-
#define sd_GapPrivacyGetRsp_ret_code_tag 1
|
|
925
|
-
#define sd_GapPrivacyGetRsp_privacy_params_tag 2
|
|
926
|
-
#define sd_GapAdvSetConfigureRsp_ret_code_tag 1
|
|
927
|
-
#define sd_GapAdvSetConfigureRsp_adv_handle_tag 2
|
|
928
|
-
#define sd_GapAdvStartRsp_ret_code_tag 1
|
|
929
|
-
#define sd_GapAdvStopRsp_ret_code_tag 1
|
|
930
|
-
#define sd_GapConnParamUpdateRsp_ret_code_tag 1
|
|
931
|
-
#define sd_GapDisconnectRsp_ret_code_tag 1
|
|
932
|
-
#define sd_GapTxPowerSetRsp_ret_code_tag 1
|
|
933
|
-
#define sd_GapAppearanceSetRsp_ret_code_tag 1
|
|
934
|
-
#define sd_GapAppearanceGetRsp_ret_code_tag 1
|
|
935
|
-
#define sd_GapAppearanceGetRsp_appearance_tag 2
|
|
936
|
-
#define sd_GapPpcpSetRsp_ret_code_tag 1
|
|
937
|
-
#define sd_GapPpcpGetRsp_ret_code_tag 1
|
|
938
|
-
#define sd_GapPpcpGetRsp_conn_params_tag 2
|
|
939
|
-
#define sd_GapDeviceNameSetRsp_ret_code_tag 1
|
|
940
|
-
#define sd_GapDeviceNameGetRsp_ret_code_tag 1
|
|
941
|
-
#define sd_GapDeviceNameGetRsp_dev_name_tag 2
|
|
942
|
-
#define sd_GapDeviceNameGetRsp_len_tag 3
|
|
943
|
-
#define sd_GapAuthenticateRsp_ret_code_tag 1
|
|
944
|
-
#define sd_GapSecParamsReplyRsp_ret_code_tag 1
|
|
945
|
-
#define sd_GapAuthKeyReplyRsp_ret_code_tag 1
|
|
946
|
-
#define sd_GapLescDhkeyReplyRsp_ret_code_tag 1
|
|
947
|
-
#define sd_GapKeypressNotifyRsp_ret_code_tag 1
|
|
948
|
-
#define sd_GapLescOobDataGetRsp_ret_code_tag 1
|
|
949
|
-
#define sd_GapLescOobDataGetRsp_oobd_own_tag 2
|
|
950
|
-
#define sd_GapLescOobDataSetRsp_ret_code_tag 1
|
|
951
|
-
#define sd_GapEncryptRsp_ret_code_tag 1
|
|
952
|
-
#define sd_GapSecInfoReplyRsp_ret_code_tag 1
|
|
953
|
-
#define sd_GapConnSecGetRsp_ret_code_tag 1
|
|
954
|
-
#define sd_GapConnSecGetRsp_conn_sec_tag 2
|
|
955
|
-
#define sd_GapRssiStartRsp_ret_code_tag 1
|
|
956
|
-
#define sd_GapRssiStopRsp_ret_code_tag 1
|
|
957
|
-
#define sd_GapScanStartRsp_ret_code_tag 1
|
|
958
|
-
#define sd_GapScanStopRsp_ret_code_tag 1
|
|
959
|
-
#define sd_GapConnectRsp_ret_code_tag 1
|
|
960
|
-
#define sd_GapConnectCancelRsp_ret_code_tag 1
|
|
961
|
-
#define sd_GapRssiGetRsp_ret_code_tag 1
|
|
962
|
-
#define sd_GapRssiGetRsp_rssi_tag 2
|
|
963
|
-
#define sd_GapPhyUpdateRsp_ret_code_tag 1
|
|
964
|
-
#define sd_GapDataLengthUpdateRsp_ret_code_tag 1
|
|
965
|
-
#define sd_GapDataLengthUpdateRsp_dl_params_tag 2
|
|
966
|
-
#define sd_GapDataLengthUpdateRsp_dl_limitation_tag 3
|
|
967
|
-
#define sd_GapQosChannelSurveyStartRsp_ret_code_tag 1
|
|
968
|
-
#define sd_GapQosChannelSurveyStopRsp_ret_code_tag 1
|
|
969
|
-
#define sd_GapAdvAddrGetRsp_ret_code_tag 1
|
|
970
|
-
#define sd_GapAdvAddrGetRsp_addr_tag 2
|
|
971
|
-
#define sd_GapNextConnEvtCounterGetRsp_ret_code_tag 1
|
|
972
|
-
#define sd_GapNextConnEvtCounterGetRsp_count_tag 2
|
|
973
|
-
#define sd_GapConnEvtTriggerStartRsp_ret_code_tag 1
|
|
974
|
-
#define sd_GapConnEvtTriggerStopRsp_ret_code_tag 1
|
|
975
|
-
#define sd_GapEvtConnected_peer_addr_tag 1
|
|
976
|
-
#define sd_GapEvtConnected_role_tag 2
|
|
977
|
-
#define sd_GapEvtConnected_conn_params_tag 3
|
|
978
|
-
#define sd_GapEvtConnected_adv_handle_tag 4
|
|
979
|
-
#define sd_GapEvtConnected_adv_data_tag 5
|
|
980
|
-
#define sd_GapEvtDisconnected_reason_tag 1
|
|
981
|
-
#define sd_GapEvtConnParamUpdate_conn_params_tag 1
|
|
982
|
-
#define sd_GapEvtSecParamsRequest_peer_params_tag 1
|
|
983
|
-
#define sd_GapEvtSecInfoRequest_peer_addr_tag 1
|
|
984
|
-
#define sd_GapEvtSecInfoRequest_master_id_tag 2
|
|
985
|
-
#define sd_GapEvtSecInfoRequest_enc_info_tag 3
|
|
986
|
-
#define sd_GapEvtSecInfoRequest_id_info_tag 4
|
|
987
|
-
#define sd_GapEvtSecInfoRequest_sign_info_tag 5
|
|
988
|
-
#define sd_GapEvtPasskeyDisplay_passkey_tag 1
|
|
989
|
-
#define sd_GapEvtPasskeyDisplay_match_request_tag 2
|
|
990
|
-
#define sd_GapEvtKeyPressed_kp_not_tag 1
|
|
991
|
-
#define sd_GapEvtAuthKeyRequest_key_type_tag 1
|
|
992
|
-
#define sd_GapEvtLescDhkeyRequest_pk_peer_tag 1
|
|
993
|
-
#define sd_GapEvtLescDhkeyRequest_oobd_req_tag 2
|
|
994
|
-
#define sd_GapEvtAuthStatus_auth_status_tag 1
|
|
995
|
-
#define sd_GapEvtAuthStatus_error_src_tag 2
|
|
996
|
-
#define sd_GapEvtAuthStatus_bonded_tag 3
|
|
997
|
-
#define sd_GapEvtAuthStatus_lesc_tag 4
|
|
998
|
-
#define sd_GapEvtAuthStatus_sm1_levels_tag 5
|
|
999
|
-
#define sd_GapEvtAuthStatus_sm2_levels_tag 6
|
|
1000
|
-
#define sd_GapEvtAuthStatus_kdist_own_tag 7
|
|
1001
|
-
#define sd_GapEvtAuthStatus_kdist_peer_tag 8
|
|
1002
|
-
#define sd_GapEvtConnSecUpdate_conn_sec_tag 1
|
|
1003
|
-
#define sd_GapEvtTimeout_src_tag 1
|
|
1004
|
-
#define sd_GapEvtTimeout_adv_report_buffer_tag 2
|
|
1005
|
-
#define sd_GapEvtRssiChanged_rssi_tag 1
|
|
1006
|
-
#define sd_GapEvtRssiChanged_ch_index_tag 2
|
|
1007
|
-
#define sd_GapEvtAdvReport_type_tag 1
|
|
1008
|
-
#define sd_GapEvtAdvReport_peer_addr_tag 2
|
|
1009
|
-
#define sd_GapEvtAdvReport_direct_addr_tag 3
|
|
1010
|
-
#define sd_GapEvtAdvReport_primary_phy_tag 4
|
|
1011
|
-
#define sd_GapEvtAdvReport_secondary_phy_tag 5
|
|
1012
|
-
#define sd_GapEvtAdvReport_tx_power_tag 6
|
|
1013
|
-
#define sd_GapEvtAdvReport_rssi_tag 7
|
|
1014
|
-
#define sd_GapEvtAdvReport_ch_index_tag 8
|
|
1015
|
-
#define sd_GapEvtAdvReport_set_id_tag 9
|
|
1016
|
-
#define sd_GapEvtAdvReport_data_id_tag 10
|
|
1017
|
-
#define sd_GapEvtAdvReport_data_tag 11
|
|
1018
|
-
#define sd_GapEvtAdvReport_aux_pointer_tag 12
|
|
1019
|
-
#define sd_GapEvtSecRequest_bond_tag 1
|
|
1020
|
-
#define sd_GapEvtSecRequest_mitm_tag 2
|
|
1021
|
-
#define sd_GapEvtSecRequest_lesc_tag 3
|
|
1022
|
-
#define sd_GapEvtSecRequest_keypress_tag 4
|
|
1023
|
-
#define sd_GapEvtConnParamUpdateRequest_conn_params_tag 1
|
|
1024
|
-
#define sd_GapEvtScanReqReport_adv_handle_tag 1
|
|
1025
|
-
#define sd_GapEvtScanReqReport_rssi_tag 2
|
|
1026
|
-
#define sd_GapEvtScanReqReport_peer_addr_tag 3
|
|
1027
|
-
#define sd_GapEvtPhyUpdateRequest_tx_phys_tag 1
|
|
1028
|
-
#define sd_GapEvtPhyUpdateRequest_rx_phys_tag 2
|
|
1029
|
-
#define sd_GapEvtPhyUpdate_status_tag 1
|
|
1030
|
-
#define sd_GapEvtPhyUpdate_tx_phy_tag 2
|
|
1031
|
-
#define sd_GapEvtPhyUpdate_rx_phy_tag 3
|
|
1032
|
-
#define sd_GapEvtDataLengthUpdateRequest_peer_params_tag 1
|
|
1033
|
-
#define sd_GapEvtDataLengthUpdate_effective_params_tag 1
|
|
1034
|
-
#define sd_GapEvtQosChannelSurveyReport_channel_energy_tag 1
|
|
1035
|
-
#define sd_GapEvtAdvSetTerminated_reason_tag 1
|
|
1036
|
-
#define sd_GapEvtAdvSetTerminated_adv_handle_tag 2
|
|
1037
|
-
#define sd_GapEvtAdvSetTerminated_num_completed_adv_events_tag 3
|
|
1038
|
-
#define sd_GapEvtAdvSetTerminated_adv_data_tag 4
|
|
1039
|
-
|
|
1040
|
-
/* Struct field encoding specification for nanopb */
|
|
1041
|
-
#define sd_GapAddrSetCmd_FIELDLIST(X, a) \
|
|
1042
|
-
X(a, STATIC, OPTIONAL, MESSAGE, addr, 1)
|
|
1043
|
-
#define sd_GapAddrSetCmd_CALLBACK NULL
|
|
1044
|
-
#define sd_GapAddrSetCmd_DEFAULT NULL
|
|
1045
|
-
#define sd_GapAddrSetCmd_addr_MSGTYPE sd_types_BleGapAddr
|
|
1046
|
-
|
|
1047
|
-
#define sd_GapAddrGetCmd_FIELDLIST(X, a) \
|
|
1048
|
-
|
|
1049
|
-
#define sd_GapAddrGetCmd_CALLBACK NULL
|
|
1050
|
-
#define sd_GapAddrGetCmd_DEFAULT NULL
|
|
1051
|
-
|
|
1052
|
-
#define sd_GapWhitelistSetCmd_FIELDLIST(X, a) \
|
|
1053
|
-
X(a, STATIC, REPEATED, MESSAGE, wl_addrs, 1) \
|
|
1054
|
-
X(a, STATIC, SINGULAR, UINT32, len, 2)
|
|
1055
|
-
#define sd_GapWhitelistSetCmd_CALLBACK NULL
|
|
1056
|
-
#define sd_GapWhitelistSetCmd_DEFAULT NULL
|
|
1057
|
-
#define sd_GapWhitelistSetCmd_wl_addrs_MSGTYPE sd_types_BleGapAddr
|
|
1058
|
-
|
|
1059
|
-
#define sd_GapDeviceIdentitiesSetCmd_FIELDLIST(X, a) \
|
|
1060
|
-
X(a, STATIC, REPEATED, MESSAGE, id_keys, 1) \
|
|
1061
|
-
X(a, STATIC, REPEATED, MESSAGE, local_irks, 2) \
|
|
1062
|
-
X(a, STATIC, SINGULAR, UINT32, len, 3)
|
|
1063
|
-
#define sd_GapDeviceIdentitiesSetCmd_CALLBACK NULL
|
|
1064
|
-
#define sd_GapDeviceIdentitiesSetCmd_DEFAULT NULL
|
|
1065
|
-
#define sd_GapDeviceIdentitiesSetCmd_id_keys_MSGTYPE sd_types_BleGapIdKey
|
|
1066
|
-
#define sd_GapDeviceIdentitiesSetCmd_local_irks_MSGTYPE sd_types_BleGapIrk
|
|
1067
|
-
|
|
1068
|
-
#define sd_GapPrivacySetCmd_FIELDLIST(X, a) \
|
|
1069
|
-
X(a, STATIC, OPTIONAL, MESSAGE, privacy_params, 1)
|
|
1070
|
-
#define sd_GapPrivacySetCmd_CALLBACK NULL
|
|
1071
|
-
#define sd_GapPrivacySetCmd_DEFAULT NULL
|
|
1072
|
-
#define sd_GapPrivacySetCmd_privacy_params_MSGTYPE sd_types_BleGapPrivacyParams
|
|
1073
|
-
|
|
1074
|
-
#define sd_GapPrivacyGetCmd_FIELDLIST(X, a) \
|
|
1075
|
-
|
|
1076
|
-
#define sd_GapPrivacyGetCmd_CALLBACK NULL
|
|
1077
|
-
#define sd_GapPrivacyGetCmd_DEFAULT NULL
|
|
1078
|
-
|
|
1079
|
-
#define sd_GapAdvSetConfigureCmd_FIELDLIST(X, a) \
|
|
1080
|
-
X(a, STATIC, SINGULAR, UINT32, adv_handle, 1) \
|
|
1081
|
-
X(a, STATIC, OPTIONAL, MESSAGE, adv_data, 2) \
|
|
1082
|
-
X(a, STATIC, OPTIONAL, MESSAGE, adv_params, 3)
|
|
1083
|
-
#define sd_GapAdvSetConfigureCmd_CALLBACK NULL
|
|
1084
|
-
#define sd_GapAdvSetConfigureCmd_DEFAULT NULL
|
|
1085
|
-
#define sd_GapAdvSetConfigureCmd_adv_data_MSGTYPE sd_types_BleGapAdvData
|
|
1086
|
-
#define sd_GapAdvSetConfigureCmd_adv_params_MSGTYPE sd_types_BleGapAdvParams
|
|
1087
|
-
|
|
1088
|
-
#define sd_GapAdvStartCmd_FIELDLIST(X, a) \
|
|
1089
|
-
X(a, STATIC, SINGULAR, UINT32, adv_handle, 1) \
|
|
1090
|
-
X(a, STATIC, SINGULAR, UINT32, conn_cfg_tag, 2)
|
|
1091
|
-
#define sd_GapAdvStartCmd_CALLBACK NULL
|
|
1092
|
-
#define sd_GapAdvStartCmd_DEFAULT NULL
|
|
1093
|
-
|
|
1094
|
-
#define sd_GapAdvStopCmd_FIELDLIST(X, a) \
|
|
1095
|
-
X(a, STATIC, SINGULAR, UINT32, adv_handle, 1)
|
|
1096
|
-
#define sd_GapAdvStopCmd_CALLBACK NULL
|
|
1097
|
-
#define sd_GapAdvStopCmd_DEFAULT NULL
|
|
1098
|
-
|
|
1099
|
-
#define sd_GapConnParamUpdateCmd_FIELDLIST(X, a) \
|
|
1100
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1101
|
-
X(a, STATIC, OPTIONAL, MESSAGE, conn_params, 2)
|
|
1102
|
-
#define sd_GapConnParamUpdateCmd_CALLBACK NULL
|
|
1103
|
-
#define sd_GapConnParamUpdateCmd_DEFAULT NULL
|
|
1104
|
-
#define sd_GapConnParamUpdateCmd_conn_params_MSGTYPE sd_types_BleGapConnParams
|
|
1105
|
-
|
|
1106
|
-
#define sd_GapDisconnectCmd_FIELDLIST(X, a) \
|
|
1107
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1108
|
-
X(a, STATIC, SINGULAR, UINT32, hci_ret_code_code, 2)
|
|
1109
|
-
#define sd_GapDisconnectCmd_CALLBACK NULL
|
|
1110
|
-
#define sd_GapDisconnectCmd_DEFAULT NULL
|
|
1111
|
-
|
|
1112
|
-
#define sd_GapTxPowerSetCmd_FIELDLIST(X, a) \
|
|
1113
|
-
X(a, STATIC, SINGULAR, UINT32, role, 1) \
|
|
1114
|
-
X(a, STATIC, SINGULAR, UINT32, handle, 2) \
|
|
1115
|
-
X(a, STATIC, SINGULAR, SINT32, tx_power, 3)
|
|
1116
|
-
#define sd_GapTxPowerSetCmd_CALLBACK NULL
|
|
1117
|
-
#define sd_GapTxPowerSetCmd_DEFAULT NULL
|
|
1118
|
-
|
|
1119
|
-
#define sd_GapAppearanceSetCmd_FIELDLIST(X, a) \
|
|
1120
|
-
X(a, STATIC, SINGULAR, UINT32, appearance, 1)
|
|
1121
|
-
#define sd_GapAppearanceSetCmd_CALLBACK NULL
|
|
1122
|
-
#define sd_GapAppearanceSetCmd_DEFAULT NULL
|
|
1123
|
-
|
|
1124
|
-
#define sd_GapAppearanceGetCmd_FIELDLIST(X, a) \
|
|
1125
|
-
|
|
1126
|
-
#define sd_GapAppearanceGetCmd_CALLBACK NULL
|
|
1127
|
-
#define sd_GapAppearanceGetCmd_DEFAULT NULL
|
|
1128
|
-
|
|
1129
|
-
#define sd_GapPpcpSetCmd_FIELDLIST(X, a) \
|
|
1130
|
-
X(a, STATIC, OPTIONAL, MESSAGE, conn_params, 1)
|
|
1131
|
-
#define sd_GapPpcpSetCmd_CALLBACK NULL
|
|
1132
|
-
#define sd_GapPpcpSetCmd_DEFAULT NULL
|
|
1133
|
-
#define sd_GapPpcpSetCmd_conn_params_MSGTYPE sd_types_BleGapConnParams
|
|
1134
|
-
|
|
1135
|
-
#define sd_GapPpcpGetCmd_FIELDLIST(X, a) \
|
|
1136
|
-
|
|
1137
|
-
#define sd_GapPpcpGetCmd_CALLBACK NULL
|
|
1138
|
-
#define sd_GapPpcpGetCmd_DEFAULT NULL
|
|
1139
|
-
|
|
1140
|
-
#define sd_GapDeviceNameSetCmd_FIELDLIST(X, a) \
|
|
1141
|
-
X(a, STATIC, OPTIONAL, MESSAGE, write_perm, 1) \
|
|
1142
|
-
X(a, STATIC, SINGULAR, BYTES, dev_name, 2) \
|
|
1143
|
-
X(a, STATIC, SINGULAR, UINT32, len, 3)
|
|
1144
|
-
#define sd_GapDeviceNameSetCmd_CALLBACK NULL
|
|
1145
|
-
#define sd_GapDeviceNameSetCmd_DEFAULT NULL
|
|
1146
|
-
#define sd_GapDeviceNameSetCmd_write_perm_MSGTYPE sd_types_BleGapConnSecMode
|
|
1147
|
-
|
|
1148
|
-
#define sd_GapDeviceNameGetCmd_FIELDLIST(X, a) \
|
|
1149
|
-
|
|
1150
|
-
#define sd_GapDeviceNameGetCmd_CALLBACK NULL
|
|
1151
|
-
#define sd_GapDeviceNameGetCmd_DEFAULT NULL
|
|
1152
|
-
|
|
1153
|
-
#define sd_GapAuthenticateCmd_FIELDLIST(X, a) \
|
|
1154
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1155
|
-
X(a, STATIC, OPTIONAL, MESSAGE, sec_params, 2)
|
|
1156
|
-
#define sd_GapAuthenticateCmd_CALLBACK NULL
|
|
1157
|
-
#define sd_GapAuthenticateCmd_DEFAULT NULL
|
|
1158
|
-
#define sd_GapAuthenticateCmd_sec_params_MSGTYPE sd_types_BleGapSecParams
|
|
1159
|
-
|
|
1160
|
-
#define sd_GapSecParamsReplyCmd_FIELDLIST(X, a) \
|
|
1161
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1162
|
-
X(a, STATIC, SINGULAR, UENUM, sec_ret_code, 2) \
|
|
1163
|
-
X(a, STATIC, OPTIONAL, MESSAGE, sec_params, 3) \
|
|
1164
|
-
X(a, STATIC, OPTIONAL, MESSAGE, sec_keyset, 4)
|
|
1165
|
-
#define sd_GapSecParamsReplyCmd_CALLBACK NULL
|
|
1166
|
-
#define sd_GapSecParamsReplyCmd_DEFAULT NULL
|
|
1167
|
-
#define sd_GapSecParamsReplyCmd_sec_params_MSGTYPE sd_types_BleGapSecParams
|
|
1168
|
-
#define sd_GapSecParamsReplyCmd_sec_keyset_MSGTYPE sd_types_BleGapSecKeyset
|
|
1169
|
-
|
|
1170
|
-
#define sd_GapAuthKeyReplyCmd_FIELDLIST(X, a) \
|
|
1171
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1172
|
-
X(a, STATIC, SINGULAR, UENUM, key_type, 2) \
|
|
1173
|
-
X(a, STATIC, SINGULAR, BYTES, key, 3)
|
|
1174
|
-
#define sd_GapAuthKeyReplyCmd_CALLBACK NULL
|
|
1175
|
-
#define sd_GapAuthKeyReplyCmd_DEFAULT NULL
|
|
1176
|
-
|
|
1177
|
-
#define sd_GapLescDhkeyReplyCmd_FIELDLIST(X, a) \
|
|
1178
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1179
|
-
X(a, STATIC, OPTIONAL, MESSAGE, dhkey, 2)
|
|
1180
|
-
#define sd_GapLescDhkeyReplyCmd_CALLBACK NULL
|
|
1181
|
-
#define sd_GapLescDhkeyReplyCmd_DEFAULT NULL
|
|
1182
|
-
#define sd_GapLescDhkeyReplyCmd_dhkey_MSGTYPE sd_types_BleGapLescDhkey
|
|
1183
|
-
|
|
1184
|
-
#define sd_GapKeypressNotifyCmd_FIELDLIST(X, a) \
|
|
1185
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1186
|
-
X(a, STATIC, SINGULAR, UENUM, kp_not, 2)
|
|
1187
|
-
#define sd_GapKeypressNotifyCmd_CALLBACK NULL
|
|
1188
|
-
#define sd_GapKeypressNotifyCmd_DEFAULT NULL
|
|
1189
|
-
|
|
1190
|
-
#define sd_GapLescOobDataGetCmd_FIELDLIST(X, a) \
|
|
1191
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1192
|
-
X(a, STATIC, OPTIONAL, MESSAGE, pk_own, 2)
|
|
1193
|
-
#define sd_GapLescOobDataGetCmd_CALLBACK NULL
|
|
1194
|
-
#define sd_GapLescOobDataGetCmd_DEFAULT NULL
|
|
1195
|
-
#define sd_GapLescOobDataGetCmd_pk_own_MSGTYPE sd_types_BleGapLescP256Pk
|
|
1196
|
-
|
|
1197
|
-
#define sd_GapLescOobDataSetCmd_FIELDLIST(X, a) \
|
|
1198
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1199
|
-
X(a, STATIC, OPTIONAL, MESSAGE, oobd_own, 2) \
|
|
1200
|
-
X(a, STATIC, OPTIONAL, MESSAGE, oobd_peer, 3)
|
|
1201
|
-
#define sd_GapLescOobDataSetCmd_CALLBACK NULL
|
|
1202
|
-
#define sd_GapLescOobDataSetCmd_DEFAULT NULL
|
|
1203
|
-
#define sd_GapLescOobDataSetCmd_oobd_own_MSGTYPE sd_types_BleGapLescOobData
|
|
1204
|
-
#define sd_GapLescOobDataSetCmd_oobd_peer_MSGTYPE sd_types_BleGapLescOobData
|
|
1205
|
-
|
|
1206
|
-
#define sd_GapEncryptCmd_FIELDLIST(X, a) \
|
|
1207
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1208
|
-
X(a, STATIC, OPTIONAL, MESSAGE, master_id, 2) \
|
|
1209
|
-
X(a, STATIC, OPTIONAL, MESSAGE, enc_info, 3)
|
|
1210
|
-
#define sd_GapEncryptCmd_CALLBACK NULL
|
|
1211
|
-
#define sd_GapEncryptCmd_DEFAULT NULL
|
|
1212
|
-
#define sd_GapEncryptCmd_master_id_MSGTYPE sd_types_BleGapMasterId
|
|
1213
|
-
#define sd_GapEncryptCmd_enc_info_MSGTYPE sd_types_BleGapEncInfo
|
|
1214
|
-
|
|
1215
|
-
#define sd_GapSecInfoReplyCmd_FIELDLIST(X, a) \
|
|
1216
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1217
|
-
X(a, STATIC, OPTIONAL, MESSAGE, enc_info, 2) \
|
|
1218
|
-
X(a, STATIC, OPTIONAL, MESSAGE, id_info, 3) \
|
|
1219
|
-
X(a, STATIC, OPTIONAL, MESSAGE, sign_info, 4)
|
|
1220
|
-
#define sd_GapSecInfoReplyCmd_CALLBACK NULL
|
|
1221
|
-
#define sd_GapSecInfoReplyCmd_DEFAULT NULL
|
|
1222
|
-
#define sd_GapSecInfoReplyCmd_enc_info_MSGTYPE sd_types_BleGapEncInfo
|
|
1223
|
-
#define sd_GapSecInfoReplyCmd_id_info_MSGTYPE sd_types_BleGapIrk
|
|
1224
|
-
#define sd_GapSecInfoReplyCmd_sign_info_MSGTYPE sd_types_BleGapSignInfo
|
|
1225
|
-
|
|
1226
|
-
#define sd_GapConnSecGetCmd_FIELDLIST(X, a) \
|
|
1227
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1)
|
|
1228
|
-
#define sd_GapConnSecGetCmd_CALLBACK NULL
|
|
1229
|
-
#define sd_GapConnSecGetCmd_DEFAULT NULL
|
|
1230
|
-
|
|
1231
|
-
#define sd_GapRssiStartCmd_FIELDLIST(X, a) \
|
|
1232
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1233
|
-
X(a, STATIC, SINGULAR, UINT32, threshold_dbm, 2) \
|
|
1234
|
-
X(a, STATIC, SINGULAR, UINT32, skip_count, 3)
|
|
1235
|
-
#define sd_GapRssiStartCmd_CALLBACK NULL
|
|
1236
|
-
#define sd_GapRssiStartCmd_DEFAULT NULL
|
|
1237
|
-
|
|
1238
|
-
#define sd_GapRssiStopCmd_FIELDLIST(X, a) \
|
|
1239
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1)
|
|
1240
|
-
#define sd_GapRssiStopCmd_CALLBACK NULL
|
|
1241
|
-
#define sd_GapRssiStopCmd_DEFAULT NULL
|
|
1242
|
-
|
|
1243
|
-
#define sd_GapScanStartCmd_FIELDLIST(X, a) \
|
|
1244
|
-
X(a, STATIC, OPTIONAL, MESSAGE, scan_params, 1)
|
|
1245
|
-
#define sd_GapScanStartCmd_CALLBACK NULL
|
|
1246
|
-
#define sd_GapScanStartCmd_DEFAULT NULL
|
|
1247
|
-
#define sd_GapScanStartCmd_scan_params_MSGTYPE sd_types_BleGapScanParams
|
|
1248
|
-
|
|
1249
|
-
#define sd_GapScanStopCmd_FIELDLIST(X, a) \
|
|
1250
|
-
|
|
1251
|
-
#define sd_GapScanStopCmd_CALLBACK NULL
|
|
1252
|
-
#define sd_GapScanStopCmd_DEFAULT NULL
|
|
1253
|
-
|
|
1254
|
-
#define sd_GapConnectCmd_FIELDLIST(X, a) \
|
|
1255
|
-
X(a, STATIC, OPTIONAL, MESSAGE, peer_addr, 1) \
|
|
1256
|
-
X(a, STATIC, OPTIONAL, MESSAGE, scan_params, 2) \
|
|
1257
|
-
X(a, STATIC, OPTIONAL, MESSAGE, conn_params, 3) \
|
|
1258
|
-
X(a, STATIC, SINGULAR, UINT32, conn_cfg_tag, 4)
|
|
1259
|
-
#define sd_GapConnectCmd_CALLBACK NULL
|
|
1260
|
-
#define sd_GapConnectCmd_DEFAULT NULL
|
|
1261
|
-
#define sd_GapConnectCmd_peer_addr_MSGTYPE sd_types_BleGapAddr
|
|
1262
|
-
#define sd_GapConnectCmd_scan_params_MSGTYPE sd_types_BleGapScanParams
|
|
1263
|
-
#define sd_GapConnectCmd_conn_params_MSGTYPE sd_types_BleGapConnParams
|
|
1264
|
-
|
|
1265
|
-
#define sd_GapConnectCancelCmd_FIELDLIST(X, a) \
|
|
1266
|
-
|
|
1267
|
-
#define sd_GapConnectCancelCmd_CALLBACK NULL
|
|
1268
|
-
#define sd_GapConnectCancelCmd_DEFAULT NULL
|
|
1269
|
-
|
|
1270
|
-
#define sd_GapRssiGetCmd_FIELDLIST(X, a) \
|
|
1271
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1)
|
|
1272
|
-
#define sd_GapRssiGetCmd_CALLBACK NULL
|
|
1273
|
-
#define sd_GapRssiGetCmd_DEFAULT NULL
|
|
1274
|
-
|
|
1275
|
-
#define sd_BleGapPhysCmd_FIELDLIST(X, a) \
|
|
1276
|
-
X(a, STATIC, SINGULAR, UENUM, tx_phys, 1) \
|
|
1277
|
-
X(a, STATIC, SINGULAR, UENUM, rx_phys, 2)
|
|
1278
|
-
#define sd_BleGapPhysCmd_CALLBACK NULL
|
|
1279
|
-
#define sd_BleGapPhysCmd_DEFAULT NULL
|
|
1280
|
-
|
|
1281
|
-
#define sd_GapPhyUpdateCmd_FIELDLIST(X, a) \
|
|
1282
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1283
|
-
X(a, STATIC, OPTIONAL, MESSAGE, phys, 2)
|
|
1284
|
-
#define sd_GapPhyUpdateCmd_CALLBACK NULL
|
|
1285
|
-
#define sd_GapPhyUpdateCmd_DEFAULT NULL
|
|
1286
|
-
#define sd_GapPhyUpdateCmd_phys_MSGTYPE sd_BleGapPhysCmd
|
|
1287
|
-
|
|
1288
|
-
#define sd_GapDataLengthUpdateCmd_FIELDLIST(X, a) \
|
|
1289
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1290
|
-
X(a, STATIC, OPTIONAL, MESSAGE, dl_params, 2) \
|
|
1291
|
-
X(a, STATIC, OPTIONAL, MESSAGE, dl_limitation, 3)
|
|
1292
|
-
#define sd_GapDataLengthUpdateCmd_CALLBACK NULL
|
|
1293
|
-
#define sd_GapDataLengthUpdateCmd_DEFAULT NULL
|
|
1294
|
-
#define sd_GapDataLengthUpdateCmd_dl_params_MSGTYPE sd_types_BleGapDataLengthParams
|
|
1295
|
-
#define sd_GapDataLengthUpdateCmd_dl_limitation_MSGTYPE sd_types_BleGapDataLengthLimitation
|
|
1296
|
-
|
|
1297
|
-
#define sd_GapQosChannelSurveyStartCmd_FIELDLIST(X, a) \
|
|
1298
|
-
X(a, STATIC, SINGULAR, UINT32, interval_us, 1)
|
|
1299
|
-
#define sd_GapQosChannelSurveyStartCmd_CALLBACK NULL
|
|
1300
|
-
#define sd_GapQosChannelSurveyStartCmd_DEFAULT NULL
|
|
1301
|
-
|
|
1302
|
-
#define sd_GapQosChannelSurveyStopCmd_FIELDLIST(X, a) \
|
|
1303
|
-
|
|
1304
|
-
#define sd_GapQosChannelSurveyStopCmd_CALLBACK NULL
|
|
1305
|
-
#define sd_GapQosChannelSurveyStopCmd_DEFAULT NULL
|
|
1306
|
-
|
|
1307
|
-
#define sd_GapAdvAddrGetCmd_FIELDLIST(X, a) \
|
|
1308
|
-
X(a, STATIC, SINGULAR, UINT32, adv_handle, 1)
|
|
1309
|
-
#define sd_GapAdvAddrGetCmd_CALLBACK NULL
|
|
1310
|
-
#define sd_GapAdvAddrGetCmd_DEFAULT NULL
|
|
1311
|
-
|
|
1312
|
-
#define sd_GapNextConnEvtCounterGetCmd_FIELDLIST(X, a) \
|
|
1313
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1)
|
|
1314
|
-
#define sd_GapNextConnEvtCounterGetCmd_CALLBACK NULL
|
|
1315
|
-
#define sd_GapNextConnEvtCounterGetCmd_DEFAULT NULL
|
|
1316
|
-
|
|
1317
|
-
#define sd_GapConnEvtTriggerStartCmd_FIELDLIST(X, a) \
|
|
1318
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1) \
|
|
1319
|
-
X(a, STATIC, OPTIONAL, MESSAGE, params, 2)
|
|
1320
|
-
#define sd_GapConnEvtTriggerStartCmd_CALLBACK NULL
|
|
1321
|
-
#define sd_GapConnEvtTriggerStartCmd_DEFAULT NULL
|
|
1322
|
-
#define sd_GapConnEvtTriggerStartCmd_params_MSGTYPE sd_types_BleGapConnEventTrigger
|
|
1323
|
-
|
|
1324
|
-
#define sd_GapConnEvtTriggerStopCmd_FIELDLIST(X, a) \
|
|
1325
|
-
X(a, STATIC, SINGULAR, UINT32, conn_handle, 1)
|
|
1326
|
-
#define sd_GapConnEvtTriggerStopCmd_CALLBACK NULL
|
|
1327
|
-
#define sd_GapConnEvtTriggerStopCmd_DEFAULT NULL
|
|
1328
|
-
|
|
1329
|
-
#define sd_GapAddrSetRsp_FIELDLIST(X, a) \
|
|
1330
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1331
|
-
#define sd_GapAddrSetRsp_CALLBACK NULL
|
|
1332
|
-
#define sd_GapAddrSetRsp_DEFAULT NULL
|
|
1333
|
-
|
|
1334
|
-
#define sd_GapAddrGetRsp_FIELDLIST(X, a) \
|
|
1335
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1) \
|
|
1336
|
-
X(a, STATIC, OPTIONAL, MESSAGE, addr, 2)
|
|
1337
|
-
#define sd_GapAddrGetRsp_CALLBACK NULL
|
|
1338
|
-
#define sd_GapAddrGetRsp_DEFAULT NULL
|
|
1339
|
-
#define sd_GapAddrGetRsp_addr_MSGTYPE sd_types_BleGapAddr
|
|
1340
|
-
|
|
1341
|
-
#define sd_GapWhitelistSetRsp_FIELDLIST(X, a) \
|
|
1342
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1343
|
-
#define sd_GapWhitelistSetRsp_CALLBACK NULL
|
|
1344
|
-
#define sd_GapWhitelistSetRsp_DEFAULT NULL
|
|
1345
|
-
|
|
1346
|
-
#define sd_GapDeviceIdentitiesSetRsp_FIELDLIST(X, a) \
|
|
1347
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1348
|
-
#define sd_GapDeviceIdentitiesSetRsp_CALLBACK NULL
|
|
1349
|
-
#define sd_GapDeviceIdentitiesSetRsp_DEFAULT NULL
|
|
1350
|
-
|
|
1351
|
-
#define sd_GapPrivacySetRsp_FIELDLIST(X, a) \
|
|
1352
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1353
|
-
#define sd_GapPrivacySetRsp_CALLBACK NULL
|
|
1354
|
-
#define sd_GapPrivacySetRsp_DEFAULT NULL
|
|
1355
|
-
|
|
1356
|
-
#define sd_GapPrivacyGetRsp_FIELDLIST(X, a) \
|
|
1357
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1) \
|
|
1358
|
-
X(a, STATIC, OPTIONAL, MESSAGE, privacy_params, 2)
|
|
1359
|
-
#define sd_GapPrivacyGetRsp_CALLBACK NULL
|
|
1360
|
-
#define sd_GapPrivacyGetRsp_DEFAULT NULL
|
|
1361
|
-
#define sd_GapPrivacyGetRsp_privacy_params_MSGTYPE sd_types_BleGapPrivacyParams
|
|
1362
|
-
|
|
1363
|
-
#define sd_GapAdvSetConfigureRsp_FIELDLIST(X, a) \
|
|
1364
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1) \
|
|
1365
|
-
X(a, STATIC, SINGULAR, UINT32, adv_handle, 2)
|
|
1366
|
-
#define sd_GapAdvSetConfigureRsp_CALLBACK NULL
|
|
1367
|
-
#define sd_GapAdvSetConfigureRsp_DEFAULT NULL
|
|
1368
|
-
|
|
1369
|
-
#define sd_GapAdvStartRsp_FIELDLIST(X, a) \
|
|
1370
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1371
|
-
#define sd_GapAdvStartRsp_CALLBACK NULL
|
|
1372
|
-
#define sd_GapAdvStartRsp_DEFAULT NULL
|
|
1373
|
-
|
|
1374
|
-
#define sd_GapAdvStopRsp_FIELDLIST(X, a) \
|
|
1375
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1376
|
-
#define sd_GapAdvStopRsp_CALLBACK NULL
|
|
1377
|
-
#define sd_GapAdvStopRsp_DEFAULT NULL
|
|
1378
|
-
|
|
1379
|
-
#define sd_GapConnParamUpdateRsp_FIELDLIST(X, a) \
|
|
1380
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1381
|
-
#define sd_GapConnParamUpdateRsp_CALLBACK NULL
|
|
1382
|
-
#define sd_GapConnParamUpdateRsp_DEFAULT NULL
|
|
1383
|
-
|
|
1384
|
-
#define sd_GapDisconnectRsp_FIELDLIST(X, a) \
|
|
1385
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1386
|
-
#define sd_GapDisconnectRsp_CALLBACK NULL
|
|
1387
|
-
#define sd_GapDisconnectRsp_DEFAULT NULL
|
|
1388
|
-
|
|
1389
|
-
#define sd_GapTxPowerSetRsp_FIELDLIST(X, a) \
|
|
1390
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1391
|
-
#define sd_GapTxPowerSetRsp_CALLBACK NULL
|
|
1392
|
-
#define sd_GapTxPowerSetRsp_DEFAULT NULL
|
|
1393
|
-
|
|
1394
|
-
#define sd_GapAppearanceSetRsp_FIELDLIST(X, a) \
|
|
1395
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1396
|
-
#define sd_GapAppearanceSetRsp_CALLBACK NULL
|
|
1397
|
-
#define sd_GapAppearanceSetRsp_DEFAULT NULL
|
|
1398
|
-
|
|
1399
|
-
#define sd_GapAppearanceGetRsp_FIELDLIST(X, a) \
|
|
1400
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1) \
|
|
1401
|
-
X(a, STATIC, SINGULAR, UINT32, appearance, 2)
|
|
1402
|
-
#define sd_GapAppearanceGetRsp_CALLBACK NULL
|
|
1403
|
-
#define sd_GapAppearanceGetRsp_DEFAULT NULL
|
|
1404
|
-
|
|
1405
|
-
#define sd_GapPpcpSetRsp_FIELDLIST(X, a) \
|
|
1406
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1407
|
-
#define sd_GapPpcpSetRsp_CALLBACK NULL
|
|
1408
|
-
#define sd_GapPpcpSetRsp_DEFAULT NULL
|
|
1409
|
-
|
|
1410
|
-
#define sd_GapPpcpGetRsp_FIELDLIST(X, a) \
|
|
1411
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1) \
|
|
1412
|
-
X(a, STATIC, OPTIONAL, MESSAGE, conn_params, 2)
|
|
1413
|
-
#define sd_GapPpcpGetRsp_CALLBACK NULL
|
|
1414
|
-
#define sd_GapPpcpGetRsp_DEFAULT NULL
|
|
1415
|
-
#define sd_GapPpcpGetRsp_conn_params_MSGTYPE sd_types_BleGapConnParams
|
|
1416
|
-
|
|
1417
|
-
#define sd_GapDeviceNameSetRsp_FIELDLIST(X, a) \
|
|
1418
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1419
|
-
#define sd_GapDeviceNameSetRsp_CALLBACK NULL
|
|
1420
|
-
#define sd_GapDeviceNameSetRsp_DEFAULT NULL
|
|
1421
|
-
|
|
1422
|
-
#define sd_GapDeviceNameGetRsp_FIELDLIST(X, a) \
|
|
1423
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1) \
|
|
1424
|
-
X(a, STATIC, SINGULAR, BYTES, dev_name, 2) \
|
|
1425
|
-
X(a, STATIC, SINGULAR, UINT32, len, 3)
|
|
1426
|
-
#define sd_GapDeviceNameGetRsp_CALLBACK NULL
|
|
1427
|
-
#define sd_GapDeviceNameGetRsp_DEFAULT NULL
|
|
1428
|
-
|
|
1429
|
-
#define sd_GapAuthenticateRsp_FIELDLIST(X, a) \
|
|
1430
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1431
|
-
#define sd_GapAuthenticateRsp_CALLBACK NULL
|
|
1432
|
-
#define sd_GapAuthenticateRsp_DEFAULT NULL
|
|
1433
|
-
|
|
1434
|
-
#define sd_GapSecParamsReplyRsp_FIELDLIST(X, a) \
|
|
1435
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1436
|
-
#define sd_GapSecParamsReplyRsp_CALLBACK NULL
|
|
1437
|
-
#define sd_GapSecParamsReplyRsp_DEFAULT NULL
|
|
1438
|
-
|
|
1439
|
-
#define sd_GapAuthKeyReplyRsp_FIELDLIST(X, a) \
|
|
1440
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1441
|
-
#define sd_GapAuthKeyReplyRsp_CALLBACK NULL
|
|
1442
|
-
#define sd_GapAuthKeyReplyRsp_DEFAULT NULL
|
|
1443
|
-
|
|
1444
|
-
#define sd_GapLescDhkeyReplyRsp_FIELDLIST(X, a) \
|
|
1445
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1446
|
-
#define sd_GapLescDhkeyReplyRsp_CALLBACK NULL
|
|
1447
|
-
#define sd_GapLescDhkeyReplyRsp_DEFAULT NULL
|
|
1448
|
-
|
|
1449
|
-
#define sd_GapKeypressNotifyRsp_FIELDLIST(X, a) \
|
|
1450
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1451
|
-
#define sd_GapKeypressNotifyRsp_CALLBACK NULL
|
|
1452
|
-
#define sd_GapKeypressNotifyRsp_DEFAULT NULL
|
|
1453
|
-
|
|
1454
|
-
#define sd_GapLescOobDataGetRsp_FIELDLIST(X, a) \
|
|
1455
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1) \
|
|
1456
|
-
X(a, STATIC, OPTIONAL, MESSAGE, oobd_own, 2)
|
|
1457
|
-
#define sd_GapLescOobDataGetRsp_CALLBACK NULL
|
|
1458
|
-
#define sd_GapLescOobDataGetRsp_DEFAULT NULL
|
|
1459
|
-
#define sd_GapLescOobDataGetRsp_oobd_own_MSGTYPE sd_types_BleGapLescOobData
|
|
1460
|
-
|
|
1461
|
-
#define sd_GapLescOobDataSetRsp_FIELDLIST(X, a) \
|
|
1462
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1463
|
-
#define sd_GapLescOobDataSetRsp_CALLBACK NULL
|
|
1464
|
-
#define sd_GapLescOobDataSetRsp_DEFAULT NULL
|
|
1465
|
-
|
|
1466
|
-
#define sd_GapEncryptRsp_FIELDLIST(X, a) \
|
|
1467
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1468
|
-
#define sd_GapEncryptRsp_CALLBACK NULL
|
|
1469
|
-
#define sd_GapEncryptRsp_DEFAULT NULL
|
|
1470
|
-
|
|
1471
|
-
#define sd_GapSecInfoReplyRsp_FIELDLIST(X, a) \
|
|
1472
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1473
|
-
#define sd_GapSecInfoReplyRsp_CALLBACK NULL
|
|
1474
|
-
#define sd_GapSecInfoReplyRsp_DEFAULT NULL
|
|
1475
|
-
|
|
1476
|
-
#define sd_GapConnSecGetRsp_FIELDLIST(X, a) \
|
|
1477
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1) \
|
|
1478
|
-
X(a, STATIC, OPTIONAL, MESSAGE, conn_sec, 2)
|
|
1479
|
-
#define sd_GapConnSecGetRsp_CALLBACK NULL
|
|
1480
|
-
#define sd_GapConnSecGetRsp_DEFAULT NULL
|
|
1481
|
-
#define sd_GapConnSecGetRsp_conn_sec_MSGTYPE sd_types_BleGapConnSec
|
|
1482
|
-
|
|
1483
|
-
#define sd_GapRssiStartRsp_FIELDLIST(X, a) \
|
|
1484
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1485
|
-
#define sd_GapRssiStartRsp_CALLBACK NULL
|
|
1486
|
-
#define sd_GapRssiStartRsp_DEFAULT NULL
|
|
1487
|
-
|
|
1488
|
-
#define sd_GapRssiStopRsp_FIELDLIST(X, a) \
|
|
1489
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1490
|
-
#define sd_GapRssiStopRsp_CALLBACK NULL
|
|
1491
|
-
#define sd_GapRssiStopRsp_DEFAULT NULL
|
|
1492
|
-
|
|
1493
|
-
#define sd_GapScanStartRsp_FIELDLIST(X, a) \
|
|
1494
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1495
|
-
#define sd_GapScanStartRsp_CALLBACK NULL
|
|
1496
|
-
#define sd_GapScanStartRsp_DEFAULT NULL
|
|
1497
|
-
|
|
1498
|
-
#define sd_GapScanStopRsp_FIELDLIST(X, a) \
|
|
1499
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1500
|
-
#define sd_GapScanStopRsp_CALLBACK NULL
|
|
1501
|
-
#define sd_GapScanStopRsp_DEFAULT NULL
|
|
1502
|
-
|
|
1503
|
-
#define sd_GapConnectRsp_FIELDLIST(X, a) \
|
|
1504
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1505
|
-
#define sd_GapConnectRsp_CALLBACK NULL
|
|
1506
|
-
#define sd_GapConnectRsp_DEFAULT NULL
|
|
1507
|
-
|
|
1508
|
-
#define sd_GapConnectCancelRsp_FIELDLIST(X, a) \
|
|
1509
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1510
|
-
#define sd_GapConnectCancelRsp_CALLBACK NULL
|
|
1511
|
-
#define sd_GapConnectCancelRsp_DEFAULT NULL
|
|
1512
|
-
|
|
1513
|
-
#define sd_GapRssiGetRsp_FIELDLIST(X, a) \
|
|
1514
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1) \
|
|
1515
|
-
X(a, STATIC, SINGULAR, SINT32, rssi, 2)
|
|
1516
|
-
#define sd_GapRssiGetRsp_CALLBACK NULL
|
|
1517
|
-
#define sd_GapRssiGetRsp_DEFAULT NULL
|
|
1518
|
-
|
|
1519
|
-
#define sd_GapPhyUpdateRsp_FIELDLIST(X, a) \
|
|
1520
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1521
|
-
#define sd_GapPhyUpdateRsp_CALLBACK NULL
|
|
1522
|
-
#define sd_GapPhyUpdateRsp_DEFAULT NULL
|
|
1523
|
-
|
|
1524
|
-
#define sd_GapDataLengthUpdateRsp_FIELDLIST(X, a) \
|
|
1525
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1) \
|
|
1526
|
-
X(a, STATIC, OPTIONAL, MESSAGE, dl_params, 2) \
|
|
1527
|
-
X(a, STATIC, OPTIONAL, MESSAGE, dl_limitation, 3)
|
|
1528
|
-
#define sd_GapDataLengthUpdateRsp_CALLBACK NULL
|
|
1529
|
-
#define sd_GapDataLengthUpdateRsp_DEFAULT NULL
|
|
1530
|
-
#define sd_GapDataLengthUpdateRsp_dl_params_MSGTYPE sd_types_BleGapDataLengthParams
|
|
1531
|
-
#define sd_GapDataLengthUpdateRsp_dl_limitation_MSGTYPE sd_types_BleGapDataLengthLimitation
|
|
1532
|
-
|
|
1533
|
-
#define sd_GapQosChannelSurveyStartRsp_FIELDLIST(X, a) \
|
|
1534
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1535
|
-
#define sd_GapQosChannelSurveyStartRsp_CALLBACK NULL
|
|
1536
|
-
#define sd_GapQosChannelSurveyStartRsp_DEFAULT NULL
|
|
1537
|
-
|
|
1538
|
-
#define sd_GapQosChannelSurveyStopRsp_FIELDLIST(X, a) \
|
|
1539
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1540
|
-
#define sd_GapQosChannelSurveyStopRsp_CALLBACK NULL
|
|
1541
|
-
#define sd_GapQosChannelSurveyStopRsp_DEFAULT NULL
|
|
1542
|
-
|
|
1543
|
-
#define sd_GapAdvAddrGetRsp_FIELDLIST(X, a) \
|
|
1544
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1) \
|
|
1545
|
-
X(a, STATIC, OPTIONAL, MESSAGE, addr, 2)
|
|
1546
|
-
#define sd_GapAdvAddrGetRsp_CALLBACK NULL
|
|
1547
|
-
#define sd_GapAdvAddrGetRsp_DEFAULT NULL
|
|
1548
|
-
#define sd_GapAdvAddrGetRsp_addr_MSGTYPE sd_types_BleGapAddr
|
|
1549
|
-
|
|
1550
|
-
#define sd_GapNextConnEvtCounterGetRsp_FIELDLIST(X, a) \
|
|
1551
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1) \
|
|
1552
|
-
X(a, STATIC, SINGULAR, UINT32, count, 2)
|
|
1553
|
-
#define sd_GapNextConnEvtCounterGetRsp_CALLBACK NULL
|
|
1554
|
-
#define sd_GapNextConnEvtCounterGetRsp_DEFAULT NULL
|
|
1555
|
-
|
|
1556
|
-
#define sd_GapConnEvtTriggerStartRsp_FIELDLIST(X, a) \
|
|
1557
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1558
|
-
#define sd_GapConnEvtTriggerStartRsp_CALLBACK NULL
|
|
1559
|
-
#define sd_GapConnEvtTriggerStartRsp_DEFAULT NULL
|
|
1560
|
-
|
|
1561
|
-
#define sd_GapConnEvtTriggerStopRsp_FIELDLIST(X, a) \
|
|
1562
|
-
X(a, STATIC, SINGULAR, UINT32, ret_code, 1)
|
|
1563
|
-
#define sd_GapConnEvtTriggerStopRsp_CALLBACK NULL
|
|
1564
|
-
#define sd_GapConnEvtTriggerStopRsp_DEFAULT NULL
|
|
1565
|
-
|
|
1566
|
-
#define sd_GapEvtConnected_FIELDLIST(X, a) \
|
|
1567
|
-
X(a, STATIC, OPTIONAL, MESSAGE, peer_addr, 1) \
|
|
1568
|
-
X(a, STATIC, SINGULAR, UINT32, role, 2) \
|
|
1569
|
-
X(a, STATIC, OPTIONAL, MESSAGE, conn_params, 3) \
|
|
1570
|
-
X(a, STATIC, SINGULAR, UINT32, adv_handle, 4) \
|
|
1571
|
-
X(a, STATIC, OPTIONAL, MESSAGE, adv_data, 5)
|
|
1572
|
-
#define sd_GapEvtConnected_CALLBACK NULL
|
|
1573
|
-
#define sd_GapEvtConnected_DEFAULT NULL
|
|
1574
|
-
#define sd_GapEvtConnected_peer_addr_MSGTYPE sd_types_BleGapAddr
|
|
1575
|
-
#define sd_GapEvtConnected_conn_params_MSGTYPE sd_types_BleGapConnParams
|
|
1576
|
-
#define sd_GapEvtConnected_adv_data_MSGTYPE sd_types_BleGapAdvData
|
|
1577
|
-
|
|
1578
|
-
#define sd_GapEvtDisconnected_FIELDLIST(X, a) \
|
|
1579
|
-
X(a, STATIC, SINGULAR, UINT32, reason, 1)
|
|
1580
|
-
#define sd_GapEvtDisconnected_CALLBACK NULL
|
|
1581
|
-
#define sd_GapEvtDisconnected_DEFAULT NULL
|
|
1582
|
-
|
|
1583
|
-
#define sd_GapEvtConnParamUpdate_FIELDLIST(X, a) \
|
|
1584
|
-
X(a, STATIC, OPTIONAL, MESSAGE, conn_params, 1)
|
|
1585
|
-
#define sd_GapEvtConnParamUpdate_CALLBACK NULL
|
|
1586
|
-
#define sd_GapEvtConnParamUpdate_DEFAULT NULL
|
|
1587
|
-
#define sd_GapEvtConnParamUpdate_conn_params_MSGTYPE sd_types_BleGapConnParams
|
|
1588
|
-
|
|
1589
|
-
#define sd_GapEvtSecParamsRequest_FIELDLIST(X, a) \
|
|
1590
|
-
X(a, STATIC, OPTIONAL, MESSAGE, peer_params, 1)
|
|
1591
|
-
#define sd_GapEvtSecParamsRequest_CALLBACK NULL
|
|
1592
|
-
#define sd_GapEvtSecParamsRequest_DEFAULT NULL
|
|
1593
|
-
#define sd_GapEvtSecParamsRequest_peer_params_MSGTYPE sd_types_BleGapSecParams
|
|
1594
|
-
|
|
1595
|
-
#define sd_GapEvtSecInfoRequest_FIELDLIST(X, a) \
|
|
1596
|
-
X(a, STATIC, OPTIONAL, MESSAGE, peer_addr, 1) \
|
|
1597
|
-
X(a, STATIC, OPTIONAL, MESSAGE, master_id, 2) \
|
|
1598
|
-
X(a, STATIC, SINGULAR, UINT32, enc_info, 3) \
|
|
1599
|
-
X(a, STATIC, SINGULAR, UINT32, id_info, 4) \
|
|
1600
|
-
X(a, STATIC, SINGULAR, UINT32, sign_info, 5)
|
|
1601
|
-
#define sd_GapEvtSecInfoRequest_CALLBACK NULL
|
|
1602
|
-
#define sd_GapEvtSecInfoRequest_DEFAULT NULL
|
|
1603
|
-
#define sd_GapEvtSecInfoRequest_peer_addr_MSGTYPE sd_types_BleGapAddr
|
|
1604
|
-
#define sd_GapEvtSecInfoRequest_master_id_MSGTYPE sd_types_BleGapMasterId
|
|
1605
|
-
|
|
1606
|
-
#define sd_GapEvtPasskeyDisplay_FIELDLIST(X, a) \
|
|
1607
|
-
X(a, STATIC, SINGULAR, FIXED_LENGTH_BYTES, passkey, 1) \
|
|
1608
|
-
X(a, STATIC, SINGULAR, BOOL, match_request, 2)
|
|
1609
|
-
#define sd_GapEvtPasskeyDisplay_CALLBACK NULL
|
|
1610
|
-
#define sd_GapEvtPasskeyDisplay_DEFAULT NULL
|
|
1611
|
-
|
|
1612
|
-
#define sd_GapEvtKeyPressed_FIELDLIST(X, a) \
|
|
1613
|
-
X(a, STATIC, SINGULAR, UENUM, kp_not, 1)
|
|
1614
|
-
#define sd_GapEvtKeyPressed_CALLBACK NULL
|
|
1615
|
-
#define sd_GapEvtKeyPressed_DEFAULT NULL
|
|
1616
|
-
|
|
1617
|
-
#define sd_GapEvtAuthKeyRequest_FIELDLIST(X, a) \
|
|
1618
|
-
X(a, STATIC, SINGULAR, UENUM, key_type, 1)
|
|
1619
|
-
#define sd_GapEvtAuthKeyRequest_CALLBACK NULL
|
|
1620
|
-
#define sd_GapEvtAuthKeyRequest_DEFAULT NULL
|
|
1621
|
-
|
|
1622
|
-
#define sd_GapEvtLescDhkeyRequest_FIELDLIST(X, a) \
|
|
1623
|
-
X(a, STATIC, OPTIONAL, MESSAGE, pk_peer, 1) \
|
|
1624
|
-
X(a, STATIC, SINGULAR, BOOL, oobd_req, 2)
|
|
1625
|
-
#define sd_GapEvtLescDhkeyRequest_CALLBACK NULL
|
|
1626
|
-
#define sd_GapEvtLescDhkeyRequest_DEFAULT NULL
|
|
1627
|
-
#define sd_GapEvtLescDhkeyRequest_pk_peer_MSGTYPE sd_types_BleGapLescP256Pk
|
|
1628
|
-
|
|
1629
|
-
#define sd_GapEvtAuthStatus_FIELDLIST(X, a) \
|
|
1630
|
-
X(a, STATIC, SINGULAR, UENUM, auth_status, 1) \
|
|
1631
|
-
X(a, STATIC, SINGULAR, UINT32, error_src, 2) \
|
|
1632
|
-
X(a, STATIC, SINGULAR, BOOL, bonded, 3) \
|
|
1633
|
-
X(a, STATIC, SINGULAR, BOOL, lesc, 4) \
|
|
1634
|
-
X(a, STATIC, OPTIONAL, MESSAGE, sm1_levels, 5) \
|
|
1635
|
-
X(a, STATIC, OPTIONAL, MESSAGE, sm2_levels, 6) \
|
|
1636
|
-
X(a, STATIC, OPTIONAL, MESSAGE, kdist_own, 7) \
|
|
1637
|
-
X(a, STATIC, OPTIONAL, MESSAGE, kdist_peer, 8)
|
|
1638
|
-
#define sd_GapEvtAuthStatus_CALLBACK NULL
|
|
1639
|
-
#define sd_GapEvtAuthStatus_DEFAULT NULL
|
|
1640
|
-
#define sd_GapEvtAuthStatus_sm1_levels_MSGTYPE sd_types_BleGapSecLevelsT
|
|
1641
|
-
#define sd_GapEvtAuthStatus_sm2_levels_MSGTYPE sd_types_BleGapSecLevelsT
|
|
1642
|
-
#define sd_GapEvtAuthStatus_kdist_own_MSGTYPE sd_types_BleGapSecKdist
|
|
1643
|
-
#define sd_GapEvtAuthStatus_kdist_peer_MSGTYPE sd_types_BleGapSecKdist
|
|
1644
|
-
|
|
1645
|
-
#define sd_GapEvtConnSecUpdate_FIELDLIST(X, a) \
|
|
1646
|
-
X(a, STATIC, OPTIONAL, MESSAGE, conn_sec, 1)
|
|
1647
|
-
#define sd_GapEvtConnSecUpdate_CALLBACK NULL
|
|
1648
|
-
#define sd_GapEvtConnSecUpdate_DEFAULT NULL
|
|
1649
|
-
#define sd_GapEvtConnSecUpdate_conn_sec_MSGTYPE sd_types_BleGapConnSec
|
|
1650
|
-
|
|
1651
|
-
#define sd_GapEvtTimeout_FIELDLIST(X, a) \
|
|
1652
|
-
X(a, STATIC, SINGULAR, UENUM, src, 1) \
|
|
1653
|
-
X(a, STATIC, OPTIONAL, MESSAGE, adv_report_buffer, 2)
|
|
1654
|
-
#define sd_GapEvtTimeout_CALLBACK NULL
|
|
1655
|
-
#define sd_GapEvtTimeout_DEFAULT NULL
|
|
1656
|
-
#define sd_GapEvtTimeout_adv_report_buffer_MSGTYPE sd_types_BleData
|
|
1657
|
-
|
|
1658
|
-
#define sd_GapEvtRssiChanged_FIELDLIST(X, a) \
|
|
1659
|
-
X(a, STATIC, SINGULAR, SINT32, rssi, 1) \
|
|
1660
|
-
X(a, STATIC, SINGULAR, UINT32, ch_index, 2)
|
|
1661
|
-
#define sd_GapEvtRssiChanged_CALLBACK NULL
|
|
1662
|
-
#define sd_GapEvtRssiChanged_DEFAULT NULL
|
|
1663
|
-
|
|
1664
|
-
#define sd_GapEvtAdvReport_FIELDLIST(X, a) \
|
|
1665
|
-
X(a, STATIC, OPTIONAL, MESSAGE, type, 1) \
|
|
1666
|
-
X(a, STATIC, OPTIONAL, MESSAGE, peer_addr, 2) \
|
|
1667
|
-
X(a, STATIC, OPTIONAL, MESSAGE, direct_addr, 3) \
|
|
1668
|
-
X(a, STATIC, SINGULAR, UENUM, primary_phy, 4) \
|
|
1669
|
-
X(a, STATIC, SINGULAR, UENUM, secondary_phy, 5) \
|
|
1670
|
-
X(a, STATIC, SINGULAR, SINT32, tx_power, 6) \
|
|
1671
|
-
X(a, STATIC, SINGULAR, SINT32, rssi, 7) \
|
|
1672
|
-
X(a, STATIC, SINGULAR, UINT32, ch_index, 8) \
|
|
1673
|
-
X(a, STATIC, SINGULAR, UINT32, set_id, 9) \
|
|
1674
|
-
X(a, STATIC, SINGULAR, UINT32, data_id, 10) \
|
|
1675
|
-
X(a, STATIC, OPTIONAL, MESSAGE, data, 11) \
|
|
1676
|
-
X(a, STATIC, OPTIONAL, MESSAGE, aux_pointer, 12)
|
|
1677
|
-
#define sd_GapEvtAdvReport_CALLBACK NULL
|
|
1678
|
-
#define sd_GapEvtAdvReport_DEFAULT NULL
|
|
1679
|
-
#define sd_GapEvtAdvReport_type_MSGTYPE sd_types_BleGapAdvReportTypeT
|
|
1680
|
-
#define sd_GapEvtAdvReport_peer_addr_MSGTYPE sd_types_BleGapAddr
|
|
1681
|
-
#define sd_GapEvtAdvReport_direct_addr_MSGTYPE sd_types_BleGapAddr
|
|
1682
|
-
#define sd_GapEvtAdvReport_data_MSGTYPE sd_types_BleData
|
|
1683
|
-
#define sd_GapEvtAdvReport_aux_pointer_MSGTYPE sd_types_BleGapAuxPointer
|
|
1684
|
-
|
|
1685
|
-
#define sd_GapEvtSecRequest_FIELDLIST(X, a) \
|
|
1686
|
-
X(a, STATIC, SINGULAR, BOOL, bond, 1) \
|
|
1687
|
-
X(a, STATIC, SINGULAR, BOOL, mitm, 2) \
|
|
1688
|
-
X(a, STATIC, SINGULAR, BOOL, lesc, 3) \
|
|
1689
|
-
X(a, STATIC, SINGULAR, BOOL, keypress, 4)
|
|
1690
|
-
#define sd_GapEvtSecRequest_CALLBACK NULL
|
|
1691
|
-
#define sd_GapEvtSecRequest_DEFAULT NULL
|
|
1692
|
-
|
|
1693
|
-
#define sd_GapEvtConnParamUpdateRequest_FIELDLIST(X, a) \
|
|
1694
|
-
X(a, STATIC, OPTIONAL, MESSAGE, conn_params, 1)
|
|
1695
|
-
#define sd_GapEvtConnParamUpdateRequest_CALLBACK NULL
|
|
1696
|
-
#define sd_GapEvtConnParamUpdateRequest_DEFAULT NULL
|
|
1697
|
-
#define sd_GapEvtConnParamUpdateRequest_conn_params_MSGTYPE sd_types_BleGapConnParams
|
|
1698
|
-
|
|
1699
|
-
#define sd_GapEvtScanReqReport_FIELDLIST(X, a) \
|
|
1700
|
-
X(a, STATIC, SINGULAR, UINT32, adv_handle, 1) \
|
|
1701
|
-
X(a, STATIC, SINGULAR, SINT32, rssi, 2) \
|
|
1702
|
-
X(a, STATIC, OPTIONAL, MESSAGE, peer_addr, 3)
|
|
1703
|
-
#define sd_GapEvtScanReqReport_CALLBACK NULL
|
|
1704
|
-
#define sd_GapEvtScanReqReport_DEFAULT NULL
|
|
1705
|
-
#define sd_GapEvtScanReqReport_peer_addr_MSGTYPE sd_types_BleGapAddr
|
|
1706
|
-
|
|
1707
|
-
#define sd_GapEvtPhyUpdateRequest_FIELDLIST(X, a) \
|
|
1708
|
-
X(a, STATIC, SINGULAR, UENUM, tx_phys, 1) \
|
|
1709
|
-
X(a, STATIC, SINGULAR, UENUM, rx_phys, 2)
|
|
1710
|
-
#define sd_GapEvtPhyUpdateRequest_CALLBACK NULL
|
|
1711
|
-
#define sd_GapEvtPhyUpdateRequest_DEFAULT NULL
|
|
1712
|
-
|
|
1713
|
-
#define sd_GapEvtPhyUpdate_FIELDLIST(X, a) \
|
|
1714
|
-
X(a, STATIC, SINGULAR, UINT32, status, 1) \
|
|
1715
|
-
X(a, STATIC, SINGULAR, UENUM, tx_phy, 2) \
|
|
1716
|
-
X(a, STATIC, SINGULAR, UENUM, rx_phy, 3)
|
|
1717
|
-
#define sd_GapEvtPhyUpdate_CALLBACK NULL
|
|
1718
|
-
#define sd_GapEvtPhyUpdate_DEFAULT NULL
|
|
1719
|
-
|
|
1720
|
-
#define sd_GapEvtDataLengthUpdateRequest_FIELDLIST(X, a) \
|
|
1721
|
-
X(a, STATIC, OPTIONAL, MESSAGE, peer_params, 1)
|
|
1722
|
-
#define sd_GapEvtDataLengthUpdateRequest_CALLBACK NULL
|
|
1723
|
-
#define sd_GapEvtDataLengthUpdateRequest_DEFAULT NULL
|
|
1724
|
-
#define sd_GapEvtDataLengthUpdateRequest_peer_params_MSGTYPE sd_types_BleGapDataLengthParams
|
|
1725
|
-
|
|
1726
|
-
#define sd_GapEvtDataLengthUpdate_FIELDLIST(X, a) \
|
|
1727
|
-
X(a, STATIC, OPTIONAL, MESSAGE, effective_params, 1)
|
|
1728
|
-
#define sd_GapEvtDataLengthUpdate_CALLBACK NULL
|
|
1729
|
-
#define sd_GapEvtDataLengthUpdate_DEFAULT NULL
|
|
1730
|
-
#define sd_GapEvtDataLengthUpdate_effective_params_MSGTYPE sd_types_BleGapDataLengthParams
|
|
1731
|
-
|
|
1732
|
-
#define sd_GapEvtQosChannelSurveyReport_FIELDLIST(X, a) \
|
|
1733
|
-
X(a, STATIC, REPEATED, SINT32, channel_energy, 1)
|
|
1734
|
-
#define sd_GapEvtQosChannelSurveyReport_CALLBACK NULL
|
|
1735
|
-
#define sd_GapEvtQosChannelSurveyReport_DEFAULT NULL
|
|
1736
|
-
|
|
1737
|
-
#define sd_GapEvtAdvSetTerminated_FIELDLIST(X, a) \
|
|
1738
|
-
X(a, STATIC, SINGULAR, UENUM, reason, 1) \
|
|
1739
|
-
X(a, STATIC, SINGULAR, UINT32, adv_handle, 2) \
|
|
1740
|
-
X(a, STATIC, SINGULAR, UINT32, num_completed_adv_events, 3) \
|
|
1741
|
-
X(a, STATIC, OPTIONAL, MESSAGE, adv_data, 4)
|
|
1742
|
-
#define sd_GapEvtAdvSetTerminated_CALLBACK NULL
|
|
1743
|
-
#define sd_GapEvtAdvSetTerminated_DEFAULT NULL
|
|
1744
|
-
#define sd_GapEvtAdvSetTerminated_adv_data_MSGTYPE sd_types_BleGapAdvData
|
|
1745
|
-
|
|
1746
|
-
extern const pb_msgdesc_t sd_GapAddrSetCmd_msg;
|
|
1747
|
-
extern const pb_msgdesc_t sd_GapAddrGetCmd_msg;
|
|
1748
|
-
extern const pb_msgdesc_t sd_GapWhitelistSetCmd_msg;
|
|
1749
|
-
extern const pb_msgdesc_t sd_GapDeviceIdentitiesSetCmd_msg;
|
|
1750
|
-
extern const pb_msgdesc_t sd_GapPrivacySetCmd_msg;
|
|
1751
|
-
extern const pb_msgdesc_t sd_GapPrivacyGetCmd_msg;
|
|
1752
|
-
extern const pb_msgdesc_t sd_GapAdvSetConfigureCmd_msg;
|
|
1753
|
-
extern const pb_msgdesc_t sd_GapAdvStartCmd_msg;
|
|
1754
|
-
extern const pb_msgdesc_t sd_GapAdvStopCmd_msg;
|
|
1755
|
-
extern const pb_msgdesc_t sd_GapConnParamUpdateCmd_msg;
|
|
1756
|
-
extern const pb_msgdesc_t sd_GapDisconnectCmd_msg;
|
|
1757
|
-
extern const pb_msgdesc_t sd_GapTxPowerSetCmd_msg;
|
|
1758
|
-
extern const pb_msgdesc_t sd_GapAppearanceSetCmd_msg;
|
|
1759
|
-
extern const pb_msgdesc_t sd_GapAppearanceGetCmd_msg;
|
|
1760
|
-
extern const pb_msgdesc_t sd_GapPpcpSetCmd_msg;
|
|
1761
|
-
extern const pb_msgdesc_t sd_GapPpcpGetCmd_msg;
|
|
1762
|
-
extern const pb_msgdesc_t sd_GapDeviceNameSetCmd_msg;
|
|
1763
|
-
extern const pb_msgdesc_t sd_GapDeviceNameGetCmd_msg;
|
|
1764
|
-
extern const pb_msgdesc_t sd_GapAuthenticateCmd_msg;
|
|
1765
|
-
extern const pb_msgdesc_t sd_GapSecParamsReplyCmd_msg;
|
|
1766
|
-
extern const pb_msgdesc_t sd_GapAuthKeyReplyCmd_msg;
|
|
1767
|
-
extern const pb_msgdesc_t sd_GapLescDhkeyReplyCmd_msg;
|
|
1768
|
-
extern const pb_msgdesc_t sd_GapKeypressNotifyCmd_msg;
|
|
1769
|
-
extern const pb_msgdesc_t sd_GapLescOobDataGetCmd_msg;
|
|
1770
|
-
extern const pb_msgdesc_t sd_GapLescOobDataSetCmd_msg;
|
|
1771
|
-
extern const pb_msgdesc_t sd_GapEncryptCmd_msg;
|
|
1772
|
-
extern const pb_msgdesc_t sd_GapSecInfoReplyCmd_msg;
|
|
1773
|
-
extern const pb_msgdesc_t sd_GapConnSecGetCmd_msg;
|
|
1774
|
-
extern const pb_msgdesc_t sd_GapRssiStartCmd_msg;
|
|
1775
|
-
extern const pb_msgdesc_t sd_GapRssiStopCmd_msg;
|
|
1776
|
-
extern const pb_msgdesc_t sd_GapScanStartCmd_msg;
|
|
1777
|
-
extern const pb_msgdesc_t sd_GapScanStopCmd_msg;
|
|
1778
|
-
extern const pb_msgdesc_t sd_GapConnectCmd_msg;
|
|
1779
|
-
extern const pb_msgdesc_t sd_GapConnectCancelCmd_msg;
|
|
1780
|
-
extern const pb_msgdesc_t sd_GapRssiGetCmd_msg;
|
|
1781
|
-
extern const pb_msgdesc_t sd_BleGapPhysCmd_msg;
|
|
1782
|
-
extern const pb_msgdesc_t sd_GapPhyUpdateCmd_msg;
|
|
1783
|
-
extern const pb_msgdesc_t sd_GapDataLengthUpdateCmd_msg;
|
|
1784
|
-
extern const pb_msgdesc_t sd_GapQosChannelSurveyStartCmd_msg;
|
|
1785
|
-
extern const pb_msgdesc_t sd_GapQosChannelSurveyStopCmd_msg;
|
|
1786
|
-
extern const pb_msgdesc_t sd_GapAdvAddrGetCmd_msg;
|
|
1787
|
-
extern const pb_msgdesc_t sd_GapNextConnEvtCounterGetCmd_msg;
|
|
1788
|
-
extern const pb_msgdesc_t sd_GapConnEvtTriggerStartCmd_msg;
|
|
1789
|
-
extern const pb_msgdesc_t sd_GapConnEvtTriggerStopCmd_msg;
|
|
1790
|
-
extern const pb_msgdesc_t sd_GapAddrSetRsp_msg;
|
|
1791
|
-
extern const pb_msgdesc_t sd_GapAddrGetRsp_msg;
|
|
1792
|
-
extern const pb_msgdesc_t sd_GapWhitelistSetRsp_msg;
|
|
1793
|
-
extern const pb_msgdesc_t sd_GapDeviceIdentitiesSetRsp_msg;
|
|
1794
|
-
extern const pb_msgdesc_t sd_GapPrivacySetRsp_msg;
|
|
1795
|
-
extern const pb_msgdesc_t sd_GapPrivacyGetRsp_msg;
|
|
1796
|
-
extern const pb_msgdesc_t sd_GapAdvSetConfigureRsp_msg;
|
|
1797
|
-
extern const pb_msgdesc_t sd_GapAdvStartRsp_msg;
|
|
1798
|
-
extern const pb_msgdesc_t sd_GapAdvStopRsp_msg;
|
|
1799
|
-
extern const pb_msgdesc_t sd_GapConnParamUpdateRsp_msg;
|
|
1800
|
-
extern const pb_msgdesc_t sd_GapDisconnectRsp_msg;
|
|
1801
|
-
extern const pb_msgdesc_t sd_GapTxPowerSetRsp_msg;
|
|
1802
|
-
extern const pb_msgdesc_t sd_GapAppearanceSetRsp_msg;
|
|
1803
|
-
extern const pb_msgdesc_t sd_GapAppearanceGetRsp_msg;
|
|
1804
|
-
extern const pb_msgdesc_t sd_GapPpcpSetRsp_msg;
|
|
1805
|
-
extern const pb_msgdesc_t sd_GapPpcpGetRsp_msg;
|
|
1806
|
-
extern const pb_msgdesc_t sd_GapDeviceNameSetRsp_msg;
|
|
1807
|
-
extern const pb_msgdesc_t sd_GapDeviceNameGetRsp_msg;
|
|
1808
|
-
extern const pb_msgdesc_t sd_GapAuthenticateRsp_msg;
|
|
1809
|
-
extern const pb_msgdesc_t sd_GapSecParamsReplyRsp_msg;
|
|
1810
|
-
extern const pb_msgdesc_t sd_GapAuthKeyReplyRsp_msg;
|
|
1811
|
-
extern const pb_msgdesc_t sd_GapLescDhkeyReplyRsp_msg;
|
|
1812
|
-
extern const pb_msgdesc_t sd_GapKeypressNotifyRsp_msg;
|
|
1813
|
-
extern const pb_msgdesc_t sd_GapLescOobDataGetRsp_msg;
|
|
1814
|
-
extern const pb_msgdesc_t sd_GapLescOobDataSetRsp_msg;
|
|
1815
|
-
extern const pb_msgdesc_t sd_GapEncryptRsp_msg;
|
|
1816
|
-
extern const pb_msgdesc_t sd_GapSecInfoReplyRsp_msg;
|
|
1817
|
-
extern const pb_msgdesc_t sd_GapConnSecGetRsp_msg;
|
|
1818
|
-
extern const pb_msgdesc_t sd_GapRssiStartRsp_msg;
|
|
1819
|
-
extern const pb_msgdesc_t sd_GapRssiStopRsp_msg;
|
|
1820
|
-
extern const pb_msgdesc_t sd_GapScanStartRsp_msg;
|
|
1821
|
-
extern const pb_msgdesc_t sd_GapScanStopRsp_msg;
|
|
1822
|
-
extern const pb_msgdesc_t sd_GapConnectRsp_msg;
|
|
1823
|
-
extern const pb_msgdesc_t sd_GapConnectCancelRsp_msg;
|
|
1824
|
-
extern const pb_msgdesc_t sd_GapRssiGetRsp_msg;
|
|
1825
|
-
extern const pb_msgdesc_t sd_GapPhyUpdateRsp_msg;
|
|
1826
|
-
extern const pb_msgdesc_t sd_GapDataLengthUpdateRsp_msg;
|
|
1827
|
-
extern const pb_msgdesc_t sd_GapQosChannelSurveyStartRsp_msg;
|
|
1828
|
-
extern const pb_msgdesc_t sd_GapQosChannelSurveyStopRsp_msg;
|
|
1829
|
-
extern const pb_msgdesc_t sd_GapAdvAddrGetRsp_msg;
|
|
1830
|
-
extern const pb_msgdesc_t sd_GapNextConnEvtCounterGetRsp_msg;
|
|
1831
|
-
extern const pb_msgdesc_t sd_GapConnEvtTriggerStartRsp_msg;
|
|
1832
|
-
extern const pb_msgdesc_t sd_GapConnEvtTriggerStopRsp_msg;
|
|
1833
|
-
extern const pb_msgdesc_t sd_GapEvtConnected_msg;
|
|
1834
|
-
extern const pb_msgdesc_t sd_GapEvtDisconnected_msg;
|
|
1835
|
-
extern const pb_msgdesc_t sd_GapEvtConnParamUpdate_msg;
|
|
1836
|
-
extern const pb_msgdesc_t sd_GapEvtSecParamsRequest_msg;
|
|
1837
|
-
extern const pb_msgdesc_t sd_GapEvtSecInfoRequest_msg;
|
|
1838
|
-
extern const pb_msgdesc_t sd_GapEvtPasskeyDisplay_msg;
|
|
1839
|
-
extern const pb_msgdesc_t sd_GapEvtKeyPressed_msg;
|
|
1840
|
-
extern const pb_msgdesc_t sd_GapEvtAuthKeyRequest_msg;
|
|
1841
|
-
extern const pb_msgdesc_t sd_GapEvtLescDhkeyRequest_msg;
|
|
1842
|
-
extern const pb_msgdesc_t sd_GapEvtAuthStatus_msg;
|
|
1843
|
-
extern const pb_msgdesc_t sd_GapEvtConnSecUpdate_msg;
|
|
1844
|
-
extern const pb_msgdesc_t sd_GapEvtTimeout_msg;
|
|
1845
|
-
extern const pb_msgdesc_t sd_GapEvtRssiChanged_msg;
|
|
1846
|
-
extern const pb_msgdesc_t sd_GapEvtAdvReport_msg;
|
|
1847
|
-
extern const pb_msgdesc_t sd_GapEvtSecRequest_msg;
|
|
1848
|
-
extern const pb_msgdesc_t sd_GapEvtConnParamUpdateRequest_msg;
|
|
1849
|
-
extern const pb_msgdesc_t sd_GapEvtScanReqReport_msg;
|
|
1850
|
-
extern const pb_msgdesc_t sd_GapEvtPhyUpdateRequest_msg;
|
|
1851
|
-
extern const pb_msgdesc_t sd_GapEvtPhyUpdate_msg;
|
|
1852
|
-
extern const pb_msgdesc_t sd_GapEvtDataLengthUpdateRequest_msg;
|
|
1853
|
-
extern const pb_msgdesc_t sd_GapEvtDataLengthUpdate_msg;
|
|
1854
|
-
extern const pb_msgdesc_t sd_GapEvtQosChannelSurveyReport_msg;
|
|
1855
|
-
extern const pb_msgdesc_t sd_GapEvtAdvSetTerminated_msg;
|
|
1856
|
-
|
|
1857
|
-
/* Defines for backwards compatibility with code written before nanopb-0.4.0 */
|
|
1858
|
-
#define sd_GapAddrSetCmd_fields &sd_GapAddrSetCmd_msg
|
|
1859
|
-
#define sd_GapAddrGetCmd_fields &sd_GapAddrGetCmd_msg
|
|
1860
|
-
#define sd_GapWhitelistSetCmd_fields &sd_GapWhitelistSetCmd_msg
|
|
1861
|
-
#define sd_GapDeviceIdentitiesSetCmd_fields &sd_GapDeviceIdentitiesSetCmd_msg
|
|
1862
|
-
#define sd_GapPrivacySetCmd_fields &sd_GapPrivacySetCmd_msg
|
|
1863
|
-
#define sd_GapPrivacyGetCmd_fields &sd_GapPrivacyGetCmd_msg
|
|
1864
|
-
#define sd_GapAdvSetConfigureCmd_fields &sd_GapAdvSetConfigureCmd_msg
|
|
1865
|
-
#define sd_GapAdvStartCmd_fields &sd_GapAdvStartCmd_msg
|
|
1866
|
-
#define sd_GapAdvStopCmd_fields &sd_GapAdvStopCmd_msg
|
|
1867
|
-
#define sd_GapConnParamUpdateCmd_fields &sd_GapConnParamUpdateCmd_msg
|
|
1868
|
-
#define sd_GapDisconnectCmd_fields &sd_GapDisconnectCmd_msg
|
|
1869
|
-
#define sd_GapTxPowerSetCmd_fields &sd_GapTxPowerSetCmd_msg
|
|
1870
|
-
#define sd_GapAppearanceSetCmd_fields &sd_GapAppearanceSetCmd_msg
|
|
1871
|
-
#define sd_GapAppearanceGetCmd_fields &sd_GapAppearanceGetCmd_msg
|
|
1872
|
-
#define sd_GapPpcpSetCmd_fields &sd_GapPpcpSetCmd_msg
|
|
1873
|
-
#define sd_GapPpcpGetCmd_fields &sd_GapPpcpGetCmd_msg
|
|
1874
|
-
#define sd_GapDeviceNameSetCmd_fields &sd_GapDeviceNameSetCmd_msg
|
|
1875
|
-
#define sd_GapDeviceNameGetCmd_fields &sd_GapDeviceNameGetCmd_msg
|
|
1876
|
-
#define sd_GapAuthenticateCmd_fields &sd_GapAuthenticateCmd_msg
|
|
1877
|
-
#define sd_GapSecParamsReplyCmd_fields &sd_GapSecParamsReplyCmd_msg
|
|
1878
|
-
#define sd_GapAuthKeyReplyCmd_fields &sd_GapAuthKeyReplyCmd_msg
|
|
1879
|
-
#define sd_GapLescDhkeyReplyCmd_fields &sd_GapLescDhkeyReplyCmd_msg
|
|
1880
|
-
#define sd_GapKeypressNotifyCmd_fields &sd_GapKeypressNotifyCmd_msg
|
|
1881
|
-
#define sd_GapLescOobDataGetCmd_fields &sd_GapLescOobDataGetCmd_msg
|
|
1882
|
-
#define sd_GapLescOobDataSetCmd_fields &sd_GapLescOobDataSetCmd_msg
|
|
1883
|
-
#define sd_GapEncryptCmd_fields &sd_GapEncryptCmd_msg
|
|
1884
|
-
#define sd_GapSecInfoReplyCmd_fields &sd_GapSecInfoReplyCmd_msg
|
|
1885
|
-
#define sd_GapConnSecGetCmd_fields &sd_GapConnSecGetCmd_msg
|
|
1886
|
-
#define sd_GapRssiStartCmd_fields &sd_GapRssiStartCmd_msg
|
|
1887
|
-
#define sd_GapRssiStopCmd_fields &sd_GapRssiStopCmd_msg
|
|
1888
|
-
#define sd_GapScanStartCmd_fields &sd_GapScanStartCmd_msg
|
|
1889
|
-
#define sd_GapScanStopCmd_fields &sd_GapScanStopCmd_msg
|
|
1890
|
-
#define sd_GapConnectCmd_fields &sd_GapConnectCmd_msg
|
|
1891
|
-
#define sd_GapConnectCancelCmd_fields &sd_GapConnectCancelCmd_msg
|
|
1892
|
-
#define sd_GapRssiGetCmd_fields &sd_GapRssiGetCmd_msg
|
|
1893
|
-
#define sd_BleGapPhysCmd_fields &sd_BleGapPhysCmd_msg
|
|
1894
|
-
#define sd_GapPhyUpdateCmd_fields &sd_GapPhyUpdateCmd_msg
|
|
1895
|
-
#define sd_GapDataLengthUpdateCmd_fields &sd_GapDataLengthUpdateCmd_msg
|
|
1896
|
-
#define sd_GapQosChannelSurveyStartCmd_fields &sd_GapQosChannelSurveyStartCmd_msg
|
|
1897
|
-
#define sd_GapQosChannelSurveyStopCmd_fields &sd_GapQosChannelSurveyStopCmd_msg
|
|
1898
|
-
#define sd_GapAdvAddrGetCmd_fields &sd_GapAdvAddrGetCmd_msg
|
|
1899
|
-
#define sd_GapNextConnEvtCounterGetCmd_fields &sd_GapNextConnEvtCounterGetCmd_msg
|
|
1900
|
-
#define sd_GapConnEvtTriggerStartCmd_fields &sd_GapConnEvtTriggerStartCmd_msg
|
|
1901
|
-
#define sd_GapConnEvtTriggerStopCmd_fields &sd_GapConnEvtTriggerStopCmd_msg
|
|
1902
|
-
#define sd_GapAddrSetRsp_fields &sd_GapAddrSetRsp_msg
|
|
1903
|
-
#define sd_GapAddrGetRsp_fields &sd_GapAddrGetRsp_msg
|
|
1904
|
-
#define sd_GapWhitelistSetRsp_fields &sd_GapWhitelistSetRsp_msg
|
|
1905
|
-
#define sd_GapDeviceIdentitiesSetRsp_fields &sd_GapDeviceIdentitiesSetRsp_msg
|
|
1906
|
-
#define sd_GapPrivacySetRsp_fields &sd_GapPrivacySetRsp_msg
|
|
1907
|
-
#define sd_GapPrivacyGetRsp_fields &sd_GapPrivacyGetRsp_msg
|
|
1908
|
-
#define sd_GapAdvSetConfigureRsp_fields &sd_GapAdvSetConfigureRsp_msg
|
|
1909
|
-
#define sd_GapAdvStartRsp_fields &sd_GapAdvStartRsp_msg
|
|
1910
|
-
#define sd_GapAdvStopRsp_fields &sd_GapAdvStopRsp_msg
|
|
1911
|
-
#define sd_GapConnParamUpdateRsp_fields &sd_GapConnParamUpdateRsp_msg
|
|
1912
|
-
#define sd_GapDisconnectRsp_fields &sd_GapDisconnectRsp_msg
|
|
1913
|
-
#define sd_GapTxPowerSetRsp_fields &sd_GapTxPowerSetRsp_msg
|
|
1914
|
-
#define sd_GapAppearanceSetRsp_fields &sd_GapAppearanceSetRsp_msg
|
|
1915
|
-
#define sd_GapAppearanceGetRsp_fields &sd_GapAppearanceGetRsp_msg
|
|
1916
|
-
#define sd_GapPpcpSetRsp_fields &sd_GapPpcpSetRsp_msg
|
|
1917
|
-
#define sd_GapPpcpGetRsp_fields &sd_GapPpcpGetRsp_msg
|
|
1918
|
-
#define sd_GapDeviceNameSetRsp_fields &sd_GapDeviceNameSetRsp_msg
|
|
1919
|
-
#define sd_GapDeviceNameGetRsp_fields &sd_GapDeviceNameGetRsp_msg
|
|
1920
|
-
#define sd_GapAuthenticateRsp_fields &sd_GapAuthenticateRsp_msg
|
|
1921
|
-
#define sd_GapSecParamsReplyRsp_fields &sd_GapSecParamsReplyRsp_msg
|
|
1922
|
-
#define sd_GapAuthKeyReplyRsp_fields &sd_GapAuthKeyReplyRsp_msg
|
|
1923
|
-
#define sd_GapLescDhkeyReplyRsp_fields &sd_GapLescDhkeyReplyRsp_msg
|
|
1924
|
-
#define sd_GapKeypressNotifyRsp_fields &sd_GapKeypressNotifyRsp_msg
|
|
1925
|
-
#define sd_GapLescOobDataGetRsp_fields &sd_GapLescOobDataGetRsp_msg
|
|
1926
|
-
#define sd_GapLescOobDataSetRsp_fields &sd_GapLescOobDataSetRsp_msg
|
|
1927
|
-
#define sd_GapEncryptRsp_fields &sd_GapEncryptRsp_msg
|
|
1928
|
-
#define sd_GapSecInfoReplyRsp_fields &sd_GapSecInfoReplyRsp_msg
|
|
1929
|
-
#define sd_GapConnSecGetRsp_fields &sd_GapConnSecGetRsp_msg
|
|
1930
|
-
#define sd_GapRssiStartRsp_fields &sd_GapRssiStartRsp_msg
|
|
1931
|
-
#define sd_GapRssiStopRsp_fields &sd_GapRssiStopRsp_msg
|
|
1932
|
-
#define sd_GapScanStartRsp_fields &sd_GapScanStartRsp_msg
|
|
1933
|
-
#define sd_GapScanStopRsp_fields &sd_GapScanStopRsp_msg
|
|
1934
|
-
#define sd_GapConnectRsp_fields &sd_GapConnectRsp_msg
|
|
1935
|
-
#define sd_GapConnectCancelRsp_fields &sd_GapConnectCancelRsp_msg
|
|
1936
|
-
#define sd_GapRssiGetRsp_fields &sd_GapRssiGetRsp_msg
|
|
1937
|
-
#define sd_GapPhyUpdateRsp_fields &sd_GapPhyUpdateRsp_msg
|
|
1938
|
-
#define sd_GapDataLengthUpdateRsp_fields &sd_GapDataLengthUpdateRsp_msg
|
|
1939
|
-
#define sd_GapQosChannelSurveyStartRsp_fields &sd_GapQosChannelSurveyStartRsp_msg
|
|
1940
|
-
#define sd_GapQosChannelSurveyStopRsp_fields &sd_GapQosChannelSurveyStopRsp_msg
|
|
1941
|
-
#define sd_GapAdvAddrGetRsp_fields &sd_GapAdvAddrGetRsp_msg
|
|
1942
|
-
#define sd_GapNextConnEvtCounterGetRsp_fields &sd_GapNextConnEvtCounterGetRsp_msg
|
|
1943
|
-
#define sd_GapConnEvtTriggerStartRsp_fields &sd_GapConnEvtTriggerStartRsp_msg
|
|
1944
|
-
#define sd_GapConnEvtTriggerStopRsp_fields &sd_GapConnEvtTriggerStopRsp_msg
|
|
1945
|
-
#define sd_GapEvtConnected_fields &sd_GapEvtConnected_msg
|
|
1946
|
-
#define sd_GapEvtDisconnected_fields &sd_GapEvtDisconnected_msg
|
|
1947
|
-
#define sd_GapEvtConnParamUpdate_fields &sd_GapEvtConnParamUpdate_msg
|
|
1948
|
-
#define sd_GapEvtSecParamsRequest_fields &sd_GapEvtSecParamsRequest_msg
|
|
1949
|
-
#define sd_GapEvtSecInfoRequest_fields &sd_GapEvtSecInfoRequest_msg
|
|
1950
|
-
#define sd_GapEvtPasskeyDisplay_fields &sd_GapEvtPasskeyDisplay_msg
|
|
1951
|
-
#define sd_GapEvtKeyPressed_fields &sd_GapEvtKeyPressed_msg
|
|
1952
|
-
#define sd_GapEvtAuthKeyRequest_fields &sd_GapEvtAuthKeyRequest_msg
|
|
1953
|
-
#define sd_GapEvtLescDhkeyRequest_fields &sd_GapEvtLescDhkeyRequest_msg
|
|
1954
|
-
#define sd_GapEvtAuthStatus_fields &sd_GapEvtAuthStatus_msg
|
|
1955
|
-
#define sd_GapEvtConnSecUpdate_fields &sd_GapEvtConnSecUpdate_msg
|
|
1956
|
-
#define sd_GapEvtTimeout_fields &sd_GapEvtTimeout_msg
|
|
1957
|
-
#define sd_GapEvtRssiChanged_fields &sd_GapEvtRssiChanged_msg
|
|
1958
|
-
#define sd_GapEvtAdvReport_fields &sd_GapEvtAdvReport_msg
|
|
1959
|
-
#define sd_GapEvtSecRequest_fields &sd_GapEvtSecRequest_msg
|
|
1960
|
-
#define sd_GapEvtConnParamUpdateRequest_fields &sd_GapEvtConnParamUpdateRequest_msg
|
|
1961
|
-
#define sd_GapEvtScanReqReport_fields &sd_GapEvtScanReqReport_msg
|
|
1962
|
-
#define sd_GapEvtPhyUpdateRequest_fields &sd_GapEvtPhyUpdateRequest_msg
|
|
1963
|
-
#define sd_GapEvtPhyUpdate_fields &sd_GapEvtPhyUpdate_msg
|
|
1964
|
-
#define sd_GapEvtDataLengthUpdateRequest_fields &sd_GapEvtDataLengthUpdateRequest_msg
|
|
1965
|
-
#define sd_GapEvtDataLengthUpdate_fields &sd_GapEvtDataLengthUpdate_msg
|
|
1966
|
-
#define sd_GapEvtQosChannelSurveyReport_fields &sd_GapEvtQosChannelSurveyReport_msg
|
|
1967
|
-
#define sd_GapEvtAdvSetTerminated_fields &sd_GapEvtAdvSetTerminated_msg
|
|
1968
|
-
|
|
1969
|
-
/* Maximum encoded size of messages (where known) */
|
|
1970
|
-
#define SD_SOFTDEVICE_GAP_PB_H_MAX_SIZE sd_GapAdvSetConfigureCmd_size
|
|
1971
|
-
#define sd_BleGapPhysCmd_size 6
|
|
1972
|
-
#define sd_GapAddrGetCmd_size 0
|
|
1973
|
-
#define sd_GapAddrGetRsp_size 20
|
|
1974
|
-
#define sd_GapAddrSetCmd_size 14
|
|
1975
|
-
#define sd_GapAddrSetRsp_size 6
|
|
1976
|
-
#define sd_GapAdvAddrGetCmd_size 3
|
|
1977
|
-
#define sd_GapAdvAddrGetRsp_size 20
|
|
1978
|
-
#define sd_GapAdvSetConfigureCmd_size 595
|
|
1979
|
-
#define sd_GapAdvSetConfigureRsp_size 9
|
|
1980
|
-
#define sd_GapAdvStartCmd_size 6
|
|
1981
|
-
#define sd_GapAdvStartRsp_size 6
|
|
1982
|
-
#define sd_GapAdvStopCmd_size 3
|
|
1983
|
-
#define sd_GapAdvStopRsp_size 6
|
|
1984
|
-
#define sd_GapAppearanceGetCmd_size 0
|
|
1985
|
-
#define sd_GapAppearanceGetRsp_size 10
|
|
1986
|
-
#define sd_GapAppearanceSetCmd_size 4
|
|
1987
|
-
#define sd_GapAppearanceSetRsp_size 6
|
|
1988
|
-
#define sd_GapAuthKeyReplyCmd_size 24
|
|
1989
|
-
#define sd_GapAuthKeyReplyRsp_size 6
|
|
1990
|
-
#define sd_GapAuthenticateCmd_size 44
|
|
1991
|
-
#define sd_GapAuthenticateRsp_size 6
|
|
1992
|
-
#define sd_GapConnEvtTriggerStartCmd_size 23
|
|
1993
|
-
#define sd_GapConnEvtTriggerStartRsp_size 6
|
|
1994
|
-
#define sd_GapConnEvtTriggerStopCmd_size 4
|
|
1995
|
-
#define sd_GapConnEvtTriggerStopRsp_size 6
|
|
1996
|
-
#define sd_GapConnParamUpdateCmd_size 22
|
|
1997
|
-
#define sd_GapConnParamUpdateRsp_size 6
|
|
1998
|
-
#define sd_GapConnSecGetCmd_size 4
|
|
1999
|
-
#define sd_GapConnSecGetRsp_size 19
|
|
2000
|
-
#define sd_GapConnectCancelCmd_size 0
|
|
2001
|
-
#define sd_GapConnectCancelRsp_size 6
|
|
2002
|
-
#define sd_GapConnectCmd_size 70
|
|
2003
|
-
#define sd_GapConnectRsp_size 6
|
|
2004
|
-
#define sd_GapDataLengthUpdateCmd_size 36
|
|
2005
|
-
#define sd_GapDataLengthUpdateRsp_size 38
|
|
2006
|
-
#define sd_GapDeviceIdentitiesSetCmd_size 451
|
|
2007
|
-
#define sd_GapDeviceIdentitiesSetRsp_size 6
|
|
2008
|
-
#define sd_GapDeviceNameGetCmd_size 0
|
|
2009
|
-
#define sd_GapDeviceNameGetRsp_size 261
|
|
2010
|
-
#define sd_GapDeviceNameSetCmd_size 263
|
|
2011
|
-
#define sd_GapDeviceNameSetRsp_size 6
|
|
2012
|
-
#define sd_GapDisconnectCmd_size 7
|
|
2013
|
-
#define sd_GapDisconnectRsp_size 6
|
|
2014
|
-
#define sd_GapEncryptCmd_size 47
|
|
2015
|
-
#define sd_GapEncryptRsp_size 6
|
|
2016
|
-
#define sd_GapEvtAdvReport_size 342
|
|
2017
|
-
#define sd_GapEvtAdvSetTerminated_size 541
|
|
2018
|
-
#define sd_GapEvtAuthKeyRequest_size 2
|
|
2019
|
-
#define sd_GapEvtAuthStatus_size 50
|
|
2020
|
-
#define sd_GapEvtConnParamUpdateRequest_size 18
|
|
2021
|
-
#define sd_GapEvtConnParamUpdate_size 18
|
|
2022
|
-
#define sd_GapEvtConnSecUpdate_size 13
|
|
2023
|
-
#define sd_GapEvtConnected_size 571
|
|
2024
|
-
#define sd_GapEvtDataLengthUpdateRequest_size 18
|
|
2025
|
-
#define sd_GapEvtDataLengthUpdate_size 18
|
|
2026
|
-
#define sd_GapEvtDisconnected_size 3
|
|
2027
|
-
#define sd_GapEvtKeyPressed_size 2
|
|
2028
|
-
#define sd_GapEvtLescDhkeyRequest_size 70
|
|
2029
|
-
#define sd_GapEvtPasskeyDisplay_size 10
|
|
2030
|
-
#define sd_GapEvtPhyUpdateRequest_size 6
|
|
2031
|
-
#define sd_GapEvtPhyUpdate_size 10
|
|
2032
|
-
#define sd_GapEvtQosChannelSurveyReport_size 240
|
|
2033
|
-
#define sd_GapEvtRssiChanged_size 6
|
|
2034
|
-
#define sd_GapEvtScanReqReport_size 20
|
|
2035
|
-
#define sd_GapEvtSecInfoRequest_size 39
|
|
2036
|
-
#define sd_GapEvtSecParamsRequest_size 40
|
|
2037
|
-
#define sd_GapEvtSecRequest_size 8
|
|
2038
|
-
#define sd_GapEvtTimeout_size 267
|
|
2039
|
-
#define sd_GapKeypressNotifyCmd_size 6
|
|
2040
|
-
#define sd_GapKeypressNotifyRsp_size 6
|
|
2041
|
-
#define sd_GapLescDhkeyReplyCmd_size 40
|
|
2042
|
-
#define sd_GapLescDhkeyReplyRsp_size 6
|
|
2043
|
-
#define sd_GapLescOobDataGetCmd_size 72
|
|
2044
|
-
#define sd_GapLescOobDataGetRsp_size 58
|
|
2045
|
-
#define sd_GapLescOobDataSetCmd_size 108
|
|
2046
|
-
#define sd_GapLescOobDataSetRsp_size 6
|
|
2047
|
-
#define sd_GapNextConnEvtCounterGetCmd_size 4
|
|
2048
|
-
#define sd_GapNextConnEvtCounterGetRsp_size 10
|
|
2049
|
-
#define sd_GapPhyUpdateCmd_size 12
|
|
2050
|
-
#define sd_GapPhyUpdateRsp_size 6
|
|
2051
|
-
#define sd_GapPpcpGetCmd_size 0
|
|
2052
|
-
#define sd_GapPpcpGetRsp_size 24
|
|
2053
|
-
#define sd_GapPpcpSetCmd_size 18
|
|
2054
|
-
#define sd_GapPpcpSetRsp_size 6
|
|
2055
|
-
#define sd_GapPrivacyGetCmd_size 0
|
|
2056
|
-
#define sd_GapPrivacyGetRsp_size 36
|
|
2057
|
-
#define sd_GapPrivacySetCmd_size 30
|
|
2058
|
-
#define sd_GapPrivacySetRsp_size 6
|
|
2059
|
-
#define sd_GapQosChannelSurveyStartCmd_size 6
|
|
2060
|
-
#define sd_GapQosChannelSurveyStartRsp_size 6
|
|
2061
|
-
#define sd_GapQosChannelSurveyStopCmd_size 0
|
|
2062
|
-
#define sd_GapQosChannelSurveyStopRsp_size 6
|
|
2063
|
-
#define sd_GapRssiGetCmd_size 4
|
|
2064
|
-
#define sd_GapRssiGetRsp_size 9
|
|
2065
|
-
#define sd_GapRssiStartCmd_size 10
|
|
2066
|
-
#define sd_GapRssiStartRsp_size 6
|
|
2067
|
-
#define sd_GapRssiStopCmd_size 4
|
|
2068
|
-
#define sd_GapRssiStopRsp_size 6
|
|
2069
|
-
#define sd_GapScanStartCmd_size 35
|
|
2070
|
-
#define sd_GapScanStartRsp_size 6
|
|
2071
|
-
#define sd_GapScanStopCmd_size 0
|
|
2072
|
-
#define sd_GapScanStopRsp_size 6
|
|
2073
|
-
#define sd_GapSecInfoReplyCmd_size 71
|
|
2074
|
-
#define sd_GapSecInfoReplyRsp_size 6
|
|
2075
|
-
#define sd_GapSecParamsReplyCmd_size 394
|
|
2076
|
-
#define sd_GapSecParamsReplyRsp_size 6
|
|
2077
|
-
#define sd_GapTxPowerSetCmd_size 10
|
|
2078
|
-
#define sd_GapTxPowerSetRsp_size 6
|
|
2079
|
-
#define sd_GapWhitelistSetCmd_size 115
|
|
2080
|
-
#define sd_GapWhitelistSetRsp_size 6
|
|
2081
|
-
|
|
2082
|
-
#ifdef __cplusplus
|
|
2083
|
-
} /* extern "C" */
|
|
2084
|
-
#endif
|
|
2085
|
-
|
|
2086
|
-
#endif
|