Zephyr API Documentation
2.7.0-rc2
A Scalable Open Source RTOS
hci_vs.h
Go to the documentation of this file.
1
/* hci_vs.h - Bluetooth Host Control Interface Vendor Specific definitions */
2
3
/*
4
* Copyright (c) 2017-2018 Nordic Semiconductor ASA
5
* Copyright (c) 2015-2016 Intel Corporation
6
*
7
* SPDX-License-Identifier: Apache-2.0
8
*/
9
#ifndef ZEPHYR_INCLUDE_BLUETOOTH_HCI_VS_H_
10
#define ZEPHYR_INCLUDE_BLUETOOTH_HCI_VS_H_
11
12
#include <
bluetooth/hci.h
>
13
14
#ifdef __cplusplus
15
extern
"C"
{
16
#endif
17
18
#define BT_VS_CMD_BIT_VERSION 0
19
#define BT_VS_CMD_BIT_SUP_CMD 1
20
#define BT_VS_CMD_BIT_SUP_FEAT 2
21
#define BT_VS_CMD_BIT_SET_EVT_MASK 3
22
#define BT_VS_CMD_BIT_RESET 4
23
#define BT_VS_CMD_BIT_WRITE_BDADDR 5
24
#define BT_VS_CMD_BIT_SET_TRACE_ENABLE 6
25
#define BT_VS_CMD_BIT_READ_BUILD_INFO 7
26
#define BT_VS_CMD_BIT_READ_STATIC_ADDRS 8
27
#define BT_VS_CMD_BIT_READ_KEY_ROOTS 9
28
#define BT_VS_CMD_BIT_READ_CHIP_TEMP 10
29
#define BT_VS_CMD_BIT_READ_HOST_STACK_CMD 11
30
#define BT_VS_CMD_BIT_SET_SCAN_REP_ENABLE 12
31
#define BT_VS_CMD_BIT_WRITE_TX_POWER 13
32
#define BT_VS_CMD_BIT_READ_TX_POWER 14
33
34
#define BT_VS_CMD_SUP_FEAT(cmd) BT_LE_FEAT_TEST(cmd, \
35
BT_VS_CMD_BIT_SUP_FEAT)
36
#define BT_VS_CMD_READ_STATIC_ADDRS(cmd) BT_LE_FEAT_TEST(cmd, \
37
BT_VS_CMD_BIT_READ_STATIC_ADDRS)
38
#define BT_VS_CMD_READ_KEY_ROOTS(cmd) BT_LE_FEAT_TEST(cmd, \
39
BT_VS_CMD_BIT_READ_KEY_ROOTS)
40
41
#define BT_HCI_VS_HW_PLAT_INTEL 0x0001
42
#define BT_HCI_VS_HW_PLAT_NORDIC 0x0002
43
#define BT_HCI_VS_HW_PLAT_NXP 0x0003
44
45
#define BT_HCI_VS_HW_VAR_NORDIC_NRF51X 0x0001
46
#define BT_HCI_VS_HW_VAR_NORDIC_NRF52X 0x0002
47
#define BT_HCI_VS_HW_VAR_NORDIC_NRF53X 0x0003
48
49
#define BT_HCI_VS_FW_VAR_STANDARD_CTLR 0x0001
50
#define BT_HCI_VS_FW_VAR_VS_CTLR 0x0002
51
#define BT_HCI_VS_FW_VAR_FW_LOADER 0x0003
52
#define BT_HCI_VS_FW_VAR_RESCUE_IMG 0x0004
53
#define BT_HCI_OP_VS_READ_VERSION_INFO BT_OP(BT_OGF_VS, 0x0001)
54
struct
bt_hci_rp_vs_read_version_info
{
55
uint8_t
status
;
56
uint16_t
hw_platform
;
57
uint16_t
hw_variant
;
58
uint8_t
fw_variant
;
59
uint8_t
fw_version
;
60
uint16_t
fw_revision
;
61
uint32_t
fw_build
;
62
} __packed;
63
64
#define BT_HCI_OP_VS_READ_SUPPORTED_COMMANDS BT_OP(BT_OGF_VS, 0x0002)
65
struct
bt_hci_rp_vs_read_supported_commands
{
66
uint8_t
status
;
67
uint8_t
commands
[64];
68
} __packed;
69
70
#define BT_HCI_OP_VS_READ_SUPPORTED_FEATURES BT_OP(BT_OGF_VS, 0x0003)
71
struct
bt_hci_rp_vs_read_supported_features
{
72
uint8_t
status
;
73
uint8_t
features
[8];
74
} __packed;
75
76
#define BT_HCI_OP_VS_SET_EVENT_MASK BT_OP(BT_OGF_VS, 0x0004)
77
struct
bt_hci_cp_vs_set_event_mask
{
78
uint8_t
event_mask
[8];
79
} __packed;
80
81
#define BT_HCI_VS_RESET_SOFT 0x00
82
#define BT_HCI_VS_RESET_HARD 0x01
83
#define BT_HCI_OP_VS_RESET BT_OP(BT_OGF_VS, 0x0005)
84
struct
bt_hci_cp_vs_reset
{
85
uint8_t
type
;
86
} __packed;
87
88
#define BT_HCI_OP_VS_WRITE_BD_ADDR BT_OP(BT_OGF_VS, 0x0006)
89
struct
bt_hci_cp_vs_write_bd_addr
{
90
bt_addr_t
bdaddr
;
91
} __packed;
92
93
#define BT_HCI_VS_TRACE_DISABLED 0x00
94
#define BT_HCI_VS_TRACE_ENABLED 0x01
95
96
#define BT_HCI_VS_TRACE_HCI_EVTS 0x00
97
#define BT_HCI_VS_TRACE_VDC 0x01
98
#define BT_HCI_OP_VS_SET_TRACE_ENABLE BT_OP(BT_OGF_VS, 0x0007)
99
struct
bt_hci_cp_vs_set_trace_enable
{
100
uint8_t
enable
;
101
uint8_t
type
;
102
} __packed;
103
104
#define BT_HCI_OP_VS_READ_BUILD_INFO BT_OP(BT_OGF_VS, 0x0008)
105
struct
bt_hci_rp_vs_read_build_info
{
106
uint8_t
status
;
107
uint8_t
info
[0];
108
} __packed;
109
110
struct
bt_hci_vs_static_addr
{
111
bt_addr_t
bdaddr
;
112
uint8_t
ir
[16];
113
} __packed;
114
115
#define BT_HCI_OP_VS_READ_STATIC_ADDRS BT_OP(BT_OGF_VS, 0x0009)
116
struct
bt_hci_rp_vs_read_static_addrs
{
117
uint8_t
status
;
118
uint8_t
num_addrs
;
119
struct
bt_hci_vs_static_addr
a
[0];
120
} __packed;
121
122
#define BT_HCI_OP_VS_READ_KEY_HIERARCHY_ROOTS BT_OP(BT_OGF_VS, 0x000a)
123
struct
bt_hci_rp_vs_read_key_hierarchy_roots
{
124
uint8_t
status
;
125
uint8_t
ir
[16];
126
uint8_t
er
[16];
127
} __packed;
128
129
#define BT_HCI_OP_VS_READ_CHIP_TEMP BT_OP(BT_OGF_VS, 0x000b)
130
struct
bt_hci_rp_vs_read_chip_temp
{
131
uint8_t
status
;
132
int8_t
temps
;
133
} __packed;
134
135
struct
bt_hci_vs_cmd
{
136
uint16_t
vendor_id
;
137
uint16_t
opcode_base
;
138
} __packed;
139
140
#define BT_HCI_VS_VID_ANDROID 0x0001
141
#define BT_HCI_VS_VID_MICROSOFT 0x0002
142
#define BT_HCI_OP_VS_READ_HOST_STACK_CMDS BT_OP(BT_OGF_VS, 0x000c)
143
struct
bt_hci_rp_vs_read_host_stack_cmds
{
144
uint8_t
status
;
145
uint8_t
num_cmds
;
146
struct
bt_hci_vs_cmd
c
[0];
147
} __packed;
148
149
#define BT_HCI_VS_SCAN_REQ_REPORTS_DISABLED 0x00
150
#define BT_HCI_VS_SCAN_REQ_REPORTS_ENABLED 0x01
151
#define BT_HCI_OP_VS_SET_SCAN_REQ_REPORTS BT_OP(BT_OGF_VS, 0x000d)
152
struct
bt_hci_cp_vs_set_scan_req_reports
{
153
uint8_t
enable
;
154
} __packed;
155
156
#define BT_HCI_VS_LL_HANDLE_TYPE_ADV 0x00
157
#define BT_HCI_VS_LL_HANDLE_TYPE_SCAN 0x01
158
#define BT_HCI_VS_LL_HANDLE_TYPE_CONN 0x02
159
#define BT_HCI_VS_LL_TX_POWER_LEVEL_NO_PREF 0x7F
160
#define BT_HCI_OP_VS_WRITE_TX_POWER_LEVEL BT_OP(BT_OGF_VS, 0x000e)
161
struct
bt_hci_cp_vs_write_tx_power_level
{
162
uint8_t
handle_type
;
163
uint16_t
handle
;
164
int8_t
tx_power_level
;
165
} __packed;
166
167
struct
bt_hci_rp_vs_write_tx_power_level
{
168
uint8_t
status
;
169
uint8_t
handle_type
;
170
uint16_t
handle
;
171
int8_t
selected_tx_power
;
172
} __packed;
173
174
#define BT_HCI_OP_VS_READ_TX_POWER_LEVEL BT_OP(BT_OGF_VS, 0x000f)
175
struct
bt_hci_cp_vs_read_tx_power_level
{
176
uint8_t
handle_type
;
177
uint16_t
handle
;
178
} __packed;
179
180
struct
bt_hci_rp_vs_read_tx_power_level
{
181
uint8_t
status
;
182
uint8_t
handle_type
;
183
uint16_t
handle
;
184
int8_t
tx_power_level
;
185
} __packed;
186
187
#define BT_HCI_OP_VS_READ_USB_TRANSPORT_MODE BT_OP(BT_OGF_VS, 0x0010)
188
189
struct
bt_hci_rp_vs_read_usb_transport_mode
{
190
uint8_t
status
;
191
uint8_t
num_supported_modes
;
192
uint8_t
supported_mode
[0];
193
} __packed;
194
195
#define BT_HCI_VS_USB_H2_MODE 0x00
196
#define BT_HCI_VS_USB_H4_MODE 0x01
197
198
#define BT_HCI_OP_VS_SET_USB_TRANSPORT_MODE BT_OP(BT_OGF_VS, 0x0011)
199
200
struct
bt_hci_cp_vs_set_usb_transport_mode
{
201
uint8_t
mode
;
202
} __packed;
203
204
/* Events */
205
206
struct
bt_hci_evt_vs
{
207
uint8_t
subevent
;
208
} __packed;
209
210
#define BT_HCI_EVT_VS_FATAL_ERROR 0x02
211
struct
bt_hci_evt_vs_fatal_error
{
212
uint64_t
pc
;
213
uint8_t
err_info
[0];
214
} __packed;
215
216
#define BT_HCI_VS_TRACE_LMP_TX 0x01
217
#define BT_HCI_VS_TRACE_LMP_RX 0x02
218
#define BT_HCI_VS_TRACE_LLCP_TX 0x03
219
#define BT_HCI_VS_TRACE_LLCP_RX 0x04
220
#define BT_HCI_VS_TRACE_LE_CONN_IND 0x05
221
#define BT_HCI_EVT_VS_TRACE_INFO 0x03
222
struct
bt_hci_evt_vs_trace_info
{
223
uint8_t
type
;
224
uint8_t
data
[0];
225
} __packed;
226
227
#define BT_HCI_EVT_VS_SCAN_REQ_RX 0x04
228
struct
bt_hci_evt_vs_scan_req_rx
{
229
bt_addr_le_t
addr
;
230
int8_t
rssi
;
231
} __packed;
232
233
/* Event mask bits */
234
235
#define BT_EVT_MASK_VS_FATAL_ERROR BT_EVT_BIT(1)
236
#define BT_EVT_MASK_VS_TRACE_INFO BT_EVT_BIT(2)
237
#define BT_EVT_MASK_VS_SCAN_REQ_RX BT_EVT_BIT(3)
238
239
/* Mesh HCI commands */
240
#define BT_HCI_MESH_REVISION 0x01
241
242
#define BT_HCI_OP_VS_MESH BT_OP(BT_OGF_VS, 0x0042)
243
#define BT_HCI_MESH_EVT_PREFIX 0xF0
244
245
struct
bt_hci_cp_mesh
{
246
uint8_t
opcode
;
247
} __packed;
248
249
#define BT_HCI_OC_MESH_GET_OPTS 0x00
250
struct
bt_hci_rp_mesh_get_opts
{
251
uint8_t
status
;
252
uint8_t
opcode
;
253
uint8_t
revision
;
254
uint8_t
ch_map
;
255
int8_t
min_tx_power
;
256
int8_t
max_tx_power
;
257
uint8_t
max_scan_filter
;
258
uint8_t
max_filter_pattern
;
259
uint8_t
max_adv_slot
;
260
uint8_t
max_tx_window
;
261
uint8_t
evt_prefix_len
;
262
uint8_t
evt_prefix
;
263
} __packed;
264
265
#define BT_HCI_MESH_PATTERN_LEN_MAX 0x0f
266
267
#define BT_HCI_OC_MESH_SET_SCAN_FILTER 0x01
268
struct
bt_hci_mesh_pattern
{
269
uint8_t
pattern_len
;
270
uint8_t
pattern
[0];
271
} __packed;
272
273
struct
bt_hci_cp_mesh_set_scan_filter
{
274
uint8_t
scan_filter
;
275
uint8_t
filter_dup
;
276
uint8_t
num_patterns
;
277
struct
bt_hci_mesh_pattern
patterns
[0];
278
} __packed;
279
struct
bt_hci_rp_mesh_set_scan_filter
{
280
uint8_t
status
;
281
uint8_t
opcode
;
282
uint8_t
scan_filter
;
283
} __packed;
284
285
#define BT_HCI_OC_MESH_ADVERTISE 0x02
286
struct
bt_hci_cp_mesh_advertise
{
287
uint8_t
adv_slot
;
288
uint8_t
own_addr_type
;
289
bt_addr_t
random_addr
;
290
uint8_t
ch_map
;
291
int8_t
tx_power
;
292
uint8_t
min_tx_delay
;
293
uint8_t
max_tx_delay
;
294
uint8_t
retx_count
;
295
uint8_t
retx_interval
;
296
uint8_t
scan_delay
;
297
uint16_t
scan_duration
;
298
uint8_t
scan_filter
;
299
uint8_t
data_len
;
300
uint8_t
data
[31];
301
} __packed;
302
struct
bt_hci_rp_mesh_advertise
{
303
uint8_t
status
;
304
uint8_t
opcode
;
305
uint8_t
adv_slot
;
306
} __packed;
307
308
#define BT_HCI_OC_MESH_ADVERTISE_TIMED 0x03
309
struct
bt_hci_cp_mesh_advertise_timed
{
310
uint8_t
adv_slot
;
311
uint8_t
own_addr_type
;
312
bt_addr_t
random_addr
;
313
uint8_t
ch_map
;
314
int8_t
tx_power
;
315
uint8_t
retx_count
;
316
uint8_t
retx_interval
;
317
uint32_t
instant
;
318
uint16_t
tx_delay
;
319
uint16_t
tx_window
;
320
uint8_t
data_len
;
321
uint8_t
data
[31];
322
} __packed;
323
struct
bt_hci_rp_mesh_advertise_timed
{
324
uint8_t
status
;
325
uint8_t
opcode
;
326
uint8_t
adv_slot
;
327
} __packed;
328
329
#define BT_HCI_OC_MESH_ADVERTISE_CANCEL 0x04
330
struct
bt_hci_cp_mesh_advertise_cancel
{
331
uint8_t
adv_slot
;
332
} __packed;
333
struct
bt_hci_rp_mesh_advertise_cancel
{
334
uint8_t
status
;
335
uint8_t
opcode
;
336
uint8_t
adv_slot
;
337
} __packed;
338
339
#define BT_HCI_OC_MESH_SET_SCANNING 0x05
340
struct
bt_hci_cp_mesh_set_scanning
{
341
uint8_t
enable
;
342
uint8_t
ch_map
;
343
uint8_t
scan_filter
;
344
} __packed;
345
struct
bt_hci_rp_mesh_set_scanning
{
346
uint8_t
status
;
347
uint8_t
opcode
;
348
} __packed;
349
350
/* Events */
351
struct
bt_hci_evt_mesh
{
352
uint8_t
prefix
;
353
uint8_t
subevent
;
354
} __packed;
355
356
#define BT_HCI_EVT_MESH_ADV_COMPLETE 0x00
357
struct
bt_hci_evt_mesh_adv_complete
{
358
uint8_t
adv_slot
;
359
} __packed;
360
361
#define BT_HCI_EVT_MESH_SCANNING_REPORT 0x01
362
struct
bt_hci_evt_mesh_scan_report
{
363
bt_addr_le_t
addr
;
364
uint8_t
chan
;
365
int8_t
rssi
;
366
uint32_t
instant
;
367
uint8_t
data_len
;
368
uint8_t
data
[0];
369
} __packed;
370
struct
bt_hci_evt_mesh_scanning_report
{
371
uint8_t
num_reports
;
372
struct
bt_hci_evt_mesh_scan_report
reports
[0];
373
} __packed;
374
375
#ifdef __cplusplus
376
}
377
#endif
378
379
#endif
/* ZEPHYR_INCLUDE_BLUETOOTH_HCI_VS_H_ */
hci.h
uint32_t
__UINT32_TYPE__ uint32_t
Definition:
stdint.h:60
uint64_t
__UINT64_TYPE__ uint64_t
Definition:
stdint.h:61
uint8_t
__UINT8_TYPE__ uint8_t
Definition:
stdint.h:58
uint16_t
__UINT16_TYPE__ uint16_t
Definition:
stdint.h:59
int8_t
__INT8_TYPE__ int8_t
Definition:
stdint.h:42
bt_addr_le_t
Definition:
addr.h:39
bt_addr_t
Definition:
addr.h:34
bt_hci_cp_mesh_advertise_cancel
Definition:
hci_vs.h:330
bt_hci_cp_mesh_advertise_cancel::adv_slot
uint8_t adv_slot
Definition:
hci_vs.h:331
bt_hci_cp_mesh_advertise_timed
Definition:
hci_vs.h:309
bt_hci_cp_mesh_advertise_timed::tx_window
uint16_t tx_window
Definition:
hci_vs.h:319
bt_hci_cp_mesh_advertise_timed::retx_interval
uint8_t retx_interval
Definition:
hci_vs.h:316
bt_hci_cp_mesh_advertise_timed::data_len
uint8_t data_len
Definition:
hci_vs.h:320
bt_hci_cp_mesh_advertise_timed::instant
uint32_t instant
Definition:
hci_vs.h:317
bt_hci_cp_mesh_advertise_timed::adv_slot
uint8_t adv_slot
Definition:
hci_vs.h:310
bt_hci_cp_mesh_advertise_timed::ch_map
uint8_t ch_map
Definition:
hci_vs.h:313
bt_hci_cp_mesh_advertise_timed::tx_power
int8_t tx_power
Definition:
hci_vs.h:314
bt_hci_cp_mesh_advertise_timed::data
uint8_t data[31]
Definition:
hci_vs.h:321
bt_hci_cp_mesh_advertise_timed::random_addr
bt_addr_t random_addr
Definition:
hci_vs.h:312
bt_hci_cp_mesh_advertise_timed::retx_count
uint8_t retx_count
Definition:
hci_vs.h:315
bt_hci_cp_mesh_advertise_timed::own_addr_type
uint8_t own_addr_type
Definition:
hci_vs.h:311
bt_hci_cp_mesh_advertise_timed::tx_delay
uint16_t tx_delay
Definition:
hci_vs.h:318
bt_hci_cp_mesh_advertise
Definition:
hci_vs.h:286
bt_hci_cp_mesh_advertise::scan_filter
uint8_t scan_filter
Definition:
hci_vs.h:298
bt_hci_cp_mesh_advertise::random_addr
bt_addr_t random_addr
Definition:
hci_vs.h:289
bt_hci_cp_mesh_advertise::scan_delay
uint8_t scan_delay
Definition:
hci_vs.h:296
bt_hci_cp_mesh_advertise::max_tx_delay
uint8_t max_tx_delay
Definition:
hci_vs.h:293
bt_hci_cp_mesh_advertise::retx_interval
uint8_t retx_interval
Definition:
hci_vs.h:295
bt_hci_cp_mesh_advertise::retx_count
uint8_t retx_count
Definition:
hci_vs.h:294
bt_hci_cp_mesh_advertise::data_len
uint8_t data_len
Definition:
hci_vs.h:299
bt_hci_cp_mesh_advertise::min_tx_delay
uint8_t min_tx_delay
Definition:
hci_vs.h:292
bt_hci_cp_mesh_advertise::own_addr_type
uint8_t own_addr_type
Definition:
hci_vs.h:288
bt_hci_cp_mesh_advertise::adv_slot
uint8_t adv_slot
Definition:
hci_vs.h:287
bt_hci_cp_mesh_advertise::ch_map
uint8_t ch_map
Definition:
hci_vs.h:290
bt_hci_cp_mesh_advertise::scan_duration
uint16_t scan_duration
Definition:
hci_vs.h:297
bt_hci_cp_mesh_advertise::data
uint8_t data[31]
Definition:
hci_vs.h:300
bt_hci_cp_mesh_advertise::tx_power
int8_t tx_power
Definition:
hci_vs.h:291
bt_hci_cp_mesh_set_scan_filter
Definition:
hci_vs.h:273
bt_hci_cp_mesh_set_scan_filter::num_patterns
uint8_t num_patterns
Definition:
hci_vs.h:276
bt_hci_cp_mesh_set_scan_filter::filter_dup
uint8_t filter_dup
Definition:
hci_vs.h:275
bt_hci_cp_mesh_set_scan_filter::patterns
struct bt_hci_mesh_pattern patterns[0]
Definition:
hci_vs.h:277
bt_hci_cp_mesh_set_scan_filter::scan_filter
uint8_t scan_filter
Definition:
hci_vs.h:274
bt_hci_cp_mesh_set_scanning
Definition:
hci_vs.h:340
bt_hci_cp_mesh_set_scanning::ch_map
uint8_t ch_map
Definition:
hci_vs.h:342
bt_hci_cp_mesh_set_scanning::scan_filter
uint8_t scan_filter
Definition:
hci_vs.h:343
bt_hci_cp_mesh_set_scanning::enable
uint8_t enable
Definition:
hci_vs.h:341
bt_hci_cp_mesh
Definition:
hci_vs.h:245
bt_hci_cp_mesh::opcode
uint8_t opcode
Definition:
hci_vs.h:246
bt_hci_cp_vs_read_tx_power_level
Definition:
hci_vs.h:175
bt_hci_cp_vs_read_tx_power_level::handle
uint16_t handle
Definition:
hci_vs.h:177
bt_hci_cp_vs_read_tx_power_level::handle_type
uint8_t handle_type
Definition:
hci_vs.h:176
bt_hci_cp_vs_reset
Definition:
hci_vs.h:84
bt_hci_cp_vs_reset::type
uint8_t type
Definition:
hci_vs.h:85
bt_hci_cp_vs_set_event_mask
Definition:
hci_vs.h:77
bt_hci_cp_vs_set_event_mask::event_mask
uint8_t event_mask[8]
Definition:
hci_vs.h:78
bt_hci_cp_vs_set_scan_req_reports
Definition:
hci_vs.h:152
bt_hci_cp_vs_set_scan_req_reports::enable
uint8_t enable
Definition:
hci_vs.h:153
bt_hci_cp_vs_set_trace_enable
Definition:
hci_vs.h:99
bt_hci_cp_vs_set_trace_enable::type
uint8_t type
Definition:
hci_vs.h:101
bt_hci_cp_vs_set_trace_enable::enable
uint8_t enable
Definition:
hci_vs.h:100
bt_hci_cp_vs_set_usb_transport_mode
Definition:
hci_vs.h:200
bt_hci_cp_vs_set_usb_transport_mode::mode
uint8_t mode
Definition:
hci_vs.h:201
bt_hci_cp_vs_write_bd_addr
Definition:
hci_vs.h:89
bt_hci_cp_vs_write_bd_addr::bdaddr
bt_addr_t bdaddr
Definition:
hci_vs.h:90
bt_hci_cp_vs_write_tx_power_level
Definition:
hci_vs.h:161
bt_hci_cp_vs_write_tx_power_level::handle_type
uint8_t handle_type
Definition:
hci_vs.h:162
bt_hci_cp_vs_write_tx_power_level::tx_power_level
int8_t tx_power_level
Definition:
hci_vs.h:164
bt_hci_cp_vs_write_tx_power_level::handle
uint16_t handle
Definition:
hci_vs.h:163
bt_hci_evt_mesh_adv_complete
Definition:
hci_vs.h:357
bt_hci_evt_mesh_adv_complete::adv_slot
uint8_t adv_slot
Definition:
hci_vs.h:358
bt_hci_evt_mesh_scan_report
Definition:
hci_vs.h:362
bt_hci_evt_mesh_scan_report::addr
bt_addr_le_t addr
Definition:
hci_vs.h:363
bt_hci_evt_mesh_scan_report::data_len
uint8_t data_len
Definition:
hci_vs.h:367
bt_hci_evt_mesh_scan_report::chan
uint8_t chan
Definition:
hci_vs.h:364
bt_hci_evt_mesh_scan_report::data
uint8_t data[0]
Definition:
hci_vs.h:368
bt_hci_evt_mesh_scan_report::instant
uint32_t instant
Definition:
hci_vs.h:366
bt_hci_evt_mesh_scan_report::rssi
int8_t rssi
Definition:
hci_vs.h:365
bt_hci_evt_mesh_scanning_report
Definition:
hci_vs.h:370
bt_hci_evt_mesh_scanning_report::num_reports
uint8_t num_reports
Definition:
hci_vs.h:371
bt_hci_evt_mesh_scanning_report::reports
struct bt_hci_evt_mesh_scan_report reports[0]
Definition:
hci_vs.h:372
bt_hci_evt_mesh
Definition:
hci_vs.h:351
bt_hci_evt_mesh::prefix
uint8_t prefix
Definition:
hci_vs.h:352
bt_hci_evt_mesh::subevent
uint8_t subevent
Definition:
hci_vs.h:353
bt_hci_evt_vs_fatal_error
Definition:
hci_vs.h:211
bt_hci_evt_vs_fatal_error::err_info
uint8_t err_info[0]
Definition:
hci_vs.h:213
bt_hci_evt_vs_fatal_error::pc
uint64_t pc
Definition:
hci_vs.h:212
bt_hci_evt_vs_scan_req_rx
Definition:
hci_vs.h:228
bt_hci_evt_vs_scan_req_rx::addr
bt_addr_le_t addr
Definition:
hci_vs.h:229
bt_hci_evt_vs_scan_req_rx::rssi
int8_t rssi
Definition:
hci_vs.h:230
bt_hci_evt_vs_trace_info
Definition:
hci_vs.h:222
bt_hci_evt_vs_trace_info::data
uint8_t data[0]
Definition:
hci_vs.h:224
bt_hci_evt_vs_trace_info::type
uint8_t type
Definition:
hci_vs.h:223
bt_hci_evt_vs
Definition:
hci_vs.h:206
bt_hci_evt_vs::subevent
uint8_t subevent
Definition:
hci_vs.h:207
bt_hci_mesh_pattern
Definition:
hci_vs.h:268
bt_hci_mesh_pattern::pattern_len
uint8_t pattern_len
Definition:
hci_vs.h:269
bt_hci_mesh_pattern::pattern
uint8_t pattern[0]
Definition:
hci_vs.h:270
bt_hci_rp_mesh_advertise_cancel
Definition:
hci_vs.h:333
bt_hci_rp_mesh_advertise_cancel::opcode
uint8_t opcode
Definition:
hci_vs.h:335
bt_hci_rp_mesh_advertise_cancel::status
uint8_t status
Definition:
hci_vs.h:334
bt_hci_rp_mesh_advertise_cancel::adv_slot
uint8_t adv_slot
Definition:
hci_vs.h:336
bt_hci_rp_mesh_advertise_timed
Definition:
hci_vs.h:323
bt_hci_rp_mesh_advertise_timed::opcode
uint8_t opcode
Definition:
hci_vs.h:325
bt_hci_rp_mesh_advertise_timed::adv_slot
uint8_t adv_slot
Definition:
hci_vs.h:326
bt_hci_rp_mesh_advertise_timed::status
uint8_t status
Definition:
hci_vs.h:324
bt_hci_rp_mesh_advertise
Definition:
hci_vs.h:302
bt_hci_rp_mesh_advertise::adv_slot
uint8_t adv_slot
Definition:
hci_vs.h:305
bt_hci_rp_mesh_advertise::status
uint8_t status
Definition:
hci_vs.h:303
bt_hci_rp_mesh_advertise::opcode
uint8_t opcode
Definition:
hci_vs.h:304
bt_hci_rp_mesh_get_opts
Definition:
hci_vs.h:250
bt_hci_rp_mesh_get_opts::ch_map
uint8_t ch_map
Definition:
hci_vs.h:254
bt_hci_rp_mesh_get_opts::max_adv_slot
uint8_t max_adv_slot
Definition:
hci_vs.h:259
bt_hci_rp_mesh_get_opts::max_filter_pattern
uint8_t max_filter_pattern
Definition:
hci_vs.h:258
bt_hci_rp_mesh_get_opts::opcode
uint8_t opcode
Definition:
hci_vs.h:252
bt_hci_rp_mesh_get_opts::max_tx_window
uint8_t max_tx_window
Definition:
hci_vs.h:260
bt_hci_rp_mesh_get_opts::status
uint8_t status
Definition:
hci_vs.h:251
bt_hci_rp_mesh_get_opts::max_scan_filter
uint8_t max_scan_filter
Definition:
hci_vs.h:257
bt_hci_rp_mesh_get_opts::min_tx_power
int8_t min_tx_power
Definition:
hci_vs.h:255
bt_hci_rp_mesh_get_opts::revision
uint8_t revision
Definition:
hci_vs.h:253
bt_hci_rp_mesh_get_opts::max_tx_power
int8_t max_tx_power
Definition:
hci_vs.h:256
bt_hci_rp_mesh_get_opts::evt_prefix
uint8_t evt_prefix
Definition:
hci_vs.h:262
bt_hci_rp_mesh_get_opts::evt_prefix_len
uint8_t evt_prefix_len
Definition:
hci_vs.h:261
bt_hci_rp_mesh_set_scan_filter
Definition:
hci_vs.h:279
bt_hci_rp_mesh_set_scan_filter::opcode
uint8_t opcode
Definition:
hci_vs.h:281
bt_hci_rp_mesh_set_scan_filter::status
uint8_t status
Definition:
hci_vs.h:280
bt_hci_rp_mesh_set_scan_filter::scan_filter
uint8_t scan_filter
Definition:
hci_vs.h:282
bt_hci_rp_mesh_set_scanning
Definition:
hci_vs.h:345
bt_hci_rp_mesh_set_scanning::opcode
uint8_t opcode
Definition:
hci_vs.h:347
bt_hci_rp_mesh_set_scanning::status
uint8_t status
Definition:
hci_vs.h:346
bt_hci_rp_vs_read_build_info
Definition:
hci_vs.h:105
bt_hci_rp_vs_read_build_info::info
uint8_t info[0]
Definition:
hci_vs.h:107
bt_hci_rp_vs_read_build_info::status
uint8_t status
Definition:
hci_vs.h:106
bt_hci_rp_vs_read_chip_temp
Definition:
hci_vs.h:130
bt_hci_rp_vs_read_chip_temp::temps
int8_t temps
Definition:
hci_vs.h:132
bt_hci_rp_vs_read_chip_temp::status
uint8_t status
Definition:
hci_vs.h:131
bt_hci_rp_vs_read_host_stack_cmds
Definition:
hci_vs.h:143
bt_hci_rp_vs_read_host_stack_cmds::c
struct bt_hci_vs_cmd c[0]
Definition:
hci_vs.h:146
bt_hci_rp_vs_read_host_stack_cmds::status
uint8_t status
Definition:
hci_vs.h:144
bt_hci_rp_vs_read_host_stack_cmds::num_cmds
uint8_t num_cmds
Definition:
hci_vs.h:145
bt_hci_rp_vs_read_key_hierarchy_roots
Definition:
hci_vs.h:123
bt_hci_rp_vs_read_key_hierarchy_roots::status
uint8_t status
Definition:
hci_vs.h:124
bt_hci_rp_vs_read_key_hierarchy_roots::ir
uint8_t ir[16]
Definition:
hci_vs.h:125
bt_hci_rp_vs_read_key_hierarchy_roots::er
uint8_t er[16]
Definition:
hci_vs.h:126
bt_hci_rp_vs_read_static_addrs
Definition:
hci_vs.h:116
bt_hci_rp_vs_read_static_addrs::num_addrs
uint8_t num_addrs
Definition:
hci_vs.h:118
bt_hci_rp_vs_read_static_addrs::status
uint8_t status
Definition:
hci_vs.h:117
bt_hci_rp_vs_read_static_addrs::a
struct bt_hci_vs_static_addr a[0]
Definition:
hci_vs.h:119
bt_hci_rp_vs_read_supported_commands
Definition:
hci_vs.h:65
bt_hci_rp_vs_read_supported_commands::commands
uint8_t commands[64]
Definition:
hci_vs.h:67
bt_hci_rp_vs_read_supported_commands::status
uint8_t status
Definition:
hci_vs.h:66
bt_hci_rp_vs_read_supported_features
Definition:
hci_vs.h:71
bt_hci_rp_vs_read_supported_features::features
uint8_t features[8]
Definition:
hci_vs.h:73
bt_hci_rp_vs_read_supported_features::status
uint8_t status
Definition:
hci_vs.h:72
bt_hci_rp_vs_read_tx_power_level
Definition:
hci_vs.h:180
bt_hci_rp_vs_read_tx_power_level::handle_type
uint8_t handle_type
Definition:
hci_vs.h:182
bt_hci_rp_vs_read_tx_power_level::tx_power_level
int8_t tx_power_level
Definition:
hci_vs.h:184
bt_hci_rp_vs_read_tx_power_level::handle
uint16_t handle
Definition:
hci_vs.h:183
bt_hci_rp_vs_read_tx_power_level::status
uint8_t status
Definition:
hci_vs.h:181
bt_hci_rp_vs_read_usb_transport_mode
Definition:
hci_vs.h:189
bt_hci_rp_vs_read_usb_transport_mode::num_supported_modes
uint8_t num_supported_modes
Definition:
hci_vs.h:191
bt_hci_rp_vs_read_usb_transport_mode::status
uint8_t status
Definition:
hci_vs.h:190
bt_hci_rp_vs_read_usb_transport_mode::supported_mode
uint8_t supported_mode[0]
Definition:
hci_vs.h:192
bt_hci_rp_vs_read_version_info
Definition:
hci_vs.h:54
bt_hci_rp_vs_read_version_info::fw_version
uint8_t fw_version
Definition:
hci_vs.h:59
bt_hci_rp_vs_read_version_info::fw_variant
uint8_t fw_variant
Definition:
hci_vs.h:58
bt_hci_rp_vs_read_version_info::fw_build
uint32_t fw_build
Definition:
hci_vs.h:61
bt_hci_rp_vs_read_version_info::fw_revision
uint16_t fw_revision
Definition:
hci_vs.h:60
bt_hci_rp_vs_read_version_info::status
uint8_t status
Definition:
hci_vs.h:55
bt_hci_rp_vs_read_version_info::hw_platform
uint16_t hw_platform
Definition:
hci_vs.h:56
bt_hci_rp_vs_read_version_info::hw_variant
uint16_t hw_variant
Definition:
hci_vs.h:57
bt_hci_rp_vs_write_tx_power_level
Definition:
hci_vs.h:167
bt_hci_rp_vs_write_tx_power_level::handle_type
uint8_t handle_type
Definition:
hci_vs.h:169
bt_hci_rp_vs_write_tx_power_level::status
uint8_t status
Definition:
hci_vs.h:168
bt_hci_rp_vs_write_tx_power_level::selected_tx_power
int8_t selected_tx_power
Definition:
hci_vs.h:171
bt_hci_rp_vs_write_tx_power_level::handle
uint16_t handle
Definition:
hci_vs.h:170
bt_hci_vs_cmd
Definition:
hci_vs.h:135
bt_hci_vs_cmd::opcode_base
uint16_t opcode_base
Definition:
hci_vs.h:137
bt_hci_vs_cmd::vendor_id
uint16_t vendor_id
Definition:
hci_vs.h:136
bt_hci_vs_static_addr
Definition:
hci_vs.h:110
bt_hci_vs_static_addr::bdaddr
bt_addr_t bdaddr
Definition:
hci_vs.h:111
bt_hci_vs_static_addr::ir
uint8_t ir[16]
Definition:
hci_vs.h:112
include
bluetooth
hci_vs.h
Generated on Sun Oct 9 2022 09:21:56 for Zephyr API Documentation by
1.9.4