8#ifndef ZEPHYR_INCLUDE_BLUETOOTH_HCI_H_
9#define ZEPHYR_INCLUDE_BLUETOOTH_HCI_H_
26#define BT_HCI_OWN_ADDR_RPA_OR_PUBLIC 0x02
27#define BT_HCI_OWN_ADDR_RPA_OR_RANDOM 0x03
28#define BT_HCI_OWN_ADDR_RPA_MASK 0x02
30#define BT_HCI_PEER_ADDR_RPA_UNRESOLVED 0xfe
31#define BT_HCI_PEER_ADDR_ANONYMOUS 0xff
33#define BT_ENC_KEY_SIZE_MIN 0x07
34#define BT_ENC_KEY_SIZE_MAX 0x10
40#define BT_HCI_EVT_HDR_SIZE 2
42#define BT_ACL_START_NO_FLUSH 0x00
43#define BT_ACL_CONT 0x01
44#define BT_ACL_START 0x02
45#define BT_ACL_COMPLETE 0x03
47#define BT_ACL_POINT_TO_POINT 0x00
48#define BT_ACL_BROADCAST 0x01
50#define BT_ACL_HANDLE_MASK BIT_MASK(12)
52#define bt_acl_handle(h) ((h) & BT_ACL_HANDLE_MASK)
53#define bt_acl_flags(h) ((h) >> 12)
54#define bt_acl_flags_pb(f) ((f) & BIT_MASK(2))
55#define bt_acl_flags_bc(f) ((f) >> 2)
56#define bt_acl_handle_pack(h, f) ((h) | ((f) << 12))
62#define BT_HCI_ACL_HDR_SIZE 4
64#define BT_ISO_START 0x00
65#define BT_ISO_CONT 0x01
66#define BT_ISO_SINGLE 0x02
67#define BT_ISO_END 0x03
69#define bt_iso_handle(h) ((h) & 0x0fff)
70#define bt_iso_flags(h) ((h) >> 12)
71#define bt_iso_flags_pb(f) ((f) & 0x0003)
72#define bt_iso_flags_ts(f) (((f) >> 2) & 0x0001)
73#define bt_iso_pack_flags(pb, ts) \
74 (((pb) & 0x0003) | (((ts) & 0x0001) << 2))
75#define bt_iso_handle_pack(h, pb, ts) \
76 ((h) | (bt_iso_pack_flags(pb, ts) << 12))
77#define bt_iso_hdr_len(h) ((h) & BIT_MASK(14))
79#define BT_ISO_DATA_VALID 0x00
80#define BT_ISO_DATA_INVALID 0x01
81#define BT_ISO_DATA_NOP 0x02
83#define bt_iso_pkt_len(h) ((h) & 0x3fff)
84#define bt_iso_pkt_flags(h) ((h) >> 14)
85#define bt_iso_pkt_len_pack(h, f) ((h) | ((f) << 14))
91#define BT_HCI_ISO_DATA_HDR_SIZE 4
97#define BT_HCI_ISO_TS_DATA_HDR_SIZE 8
103#define BT_HCI_ISO_HDR_SIZE 4
109#define BT_HCI_CMD_HDR_SIZE 3
112#define BT_CMD_TEST(cmd, octet, bit) (cmd[octet] & BIT(bit))
113#define BT_CMD_LE_STATES(cmd) BT_CMD_TEST(cmd, 28, 3)
115#define BT_FEAT_TEST(feat, page, octet, bit) (feat[page][octet] & BIT(bit))
117#define BT_FEAT_BREDR(feat) !BT_FEAT_TEST(feat, 0, 4, 5)
118#define BT_FEAT_LE(feat) BT_FEAT_TEST(feat, 0, 4, 6)
119#define BT_FEAT_EXT_FEATURES(feat) BT_FEAT_TEST(feat, 0, 7, 7)
120#define BT_FEAT_HOST_SSP(feat) BT_FEAT_TEST(feat, 1, 0, 0)
121#define BT_FEAT_SC(feat) BT_FEAT_TEST(feat, 2, 1, 0)
123#define BT_FEAT_LMP_ESCO_CAPABLE(feat) BT_FEAT_TEST(feat, 0, 3, 7)
124#define BT_FEAT_HV2_PKT(feat) BT_FEAT_TEST(feat, 0, 1, 4)
125#define BT_FEAT_HV3_PKT(feat) BT_FEAT_TEST(feat, 0, 1, 5)
126#define BT_FEAT_EV4_PKT(feat) BT_FEAT_TEST(feat, 0, 4, 0)
127#define BT_FEAT_EV5_PKT(feat) BT_FEAT_TEST(feat, 0, 4, 1)
128#define BT_FEAT_2EV3_PKT(feat) BT_FEAT_TEST(feat, 0, 5, 5)
129#define BT_FEAT_3EV3_PKT(feat) BT_FEAT_TEST(feat, 0, 5, 6)
130#define BT_FEAT_3SLOT_PKT(feat) BT_FEAT_TEST(feat, 0, 5, 7)
133#define BT_LE_FEAT_BIT_ENC 0
134#define BT_LE_FEAT_BIT_CONN_PARAM_REQ 1
135#define BT_LE_FEAT_BIT_EXT_REJ_IND 2
136#define BT_LE_FEAT_BIT_PER_INIT_FEAT_XCHG 3
137#define BT_LE_FEAT_BIT_PING 4
138#define BT_LE_FEAT_BIT_DLE 5
139#define BT_LE_FEAT_BIT_PRIVACY 6
140#define BT_LE_FEAT_BIT_EXT_SCAN 7
141#define BT_LE_FEAT_BIT_PHY_2M 8
142#define BT_LE_FEAT_BIT_SMI_TX 9
143#define BT_LE_FEAT_BIT_SMI_RX 10
144#define BT_LE_FEAT_BIT_PHY_CODED 11
145#define BT_LE_FEAT_BIT_EXT_ADV 12
146#define BT_LE_FEAT_BIT_PER_ADV 13
147#define BT_LE_FEAT_BIT_CHAN_SEL_ALGO_2 14
148#define BT_LE_FEAT_BIT_PWR_CLASS_1 15
149#define BT_LE_FEAT_BIT_MIN_USED_CHAN_PROC 16
150#define BT_LE_FEAT_BIT_CONN_CTE_REQ 17
151#define BT_LE_FEAT_BIT_CONN_CTE_RESP 18
152#define BT_LE_FEAT_BIT_CONNECTIONLESS_CTE_TX 19
153#define BT_LE_FEAT_BIT_CONNECTIONLESS_CTE_RX 20
154#define BT_LE_FEAT_BIT_ANT_SWITCH_TX_AOD 21
155#define BT_LE_FEAT_BIT_ANT_SWITCH_RX_AOA 22
156#define BT_LE_FEAT_BIT_RX_CTE 23
157#define BT_LE_FEAT_BIT_PAST_SEND 24
158#define BT_LE_FEAT_BIT_PAST_RECV 25
159#define BT_LE_FEAT_BIT_SCA_UPDATE 26
160#define BT_LE_FEAT_BIT_REMOTE_PUB_KEY_VALIDATE 27
161#define BT_LE_FEAT_BIT_CIS_CENTRAL 28
162#define BT_LE_FEAT_BIT_CIS_PERIPHERAL 29
163#define BT_LE_FEAT_BIT_ISO_BROADCASTER 30
164#define BT_LE_FEAT_BIT_SYNC_RECEIVER 31
165#define BT_LE_FEAT_BIT_ISO_CHANNELS 32
166#define BT_LE_FEAT_BIT_PWR_CTRL_REQ 33
167#define BT_LE_FEAT_BIT_PWR_CHG_IND 34
168#define BT_LE_FEAT_BIT_PATH_LOSS_MONITOR 35
169#define BT_LE_FEAT_BIT_PER_ADV_ADI_SUPP 36
170#define BT_LE_FEAT_BIT_CONN_SUBRATING 37
171#define BT_LE_FEAT_BIT_CONN_SUBRATING_HOST_SUPP 38
172#define BT_LE_FEAT_BIT_CHANNEL_CLASSIFICATION 39
174#define BT_LE_FEAT_TEST(feat, n) (feat[(n) >> 3] & \
177#define BT_FEAT_LE_ENCR(feat) BT_LE_FEAT_TEST(feat, \
179#define BT_FEAT_LE_CONN_PARAM_REQ_PROC(feat) BT_LE_FEAT_TEST(feat, \
180 BT_LE_FEAT_BIT_CONN_PARAM_REQ)
181#define BT_FEAT_LE_PER_INIT_FEAT_XCHG(feat) BT_LE_FEAT_TEST(feat, \
182 BT_LE_FEAT_BIT_PER_INIT_FEAT_XCHG)
183#define BT_FEAT_LE_DLE(feat) BT_LE_FEAT_TEST(feat, \
185#define BT_FEAT_LE_PHY_2M(feat) BT_LE_FEAT_TEST(feat, \
186 BT_LE_FEAT_BIT_PHY_2M)
187#define BT_FEAT_LE_PHY_CODED(feat) BT_LE_FEAT_TEST(feat, \
188 BT_LE_FEAT_BIT_PHY_CODED)
189#define BT_FEAT_LE_PRIVACY(feat) BT_LE_FEAT_TEST(feat, \
190 BT_LE_FEAT_BIT_PRIVACY)
191#define BT_FEAT_LE_EXT_ADV(feat) BT_LE_FEAT_TEST(feat, \
192 BT_LE_FEAT_BIT_EXT_ADV)
193#define BT_FEAT_LE_EXT_PER_ADV(feat) BT_LE_FEAT_TEST(feat, \
194 BT_LE_FEAT_BIT_PER_ADV)
195#define BT_FEAT_LE_CONNECTION_CTE_REQ(feat) BT_LE_FEAT_TEST(feat, \
196 BT_LE_FEAT_BIT_CONN_CTE_REQ)
197#define BT_FEAT_LE_CONNECTION_CTE_RESP(feat) BT_LE_FEAT_TEST(feat, \
198 BT_LE_FEAT_BIT_CONN_CTE_RESP)
199#define BT_FEAT_LE_CONNECTIONLESS_CTE_TX(feat) BT_LE_FEAT_TEST(feat, \
200 BT_LE_FEAT_BIT_CONNECTIONLESS_CTE_TX)
201#define BT_FEAT_LE_CONNECTIONLESS_CTE_RX(feat) BT_LE_FEAT_TEST(feat, \
202 BT_LE_FEAT_BIT_CONNECTIONLESS_CTE_RX)
203#define BT_FEAT_LE_ANT_SWITCH_TX_AOD(feat) BT_LE_FEAT_TEST(feat, \
204 BT_LE_FEAT_BIT_ANT_SWITCH_TX_AOD)
205#define BT_FEAT_LE_ANT_SWITCH_RX_AOA(feat) BT_LE_FEAT_TEST(feat, \
206 BT_LE_FEAT_BIT_ANT_SWITCH_RX_AOA)
207#define BT_FEAT_LE_RX_CTE(feat) BT_LE_FEAT_TEST(feat, \
208 BT_LE_FEAT_BIT_RX_CTE)
209#define BT_FEAT_LE_PAST_SEND(feat) BT_LE_FEAT_TEST(feat, \
210 BT_LE_FEAT_BIT_PAST_SEND)
211#define BT_FEAT_LE_PAST_RECV(feat) BT_LE_FEAT_TEST(feat, \
212 BT_LE_FEAT_BIT_PAST_RECV)
213#define BT_FEAT_LE_CIS_CENTRAL(feat) BT_LE_FEAT_TEST(feat, \
214 BT_LE_FEAT_BIT_CIS_CENTRAL)
215#define BT_FEAT_LE_CIS_PERIPHERAL(feat) BT_LE_FEAT_TEST(feat, \
216 BT_LE_FEAT_BIT_CIS_PERIPHERAL)
217#define BT_FEAT_LE_ISO_BROADCASTER(feat) BT_LE_FEAT_TEST(feat, \
218 BT_LE_FEAT_BIT_ISO_BROADCASTER)
219#define BT_FEAT_LE_SYNC_RECEIVER(feat) BT_LE_FEAT_TEST(feat, \
220 BT_LE_FEAT_BIT_SYNC_RECEIVER)
221#define BT_FEAT_LE_ISO_CHANNELS(feat) BT_LE_FEAT_TEST(feat, \
222 BT_LE_FEAT_BIT_ISO_CHANNELS)
223#define BT_FEAT_LE_PWR_CTRL_REQ(feat) BT_LE_FEAT_TEST(feat, \
224 BT_LE_FEAT_BIT_PWR_CTRL_REQ)
225#define BT_FEAT_LE_PWR_CHG_IND(feat) BT_LE_FEAT_TEST(feat, \
226 BT_LE_FEAT_BIT_PWR_CHG_IND)
227#define BT_FEAT_LE_PATH_LOSS_MONITOR(feat) BT_LE_FEAT_TEST(feat, \
228 BT_LE_FEAT_BIT_PATH_LOSS_MONITOR)
229#define BT_FEAT_LE_PER_ADV_ADI_SUPP(feat) BT_LE_FEAT_TEST(feat, \
230 BT_LE_FEAT_BIT_PER_ADV_ADI_SUPP)
231#define BT_FEAT_LE_CONN_SUBRATING(feat) BT_LE_FEAT_TEST(feat, \
232 BT_LE_FEAT_BIT_CONN_SUBRATING)
233#define BT_FEAT_LE_CONN_SUBRATING_HOST_SUPP(feat) BT_LE_FEAT_TEST(feat, \
234 BT_LE_FEAT_BIT_CONN_SUBRATING_HOST_SUPP)
235#define BT_FEAT_LE_CHANNEL_CLASSIFICATION(feat) BT_LE_FEAT_TEST(feat, \
236 BT_LE_FEAT_BIT_CHANNEL_CLASSIFICATION)
238#define BT_FEAT_LE_CIS(feat) (BT_FEAT_LE_CIS_CENTRAL(feat) | \
239 BT_FEAT_LE_CIS_PERIPHERAL(feat))
240#define BT_FEAT_LE_BIS(feat) (BT_FEAT_LE_ISO_BROADCASTER(feat) | \
241 BT_FEAT_LE_SYNC_RECEIVER(feat))
242#define BT_FEAT_LE_ISO(feat) (BT_FEAT_LE_CIS(feat) | \
243 BT_FEAT_LE_BIS(feat))
246#define BT_LE_STATES_PER_CONN_ADV(states) (states & 0x0000004000000000)
249#define BT_HCI_NO_BONDING 0x00
250#define BT_HCI_NO_BONDING_MITM 0x01
251#define BT_HCI_DEDICATED_BONDING 0x02
252#define BT_HCI_DEDICATED_BONDING_MITM 0x03
253#define BT_HCI_GENERAL_BONDING 0x04
254#define BT_HCI_GENERAL_BONDING_MITM 0x05
263#define BT_IO_DISPLAY_ONLY 0x00
264#define BT_IO_DISPLAY_YESNO 0x01
265#define BT_IO_KEYBOARD_ONLY 0x02
266#define BT_IO_NO_INPUT_OUTPUT 0x03
269#define HCI_PKT_TYPE_HV1 0x0020
270#define HCI_PKT_TYPE_HV2 0x0040
271#define HCI_PKT_TYPE_HV3 0x0080
274#define HCI_PKT_TYPE_ESCO_HV1 0x0001
275#define HCI_PKT_TYPE_ESCO_HV2 0x0002
276#define HCI_PKT_TYPE_ESCO_HV3 0x0004
277#define HCI_PKT_TYPE_ESCO_EV3 0x0008
278#define HCI_PKT_TYPE_ESCO_EV4 0x0010
279#define HCI_PKT_TYPE_ESCO_EV5 0x0020
280#define HCI_PKT_TYPE_ESCO_2EV3 0x0040
281#define HCI_PKT_TYPE_ESCO_3EV3 0x0080
282#define HCI_PKT_TYPE_ESCO_2EV5 0x0100
283#define HCI_PKT_TYPE_ESCO_3EV5 0x0200
286#define ESCO_PKT_MASK (HCI_PKT_TYPE_ESCO_HV1 | \
287 HCI_PKT_TYPE_ESCO_HV2 | \
288 HCI_PKT_TYPE_ESCO_HV3)
289#define SCO_PKT_MASK (HCI_PKT_TYPE_HV1 | \
292#define EDR_ESCO_PKT_MASK (HCI_PKT_TYPE_ESCO_2EV3 | \
293 HCI_PKT_TYPE_ESCO_3EV3 | \
294 HCI_PKT_TYPE_ESCO_2EV5 | \
295 HCI_PKT_TYPE_ESCO_3EV5)
298#define BT_HCI_SCO 0x00
299#define BT_HCI_ACL 0x01
300#define BT_HCI_ESCO 0x02
303#define BT_OGF_LINK_CTRL 0x01
304#define BT_OGF_BASEBAND 0x03
305#define BT_OGF_INFO 0x04
306#define BT_OGF_STATUS 0x05
307#define BT_OGF_LE 0x08
308#define BT_OGF_VS 0x3f
311#define BT_OP(ogf, ocf) ((ocf) | ((ogf) << 10))
314#define BT_OP_NOP 0x0000
317#define BT_OGF(opcode) (((opcode) >> 10) & BIT_MASK(6))
319#define BT_OCF(opcode) ((opcode) & BIT_MASK(10))
321#define BT_HCI_OP_INQUIRY BT_OP(BT_OGF_LINK_CTRL, 0x0001)
328#define BT_HCI_OP_INQUIRY_CANCEL BT_OP(BT_OGF_LINK_CTRL, 0x0002)
330#define BT_HCI_OP_CONNECT BT_OP(BT_OGF_LINK_CTRL, 0x0005)
340#define BT_HCI_OP_DISCONNECT BT_OP(BT_OGF_LINK_CTRL, 0x0006)
346#define BT_HCI_OP_CONNECT_CANCEL BT_OP(BT_OGF_LINK_CTRL, 0x0008)
355#define BT_HCI_OP_ACCEPT_CONN_REQ BT_OP(BT_OGF_LINK_CTRL, 0x0009)
361#define BT_HCI_OP_SETUP_SYNC_CONN BT_OP(BT_OGF_LINK_CTRL, 0x0028)
372#define BT_HCI_OP_ACCEPT_SYNC_CONN_REQ BT_OP(BT_OGF_LINK_CTRL, 0x0029)
383#define BT_HCI_OP_REJECT_CONN_REQ BT_OP(BT_OGF_LINK_CTRL, 0x000a)
389#define BT_HCI_OP_LINK_KEY_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x000b)
395#define BT_HCI_OP_LINK_KEY_NEG_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x000c)
400#define BT_HCI_OP_PIN_CODE_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x000d)
411#define BT_HCI_OP_PIN_CODE_NEG_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x000e)
420#define BT_HCI_OP_AUTH_REQUESTED BT_OP(BT_OGF_LINK_CTRL, 0x0011)
425#define BT_HCI_OP_SET_CONN_ENCRYPT BT_OP(BT_OGF_LINK_CTRL, 0x0013)
431#define BT_HCI_OP_REMOTE_NAME_REQUEST BT_OP(BT_OGF_LINK_CTRL, 0x0019)
439#define BT_HCI_OP_REMOTE_NAME_CANCEL BT_OP(BT_OGF_LINK_CTRL, 0x001a)
448#define BT_HCI_OP_READ_REMOTE_FEATURES BT_OP(BT_OGF_LINK_CTRL, 0x001b)
453#define BT_HCI_OP_READ_REMOTE_EXT_FEATURES BT_OP(BT_OGF_LINK_CTRL, 0x001c)
459#define BT_HCI_OP_READ_REMOTE_VERSION_INFO BT_OP(BT_OGF_LINK_CTRL, 0x001d)
464#define BT_HCI_OP_IO_CAPABILITY_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x002b)
472#define BT_HCI_OP_USER_CONFIRM_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x002c)
473#define BT_HCI_OP_USER_CONFIRM_NEG_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x002d)
482#define BT_HCI_OP_USER_PASSKEY_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x002e)
488#define BT_HCI_OP_USER_PASSKEY_NEG_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x002f)
493#define BT_HCI_OP_IO_CAPABILITY_NEG_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x0034)
499#define BT_HCI_OP_SET_EVENT_MASK BT_OP(BT_OGF_BASEBAND, 0x0001)
504#define BT_HCI_OP_RESET BT_OP(BT_OGF_BASEBAND, 0x0003)
506#define BT_HCI_OP_WRITE_LOCAL_NAME BT_OP(BT_OGF_BASEBAND, 0x0013)
511#define BT_HCI_OP_WRITE_PAGE_TIMEOUT BT_OP(BT_OGF_BASEBAND, 0x0018)
513#define BT_HCI_OP_WRITE_SCAN_ENABLE BT_OP(BT_OGF_BASEBAND, 0x001a)
514#define BT_BREDR_SCAN_DISABLED 0x00
515#define BT_BREDR_SCAN_INQUIRY 0x01
516#define BT_BREDR_SCAN_PAGE 0x02
518#define BT_HCI_OP_WRITE_CLASS_OF_DEVICE BT_OP(BT_OGF_BASEBAND, 0x0024)
523#define BT_TX_POWER_LEVEL_CURRENT 0x00
524#define BT_TX_POWER_LEVEL_MAX 0x01
525#define BT_HCI_OP_READ_TX_POWER_LEVEL BT_OP(BT_OGF_BASEBAND, 0x002d)
537#define BT_HCI_CTL_TO_HOST_FLOW_DISABLE 0x00
538#define BT_HCI_CTL_TO_HOST_FLOW_ENABLE 0x01
539#define BT_HCI_OP_SET_CTL_TO_HOST_FLOW BT_OP(BT_OGF_BASEBAND, 0x0031)
544#define BT_HCI_OP_HOST_BUFFER_SIZE BT_OP(BT_OGF_BASEBAND, 0x0033)
557#define BT_HCI_OP_HOST_NUM_COMPLETED_PACKETS BT_OP(BT_OGF_BASEBAND, 0x0035)
563#define BT_HCI_OP_WRITE_INQUIRY_MODE BT_OP(BT_OGF_BASEBAND, 0x0045)
568#define BT_HCI_OP_WRITE_SSP_MODE BT_OP(BT_OGF_BASEBAND, 0x0056)
573#define BT_HCI_OP_SET_EVENT_MASK_PAGE_2 BT_OP(BT_OGF_BASEBAND, 0x0063)
578#define BT_HCI_OP_LE_WRITE_LE_HOST_SUPP BT_OP(BT_OGF_BASEBAND, 0x006d)
584#define BT_HCI_OP_WRITE_SC_HOST_SUPP BT_OP(BT_OGF_BASEBAND, 0x007a)
589#define BT_HCI_OP_READ_AUTH_PAYLOAD_TIMEOUT BT_OP(BT_OGF_BASEBAND, 0x007b)
600#define BT_HCI_OP_WRITE_AUTH_PAYLOAD_TIMEOUT BT_OP(BT_OGF_BASEBAND, 0x007c)
611#define BT_HCI_OP_CONFIGURE_DATA_PATH BT_OP(BT_OGF_BASEBAND, 0x0083)
624#define BT_HCI_VERSION_1_0B 0
625#define BT_HCI_VERSION_1_1 1
626#define BT_HCI_VERSION_1_2 2
627#define BT_HCI_VERSION_2_0 3
628#define BT_HCI_VERSION_2_1 4
629#define BT_HCI_VERSION_3_0 5
630#define BT_HCI_VERSION_4_0 6
631#define BT_HCI_VERSION_4_1 7
632#define BT_HCI_VERSION_4_2 8
633#define BT_HCI_VERSION_5_0 9
634#define BT_HCI_VERSION_5_1 10
635#define BT_HCI_VERSION_5_2 11
636#define BT_HCI_VERSION_5_3 12
638#define BT_HCI_OP_READ_LOCAL_VERSION_INFO BT_OP(BT_OGF_INFO, 0x0001)
648#define BT_HCI_OP_READ_SUPPORTED_COMMANDS BT_OP(BT_OGF_INFO, 0x0002)
654#define BT_HCI_OP_READ_LOCAL_EXT_FEATURES BT_OP(BT_OGF_INFO, 0x0004)
665#define BT_HCI_OP_READ_LOCAL_FEATURES BT_OP(BT_OGF_INFO, 0x0003)
671#define BT_HCI_OP_READ_BUFFER_SIZE BT_OP(BT_OGF_INFO, 0x0005)
680#define BT_HCI_OP_READ_BD_ADDR BT_OP(BT_OGF_INFO, 0x0009)
687#define BT_HCI_CODEC_TRANSPORT_MASK_BREDR_ACL BIT(0)
688#define BT_HCI_CODEC_TRANSPORT_MASK_BREDR_SCO BIT(1)
689#define BT_HCI_CODEC_TRANSPORT_MASK_LE_CIS BIT(2)
690#define BT_HCI_CODEC_TRANSPORT_MASK_LE_BIS BIT(3)
693#define BT_HCI_LOGICAL_TRANSPORT_TYPE_BREDR_ACL 0x00
694#define BT_HCI_LOGICAL_TRANSPORT_TYPE_BREDR_SCO 0x01
695#define BT_HCI_LOGICAL_TRANSPORT_TYPE_LE_CIS 0x02
696#define BT_HCI_LOGICAL_TRANSPORT_TYPE_LE_BIS 0x03
699#define BT_HCI_DATAPATH_DIR_HOST_TO_CTLR 0x00
700#define BT_HCI_DATAPATH_DIR_CTLR_TO_HOST 0x01
703#define BT_HCI_DATAPATH_ID_HCI 0x00
704#define BT_HCI_DATAPATH_ID_VS 0x01
705#define BT_HCI_DATAPATH_ID_VS_END 0xfe
706#define BT_HCI_DATAPATH_ID_DISABLED 0xff
709#define BT_HCI_CODING_FORMAT_ULAW_LOG 0x00
710#define BT_HCI_CODING_FORMAT_ALAW_LOG 0x01
711#define BT_HCI_CODING_FORMAT_CVSD 0x02
712#define BT_HCI_CODING_FORMAT_TRANSPARENT 0x03
713#define BT_HCI_CODING_FORMAT_LINEAR_PCM 0x04
714#define BT_HCI_CODING_FORMAT_MSBC 0x05
715#define BT_HCI_CODING_FORMAT_VS 0xFF
718#define BT_HCI_OP_READ_CODECS BT_OP(BT_OGF_INFO, 0x000b)
740#define BT_HCI_OP_READ_CODECS_V2 BT_OP(BT_OGF_INFO, 0x000d)
770#define BT_HCI_OP_READ_CODEC_CAPABILITIES BT_OP(BT_OGF_INFO, 0x000e)
787#define BT_HCI_OP_READ_CTLR_DELAY BT_OP(BT_OGF_INFO, 0x000f)
801#define BT_HCI_OP_READ_RSSI BT_OP(BT_OGF_STATUS, 0x0005)
811#define BT_HCI_ENCRYPTION_KEY_SIZE_MIN 7
812#define BT_HCI_ENCRYPTION_KEY_SIZE_MAX 16
814#define BT_HCI_OP_READ_ENCRYPTION_KEY_SIZE BT_OP(BT_OGF_STATUS, 0x0008)
826#define BT_HCI_OP_LE_SET_EVENT_MASK BT_OP(BT_OGF_LE, 0x0001)
831#define BT_HCI_OP_LE_READ_BUFFER_SIZE BT_OP(BT_OGF_LE, 0x0002)
838#define BT_HCI_OP_LE_READ_LOCAL_FEATURES BT_OP(BT_OGF_LE, 0x0003)
844#define BT_HCI_OP_LE_SET_RANDOM_ADDRESS BT_OP(BT_OGF_LE, 0x0005)
849#define BT_HCI_ADV_IND 0x00
850#define BT_HCI_ADV_DIRECT_IND 0x01
851#define BT_HCI_ADV_SCAN_IND 0x02
852#define BT_HCI_ADV_NONCONN_IND 0x03
853#define BT_HCI_ADV_DIRECT_IND_LOW_DUTY 0x04
854#define BT_HCI_ADV_SCAN_RSP 0x04
856#define BT_LE_ADV_INTERVAL_MIN 0x0020
857#define BT_LE_ADV_INTERVAL_MAX 0x4000
858#define BT_LE_ADV_INTERVAL_DEFAULT 0x0800
860#define BT_LE_ADV_CHAN_MAP_CHAN_37 0x01
861#define BT_LE_ADV_CHAN_MAP_CHAN_38 0x02
862#define BT_LE_ADV_CHAN_MAP_CHAN_39 0x04
863#define BT_LE_ADV_CHAN_MAP_ALL 0x07
865#define BT_LE_ADV_FP_NO_FILTER 0x00
866#define BT_LE_ADV_FP_FILTER_SCAN_REQ 0x01
867#define BT_LE_ADV_FP_FILTER_CONN_IND 0x02
868#define BT_LE_ADV_FP_FILTER_BOTH 0x03
870#define BT_HCI_OP_LE_SET_ADV_PARAM BT_OP(BT_OGF_LE, 0x0006)
881#define BT_HCI_OP_LE_READ_ADV_CHAN_TX_POWER BT_OP(BT_OGF_LE, 0x0007)
887#define BT_HCI_OP_LE_SET_ADV_DATA BT_OP(BT_OGF_LE, 0x0008)
893#define BT_HCI_OP_LE_SET_SCAN_RSP_DATA BT_OP(BT_OGF_LE, 0x0009)
899#define BT_HCI_LE_ADV_DISABLE 0x00
900#define BT_HCI_LE_ADV_ENABLE 0x01
902#define BT_HCI_OP_LE_SET_ADV_ENABLE BT_OP(BT_OGF_LE, 0x000a)
908#define BT_HCI_OP_LE_SET_SCAN_PARAM BT_OP(BT_OGF_LE, 0x000b)
909#define BT_HCI_LE_SCAN_PASSIVE 0x00
910#define BT_HCI_LE_SCAN_ACTIVE 0x01
912#define BT_HCI_LE_SCAN_FP_BASIC_NO_FILTER 0x00
913#define BT_HCI_LE_SCAN_FP_BASIC_FILTER 0x01
914#define BT_HCI_LE_SCAN_FP_EXT_NO_FILTER 0x02
915#define BT_HCI_LE_SCAN_FP_EXT_FILTER 0x03
925#define BT_HCI_OP_LE_SET_SCAN_ENABLE BT_OP(BT_OGF_LE, 0x000c)
927#define BT_HCI_LE_SCAN_DISABLE 0x00
928#define BT_HCI_LE_SCAN_ENABLE 0x01
930#define BT_HCI_LE_SCAN_FILTER_DUP_DISABLE 0x00
931#define BT_HCI_LE_SCAN_FILTER_DUP_ENABLE 0x01
938#define BT_HCI_OP_LE_CREATE_CONN BT_OP(BT_OGF_LE, 0x000d)
940#define BT_HCI_LE_CREATE_CONN_FP_NO_FILTER 0x00
941#define BT_HCI_LE_CREATE_CONN_FP_FILTER 0x01
957#define BT_HCI_OP_LE_CREATE_CONN_CANCEL BT_OP(BT_OGF_LE, 0x000e)
959#define BT_HCI_OP_LE_READ_FAL_SIZE BT_OP(BT_OGF_LE, 0x000f)
965#define BT_HCI_OP_LE_CLEAR_FAL BT_OP(BT_OGF_LE, 0x0010)
967#define BT_HCI_OP_LE_ADD_DEV_TO_FAL BT_OP(BT_OGF_LE, 0x0011)
972#define BT_HCI_OP_LE_REM_DEV_FROM_FAL BT_OP(BT_OGF_LE, 0x0012)
977#define BT_HCI_OP_LE_CONN_UPDATE BT_OP(BT_OGF_LE, 0x0013)
988#define BT_HCI_OP_LE_SET_HOST_CHAN_CLASSIF BT_OP(BT_OGF_LE, 0x0014)
993#define BT_HCI_OP_LE_READ_CHAN_MAP BT_OP(BT_OGF_LE, 0x0015)
1003#define BT_HCI_OP_LE_READ_REMOTE_FEATURES BT_OP(BT_OGF_LE, 0x0016)
1008#define BT_HCI_OP_LE_ENCRYPT BT_OP(BT_OGF_LE, 0x0017)
1018#define BT_HCI_OP_LE_RAND BT_OP(BT_OGF_LE, 0x0018)
1024#define BT_HCI_OP_LE_START_ENCRYPTION BT_OP(BT_OGF_LE, 0x0019)
1032#define BT_HCI_OP_LE_LTK_REQ_REPLY BT_OP(BT_OGF_LE, 0x001a)
1042#define BT_HCI_OP_LE_LTK_REQ_NEG_REPLY BT_OP(BT_OGF_LE, 0x001b)
1051#define BT_HCI_OP_LE_READ_SUPP_STATES BT_OP(BT_OGF_LE, 0x001c)
1057#define BT_HCI_OP_LE_RX_TEST BT_OP(BT_OGF_LE, 0x001d)
1062#define BT_HCI_TEST_PKT_PAYLOAD_PRBS9 0x00
1063#define BT_HCI_TEST_PKT_PAYLOAD_11110000 0x01
1064#define BT_HCI_TEST_PKT_PAYLOAD_10101010 0x02
1065#define BT_HCI_TEST_PKT_PAYLOAD_PRBS15 0x03
1066#define BT_HCI_TEST_PKT_PAYLOAD_11111111 0x04
1067#define BT_HCI_TEST_PKT_PAYLOAD_00000000 0x05
1068#define BT_HCI_TEST_PKT_PAYLOAD_00001111 0x06
1069#define BT_HCI_TEST_PKT_PAYLOAD_01010101 0x07
1071#define BT_HCI_OP_LE_TX_TEST BT_OP(BT_OGF_LE, 0x001e)
1078#define BT_HCI_OP_LE_TEST_END BT_OP(BT_OGF_LE, 0x001f)
1084#define BT_HCI_OP_LE_CONN_PARAM_REQ_REPLY BT_OP(BT_OGF_LE, 0x0020)
1099#define BT_HCI_OP_LE_CONN_PARAM_REQ_NEG_REPLY BT_OP(BT_OGF_LE, 0x0021)
1109#define BT_HCI_OP_LE_SET_DATA_LEN BT_OP(BT_OGF_LE, 0x0022)
1120#define BT_HCI_OP_LE_READ_DEFAULT_DATA_LEN BT_OP(BT_OGF_LE, 0x0023)
1127#define BT_HCI_OP_LE_WRITE_DEFAULT_DATA_LEN BT_OP(BT_OGF_LE, 0x0024)
1133#define BT_HCI_OP_LE_P256_PUBLIC_KEY BT_OP(BT_OGF_LE, 0x0025)
1135#define BT_HCI_OP_LE_GENERATE_DHKEY BT_OP(BT_OGF_LE, 0x0026)
1141#define BT_HCI_OP_LE_GENERATE_DHKEY_V2 BT_OP(BT_OGF_LE, 0x005e)
1143#define BT_HCI_LE_KEY_TYPE_GENERATED 0x00
1144#define BT_HCI_LE_KEY_TYPE_DEBUG 0x01
1152#define BT_HCI_OP_LE_ADD_DEV_TO_RL BT_OP(BT_OGF_LE, 0x0027)
1159#define BT_HCI_OP_LE_REM_DEV_FROM_RL BT_OP(BT_OGF_LE, 0x0028)
1164#define BT_HCI_OP_LE_CLEAR_RL BT_OP(BT_OGF_LE, 0x0029)
1166#define BT_HCI_OP_LE_READ_RL_SIZE BT_OP(BT_OGF_LE, 0x002a)
1172#define BT_HCI_OP_LE_READ_PEER_RPA BT_OP(BT_OGF_LE, 0x002b)
1181#define BT_HCI_OP_LE_READ_LOCAL_RPA BT_OP(BT_OGF_LE, 0x002c)
1190#define BT_HCI_ADDR_RES_DISABLE 0x00
1191#define BT_HCI_ADDR_RES_ENABLE 0x01
1193#define BT_HCI_OP_LE_SET_ADDR_RES_ENABLE BT_OP(BT_OGF_LE, 0x002d)
1198#define BT_HCI_OP_LE_SET_RPA_TIMEOUT BT_OP(BT_OGF_LE, 0x002e)
1203#define BT_HCI_OP_LE_READ_MAX_DATA_LEN BT_OP(BT_OGF_LE, 0x002f)
1212#define BT_HCI_LE_PHY_1M 0x01
1213#define BT_HCI_LE_PHY_2M 0x02
1214#define BT_HCI_LE_PHY_CODED 0x03
1216#define BT_HCI_OP_LE_READ_PHY BT_OP(BT_OGF_LE, 0x0030)
1227#define BT_HCI_LE_PHY_TX_ANY BIT(0)
1228#define BT_HCI_LE_PHY_RX_ANY BIT(1)
1230#define BT_HCI_LE_PHY_PREFER_1M BIT(0)
1231#define BT_HCI_LE_PHY_PREFER_2M BIT(1)
1232#define BT_HCI_LE_PHY_PREFER_CODED BIT(2)
1234#define BT_HCI_OP_LE_SET_DEFAULT_PHY BT_OP(BT_OGF_LE, 0x0031)
1241#define BT_HCI_LE_PHY_CODED_ANY 0x00
1242#define BT_HCI_LE_PHY_CODED_S2 0x01
1243#define BT_HCI_LE_PHY_CODED_S8 0x02
1245#define BT_HCI_OP_LE_SET_PHY BT_OP(BT_OGF_LE, 0x0032)
1254#define BT_HCI_LE_MOD_INDEX_STANDARD 0x00
1255#define BT_HCI_LE_MOD_INDEX_STABLE 0x01
1257#define BT_HCI_LE_RX_PHY_1M 0x01
1258#define BT_HCI_LE_RX_PHY_2M 0x02
1259#define BT_HCI_LE_RX_PHY_CODED 0x03
1261#define BT_HCI_OP_LE_ENH_RX_TEST BT_OP(BT_OGF_LE, 0x0033)
1268#define BT_HCI_LE_TX_PHY_1M 0x01
1269#define BT_HCI_LE_TX_PHY_2M 0x02
1270#define BT_HCI_LE_TX_PHY_CODED_S8 0x03
1271#define BT_HCI_LE_TX_PHY_CODED_S2 0x04
1273#define BT_HCI_OP_LE_ENH_TX_TEST BT_OP(BT_OGF_LE, 0x0034)
1281#define BT_HCI_OP_LE_SET_ADV_SET_RANDOM_ADDR BT_OP(BT_OGF_LE, 0x0035)
1287#define BT_HCI_LE_ADV_PROP_CONN BIT(0)
1288#define BT_HCI_LE_ADV_PROP_SCAN BIT(1)
1289#define BT_HCI_LE_ADV_PROP_DIRECT BIT(2)
1290#define BT_HCI_LE_ADV_PROP_HI_DC_CONN BIT(3)
1291#define BT_HCI_LE_ADV_PROP_LEGACY BIT(4)
1292#define BT_HCI_LE_ADV_PROP_ANON BIT(5)
1293#define BT_HCI_LE_ADV_PROP_TX_POWER BIT(6)
1295#define BT_HCI_LE_PRIM_ADV_INTERVAL_MIN 0x000020
1296#define BT_HCI_LE_PRIM_ADV_INTERVAL_MAX 0xFFFFFF
1298#define BT_HCI_LE_ADV_SCAN_REQ_ENABLE 1
1299#define BT_HCI_LE_ADV_SCAN_REQ_DISABLE 0
1301#define BT_HCI_LE_ADV_TX_POWER_NO_PREF 0x7F
1303#define BT_HCI_LE_ADV_HANDLE_MAX 0xEF
1305#define BT_HCI_LE_EXT_ADV_SID_INVALID 0xFF
1307#define BT_HCI_OP_LE_SET_EXT_ADV_PARAM BT_OP(BT_OGF_LE, 0x0036)
1329#define BT_HCI_LE_EXT_ADV_OP_INTERM_FRAG 0x00
1330#define BT_HCI_LE_EXT_ADV_OP_FIRST_FRAG 0x01
1331#define BT_HCI_LE_EXT_ADV_OP_LAST_FRAG 0x02
1332#define BT_HCI_LE_EXT_ADV_OP_COMPLETE_DATA 0x03
1333#define BT_HCI_LE_EXT_ADV_OP_UNCHANGED_DATA 0x04
1335#define BT_HCI_LE_EXT_ADV_FRAG_ENABLED 0x00
1336#define BT_HCI_LE_EXT_ADV_FRAG_DISABLED 0x01
1338#define BT_HCI_LE_EXT_ADV_FRAG_MAX_LEN 251
1340#define BT_HCI_OP_LE_SET_EXT_ADV_DATA BT_OP(BT_OGF_LE, 0x0037)
1349#define BT_HCI_OP_LE_SET_EXT_SCAN_RSP_DATA BT_OP(BT_OGF_LE, 0x0038)
1358#define BT_HCI_OP_LE_SET_EXT_ADV_ENABLE BT_OP(BT_OGF_LE, 0x0039)
1371#define BT_HCI_OP_LE_READ_MAX_ADV_DATA_LEN BT_OP(BT_OGF_LE, 0x003a)
1377#define BT_HCI_OP_LE_READ_NUM_ADV_SETS BT_OP(BT_OGF_LE, 0x003b)
1383#define BT_HCI_OP_LE_REMOVE_ADV_SET BT_OP(BT_OGF_LE, 0x003c)
1388#define BT_HCI_OP_CLEAR_ADV_SETS BT_OP(BT_OGF_LE, 0x003d)
1390#define BT_HCI_LE_PER_ADV_INTERVAL_MIN 0x0006
1391#define BT_HCI_LE_PER_ADV_INTERVAL_MAX 0xFFFF
1393#define BT_HCI_OP_LE_SET_PER_ADV_PARAM BT_OP(BT_OGF_LE, 0x003e)
1401#define BT_HCI_LE_PER_ADV_OP_INTERM_FRAG 0x00
1402#define BT_HCI_LE_PER_ADV_OP_FIRST_FRAG 0x01
1403#define BT_HCI_LE_PER_ADV_OP_LAST_FRAG 0x02
1404#define BT_HCI_LE_PER_ADV_OP_COMPLETE_DATA 0x03
1406#define BT_HCI_LE_PER_ADV_FRAG_MAX_LEN 252
1408#define BT_HCI_OP_LE_SET_PER_ADV_DATA BT_OP(BT_OGF_LE, 0x003f)
1416#define BT_HCI_LE_SET_PER_ADV_ENABLE_ENABLE BIT(0)
1417#define BT_HCI_LE_SET_PER_ADV_ENABLE_ADI BIT(1)
1419#define BT_HCI_OP_LE_SET_PER_ADV_ENABLE BT_OP(BT_OGF_LE, 0x0040)
1425#define BT_HCI_OP_LE_SET_EXT_SCAN_PARAM BT_OP(BT_OGF_LE, 0x0041)
1432#define BT_HCI_LE_EXT_SCAN_PHY_1M BIT(0)
1433#define BT_HCI_LE_EXT_SCAN_PHY_2M BIT(1)
1434#define BT_HCI_LE_EXT_SCAN_PHY_CODED BIT(2)
1444#define BT_HCI_LE_EXT_SCAN_FILTER_DUP_ENABLE_RESET 0x02
1446#define BT_HCI_OP_LE_SET_EXT_SCAN_ENABLE BT_OP(BT_OGF_LE, 0x0042)
1454#define BT_HCI_OP_LE_EXT_CREATE_CONN BT_OP(BT_OGF_LE, 0x0043)
1474#define BT_HCI_LE_PER_ADV_CREATE_SYNC_FP_USE_LIST BIT(0)
1475#define BT_HCI_LE_PER_ADV_CREATE_SYNC_FP_REPORTS_DISABLED BIT(1)
1476#define BT_HCI_LE_PER_ADV_CREATE_SYNC_FP_FILTER_DUPLICATE BIT(2)
1478#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_NO_FILTERING 0
1479#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_NO_AOA BIT(0)
1480#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_NO_AOD_1US BIT(1)
1481#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_NO_AOD_2US BIT(2)
1482#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_NO_CTE BIT(3)
1483#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_ONLY_CTE BIT(4)
1485#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_ALLOWED_BITS 5
1486#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_INVALID_VALUE \
1487 (~BIT_MASK(BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_ALLOWED_BITS))
1489#define BT_HCI_OP_LE_PER_ADV_CREATE_SYNC BT_OP(BT_OGF_LE, 0x0044)
1499#define BT_HCI_OP_LE_PER_ADV_CREATE_SYNC_CANCEL BT_OP(BT_OGF_LE, 0x0045)
1501#define BT_HCI_OP_LE_PER_ADV_TERMINATE_SYNC BT_OP(BT_OGF_LE, 0x0046)
1506#define BT_HCI_OP_LE_ADD_DEV_TO_PER_ADV_LIST BT_OP(BT_OGF_LE, 0x0047)
1512#define BT_HCI_OP_LE_REM_DEV_FROM_PER_ADV_LIST BT_OP(BT_OGF_LE, 0x0048)
1518#define BT_HCI_OP_LE_CLEAR_PER_ADV_LIST BT_OP(BT_OGF_LE, 0x0049)
1520#define BT_HCI_OP_LE_READ_PER_ADV_LIST_SIZE BT_OP(BT_OGF_LE, 0x004a)
1526#define BT_HCI_OP_LE_READ_TX_POWER BT_OP(BT_OGF_LE, 0x004b)
1533#define BT_HCI_OP_LE_READ_RF_PATH_COMP BT_OP(BT_OGF_LE, 0x004c)
1540#define BT_HCI_OP_LE_WRITE_RF_PATH_COMP BT_OP(BT_OGF_LE, 0x004d)
1546#define BT_HCI_LE_PRIVACY_MODE_NETWORK 0x00
1547#define BT_HCI_LE_PRIVACY_MODE_DEVICE 0x01
1549#define BT_HCI_OP_LE_SET_PRIVACY_MODE BT_OP(BT_OGF_LE, 0x004e)
1555#define BT_HCI_LE_TEST_CTE_DISABLED 0x00
1556#define BT_HCI_LE_TEST_CTE_TYPE_ANY 0x00
1557#define BT_HCI_LE_TEST_SLOT_DURATION_ANY 0x00
1558#define BT_HCI_LE_TEST_SWITCH_PATTERN_LEN_ANY 0x00
1560#define BT_HCI_OP_LE_RX_TEST_V3 BT_OP(BT_OGF_LE, 0x004f)
1572#define BT_HCI_OP_LE_TX_TEST_V3 BT_OP(BT_OGF_LE, 0x0050)
1586#define BT_HCI_LE_CTE_LEN_MIN 0x2
1587#define BT_HCI_LE_CTE_LEN_MAX 0x14
1589#define BT_HCI_LE_AOA_CTE 0x0
1590#define BT_HCI_LE_AOD_CTE_1US 0x1
1591#define BT_HCI_LE_AOD_CTE_2US 0x2
1592#define BT_HCI_LE_NO_CTE 0xFF
1594#define BT_HCI_LE_CTE_COUNT_MIN 0x1
1595#define BT_HCI_LE_CTE_COUNT_MAX 0x10
1597#define BT_HCI_OP_LE_SET_CL_CTE_TX_PARAMS BT_OP(BT_OGF_LE, 0x0051)
1607#define BT_HCI_OP_LE_SET_CL_CTE_TX_ENABLE BT_OP(BT_OGF_LE, 0x0052)
1613#define BT_HCI_LE_ANTENNA_SWITCHING_SLOT_1US 0x1
1614#define BT_HCI_LE_ANTENNA_SWITCHING_SLOT_2US 0x2
1616#define BT_HCI_LE_SAMPLE_CTE_ALL 0x0
1617#define BT_HCI_LE_SAMPLE_CTE_COUNT_MIN 0x1
1618#define BT_HCI_LE_SAMPLE_CTE_COUNT_MAX 0x10
1620#define BT_HCI_OP_LE_SET_CL_CTE_SAMPLING_ENABLE BT_OP(BT_OGF_LE, 0x0053)
1635#define BT_HCI_OP_LE_SET_CONN_CTE_RX_PARAMS BT_OP(BT_OGF_LE, 0x0054)
1649#define BT_HCI_LE_AOA_CTE_RSP BIT(0)
1650#define BT_HCI_LE_AOD_CTE_RSP_1US BIT(1)
1651#define BT_HCI_LE_AOD_CTE_RSP_2US BIT(2)
1653#define BT_HCI_LE_SWITCH_PATTERN_LEN_MIN 0x2
1654#define BT_HCI_LE_SWITCH_PATTERN_LEN_MAX 0x4B
1656#define BT_HCI_OP_LE_SET_CONN_CTE_TX_PARAMS BT_OP(BT_OGF_LE, 0x0055)
1670#define BT_HCI_REQUEST_CTE_ONCE 0x0
1671#define BT_HCI_REQUEST_CTE_INTERVAL_MIN 0x1
1672#define BT_HCI_REQUEST_CTE_INTERVAL_MAX 0xFFFF
1674#define BT_HCI_OP_LE_CONN_CTE_REQ_ENABLE BT_OP(BT_OGF_LE, 0x0056)
1688#define BT_HCI_OP_LE_CONN_CTE_RSP_ENABLE BT_OP(BT_OGF_LE, 0x0057)
1699#define BT_HCI_LE_1US_AOD_TX BIT(0)
1700#define BT_HCI_LE_1US_AOD_RX BIT(1)
1701#define BT_HCI_LE_1US_AOA_RX BIT(2)
1703#define BT_HCI_LE_NUM_ANT_MIN 0x1
1704#define BT_HCI_LE_NUM_ANT_MAX 0x4B
1706#define BT_HCI_LE_MAX_SWITCH_PATTERN_LEN_MIN 0x2
1707#define BT_HCI_LE_MAX_SWITCH_PATTERN_LEN_MAX 0x4B
1709#define BT_HCI_LE_MAX_CTE_LEN_MIN 0x2
1710#define BT_HCI_LE_MAX_CTE_LEN_MAX 0x14
1712#define BT_HCI_OP_LE_READ_ANT_INFO BT_OP(BT_OGF_LE, 0x0058)
1721#define BT_HCI_LE_SET_PER_ADV_RECV_ENABLE_ENABLE BIT(0)
1722#define BT_HCI_LE_SET_PER_ADV_RECV_ENABLE_FILTER_DUPLICATE BIT(1)
1724#define BT_HCI_OP_LE_SET_PER_ADV_RECV_ENABLE BT_OP(BT_OGF_LE, 0x0059)
1730#define BT_HCI_OP_LE_PER_ADV_SYNC_TRANSFER BT_OP(BT_OGF_LE, 0x005a)
1742#define BT_HCI_OP_LE_PER_ADV_SET_INFO_TRANSFER BT_OP(BT_OGF_LE, 0x005b)
1754#define BT_HCI_LE_PAST_MODE_NO_SYNC 0x00
1755#define BT_HCI_LE_PAST_MODE_NO_REPORTS 0x01
1756#define BT_HCI_LE_PAST_MODE_SYNC 0x02
1758#define BT_HCI_LE_PAST_CTE_TYPE_NO_AOA BIT(0)
1759#define BT_HCI_LE_PAST_CTE_TYPE_NO_AOD_1US BIT(1)
1760#define BT_HCI_LE_PAST_CTE_TYPE_NO_AOD_2US BIT(2)
1761#define BT_HCI_LE_PAST_CTE_TYPE_NO_CTE BIT(3)
1762#define BT_HCI_LE_PAST_CTE_TYPE_ONLY_CTE BIT(4)
1764#define BT_HCI_OP_LE_PAST_PARAM BT_OP(BT_OGF_LE, 0x005c)
1778#define BT_HCI_OP_LE_DEFAULT_PAST_PARAM BT_OP(BT_OGF_LE, 0x005d)
1790#define BT_HCI_OP_LE_READ_BUFFER_SIZE_V2 BT_OP(BT_OGF_LE, 0x0060)
1799#define BT_HCI_OP_LE_READ_ISO_TX_SYNC BT_OP(BT_OGF_LE, 0x0061)
1812#define BT_HCI_OP_LE_SET_CIG_PARAMS BT_OP(BT_OGF_LE, 0x0062)
1843#define BT_HCI_OP_LE_SET_CIG_PARAMS_TEST BT_OP(BT_OGF_LE, 0x0063)
1878#define BT_HCI_OP_LE_CREATE_CIS BT_OP(BT_OGF_LE, 0x0064)
1889#define BT_HCI_OP_LE_REMOVE_CIG BT_OP(BT_OGF_LE, 0x0065)
1899#define BT_HCI_OP_LE_ACCEPT_CIS BT_OP(BT_OGF_LE, 0x0066)
1904#define BT_HCI_OP_LE_REJECT_CIS BT_OP(BT_OGF_LE, 0x0067)
1915#define BT_HCI_OP_LE_CREATE_BIG BT_OP(BT_OGF_LE, 0x0068)
1931#define BT_HCI_OP_LE_CREATE_BIG_TEST BT_OP(BT_OGF_LE, 0x0069)
1951#define BT_HCI_OP_LE_TERMINATE_BIG BT_OP(BT_OGF_LE, 0x006a)
1957#define BT_HCI_OP_LE_BIG_CREATE_SYNC BT_OP(BT_OGF_LE, 0x006b)
1969#define BT_HCI_OP_LE_BIG_TERMINATE_SYNC BT_OP(BT_OGF_LE, 0x006c)
1979#define BT_HCI_OP_LE_REQ_PEER_SC BT_OP(BT_OGF_LE, 0x006d)
1984#define BT_HCI_OP_LE_SETUP_ISO_PATH BT_OP(BT_OGF_LE, 0x006e)
2000#define BT_HCI_OP_LE_REMOVE_ISO_PATH BT_OP(BT_OGF_LE, 0x006f)
2011#define BT_HCI_ISO_TEST_ZERO_SIZE_SDU 0
2012#define BT_HCI_ISO_TEST_VARIABLE_SIZE_SDU 1
2013#define BT_HCI_ISO_TEST_MAX_SIZE_SDU 2
2015#define BT_HCI_OP_LE_ISO_TRANSMIT_TEST BT_OP(BT_OGF_LE, 0x0070)
2026#define BT_HCI_OP_LE_ISO_RECEIVE_TEST BT_OP(BT_OGF_LE, 0x0071)
2037#define BT_HCI_OP_LE_ISO_READ_TEST_COUNTERS BT_OP(BT_OGF_LE, 0x0072)
2050#define BT_HCI_OP_LE_ISO_TEST_END BT_OP(BT_OGF_LE, 0x0073)
2063#define BT_HCI_OP_LE_SET_HOST_FEATURE BT_OP(BT_OGF_LE, 0x0074)
2073#define BT_HCI_OP_LE_READ_ISO_LINK_QUALITY BT_OP(BT_OGF_LE, 0x0075)
2090#define BT_HCI_OP_LE_TX_TEST_V4 BT_OP(BT_OGF_LE, 0x007B)
2103#define BT_HCI_TX_TEST_POWER_MIN -0x7F
2104#define BT_HCI_TX_TEST_POWER_MAX 0x14
2106#define BT_HCI_TX_TEST_POWER_MIN_SET 0x7E
2107#define BT_HCI_TX_TEST_POWER_MAX_SET 0x7F
2119#define BT_HCI_EVT_UNKNOWN 0x00
2120#define BT_HCI_EVT_VENDOR 0xff
2122#define BT_HCI_EVT_INQUIRY_COMPLETE 0x01
2127#define BT_HCI_EVT_CONN_COMPLETE 0x03
2136#define BT_HCI_EVT_CONN_REQUEST 0x04
2143#define BT_HCI_EVT_DISCONN_COMPLETE 0x05
2150#define BT_HCI_EVT_AUTH_COMPLETE 0x06
2156#define BT_HCI_EVT_REMOTE_NAME_REQ_COMPLETE 0x07
2163#define BT_HCI_EVT_ENCRYPT_CHANGE 0x08
2170#define BT_HCI_EVT_REMOTE_FEATURES 0x0b
2177#define BT_HCI_EVT_REMOTE_VERSION_INFO 0x0c
2186#define BT_HCI_EVT_CMD_COMPLETE 0x0e
2196#define BT_HCI_EVT_CMD_STATUS 0x0f
2203#define BT_HCI_EVT_HARDWARE_ERROR 0x10
2208#define BT_HCI_EVT_ROLE_CHANGE 0x12
2215#define BT_HCI_EVT_NUM_COMPLETED_PACKETS 0x13
2221#define BT_HCI_EVT_PIN_CODE_REQ 0x16
2226#define BT_HCI_EVT_LINK_KEY_REQ 0x17
2232#define BT_LK_COMBINATION 0x00
2233#define BT_LK_LOCAL_UNIT 0x01
2234#define BT_LK_REMOTE_UNIT 0x02
2235#define BT_LK_DEBUG_COMBINATION 0x03
2236#define BT_LK_UNAUTH_COMBINATION_P192 0x04
2237#define BT_LK_AUTH_COMBINATION_P192 0x05
2238#define BT_LK_CHANGED_COMBINATION 0x06
2239#define BT_LK_UNAUTH_COMBINATION_P256 0x07
2240#define BT_LK_AUTH_COMBINATION_P256 0x08
2242#define BT_HCI_EVT_LINK_KEY_NOTIFY 0x18
2250#define BT_OVERFLOW_LINK_SYNCH 0x00
2251#define BT_OVERFLOW_LINK_ACL 0x01
2252#define BT_OVERFLOW_LINK_ISO 0x02
2254#define BT_HCI_EVT_DATA_BUF_OVERFLOW 0x1a
2259#define BT_HCI_EVT_INQUIRY_RESULT_WITH_RSSI 0x22
2269#define BT_HCI_EVT_REMOTE_EXT_FEATURES 0x23
2278#define BT_HCI_EVT_SYNC_CONN_COMPLETE 0x2c
2291#define BT_HCI_EVT_EXTENDED_INQUIRY_RESULT 0x2f
2303#define BT_HCI_EVT_ENCRYPT_KEY_REFRESH_COMPLETE 0x30
2309#define BT_HCI_EVT_IO_CAPA_REQ 0x31
2314#define BT_HCI_EVT_IO_CAPA_RESP 0x32
2322#define BT_HCI_EVT_USER_CONFIRM_REQ 0x33
2328#define BT_HCI_EVT_USER_PASSKEY_REQ 0x34
2333#define BT_HCI_EVT_SSP_COMPLETE 0x36
2339#define BT_HCI_EVT_USER_PASSKEY_NOTIFY 0x3b
2345#define BT_HCI_EVT_LE_META_EVENT 0x3e
2350#define BT_HCI_EVT_AUTH_PAYLOAD_TIMEOUT_EXP 0x57
2355#define BT_HCI_ROLE_CENTRAL 0x00
2356#define BT_HCI_ROLE_PERIPHERAL 0x01
2358#define BT_HCI_EVT_LE_CONN_COMPLETE 0x01
2370#define BT_HCI_LE_RSSI_NOT_AVAILABLE 0x7F
2372#define BT_HCI_EVT_LE_ADVERTISING_REPORT 0x02
2384#define BT_HCI_EVT_LE_CONN_UPDATE_COMPLETE 0x03
2393#define BT_HCI_EVT_LE_REMOTE_FEAT_COMPLETE 0x04
2400#define BT_HCI_EVT_LE_LTK_REQUEST 0x05
2407#define BT_HCI_EVT_LE_CONN_PARAM_REQ 0x06
2416#define BT_HCI_EVT_LE_DATA_LEN_CHANGE 0x07
2425#define BT_HCI_EVT_LE_P256_PUBLIC_KEY_COMPLETE 0x08
2431#define BT_HCI_EVT_LE_GENERATE_DHKEY_COMPLETE 0x09
2437#define BT_HCI_EVT_LE_ENH_CONN_COMPLETE 0x0a
2451#define BT_HCI_EVT_LE_DIRECT_ADV_REPORT 0x0b
2463#define BT_HCI_EVT_LE_PHY_UPDATE_COMPLETE 0x0c
2471#define BT_HCI_EVT_LE_EXT_ADVERTISING_REPORT 0x0d
2473#define BT_HCI_LE_ADV_EVT_TYPE_CONN BIT(0)
2474#define BT_HCI_LE_ADV_EVT_TYPE_SCAN BIT(1)
2475#define BT_HCI_LE_ADV_EVT_TYPE_DIRECT BIT(2)
2476#define BT_HCI_LE_ADV_EVT_TYPE_SCAN_RSP BIT(3)
2477#define BT_HCI_LE_ADV_EVT_TYPE_LEGACY BIT(4)
2479#define BT_HCI_LE_ADV_EVT_TYPE_DATA_STATUS(ev_type) (((ev_type) >> 5) & 0x03)
2480#define BT_HCI_LE_ADV_EVT_TYPE_DATA_STATUS_COMPLETE 0
2481#define BT_HCI_LE_ADV_EVT_TYPE_DATA_STATUS_PARTIAL 1
2482#define BT_HCI_LE_ADV_EVT_TYPE_DATA_STATUS_INCOMPLETE 2
2502#define BT_HCI_EVT_LE_PER_ADV_SYNC_ESTABLISHED 0x0e
2513#define BT_HCI_EVT_LE_PER_ADVERTISING_REPORT 0x0f
2524#define BT_HCI_EVT_LE_PER_ADV_SYNC_LOST 0x10
2529#define BT_HCI_EVT_LE_SCAN_TIMEOUT 0x11
2531#define BT_HCI_EVT_LE_ADV_SET_TERMINATED 0x12
2539#define BT_HCI_EVT_LE_SCAN_REQ_RECEIVED 0x13
2545#define BT_HCI_LE_CHAN_SEL_ALGO_1 0x00
2546#define BT_HCI_LE_CHAN_SEL_ALGO_2 0x01
2548#define BT_HCI_EVT_LE_CHAN_SEL_ALGO 0x14
2554#define BT_HCI_LE_CTE_CRC_OK 0x0
2555#define BT_HCI_LE_CTE_CRC_ERR_CTE_BASED_TIME 0x1
2556#define BT_HCI_LE_CTE_CRC_ERR_CTE_BASED_OTHER 0x2
2557#define BT_HCI_LE_CTE_INSUFFICIENT_RESOURCES 0xFF
2559#define B_HCI_LE_CTE_REPORT_SAMPLE_COUNT_MIN 0x9
2560#define B_HCI_LE_CTE_REPORT_SAMPLE_COUNT_MAX 0x52
2562#define BT_HCI_LE_CTE_REPORT_NO_VALID_SAMPLE 0x80
2564#define BT_HCI_EVT_LE_CONNECTIONLESS_IQ_REPORT 0x15
2583#define BT_HCI_EVT_LE_CONNECTION_IQ_REPORT 0x16
2598#define BT_HCI_CTE_REQ_STATUS_RSP_WITHOUT_CTE 0x0
2600#define BT_HCI_EVT_LE_CTE_REQUEST_FAILED 0x17
2611#define BT_HCI_EVT_LE_PAST_RECEIVED 0x18
2624#define BT_HCI_EVT_LE_CIS_ESTABLISHED 0x19
2644#define BT_HCI_EVT_LE_CIS_REQ 0x1a
2652#define BT_HCI_EVT_LE_BIG_COMPLETE 0x1b
2669#define BT_HCI_EVT_LE_BIG_TERMINATE 0x1c
2675#define BT_HCI_EVT_LE_BIG_SYNC_ESTABLISHED 0x1d
2690#define BT_HCI_EVT_LE_BIG_SYNC_LOST 0x1e
2696#define BT_HCI_EVT_LE_REQ_PEER_SCA_COMPLETE 0x1f
2703#define BT_HCI_EVT_LE_BIGINFO_ADV_REPORT 0x22
2722#define BT_EVT_BIT(n) (1ULL << (n))
2724#define BT_EVT_MASK_INQUIRY_COMPLETE BT_EVT_BIT(0)
2725#define BT_EVT_MASK_CONN_COMPLETE BT_EVT_BIT(2)
2726#define BT_EVT_MASK_CONN_REQUEST BT_EVT_BIT(3)
2727#define BT_EVT_MASK_DISCONN_COMPLETE BT_EVT_BIT(4)
2728#define BT_EVT_MASK_AUTH_COMPLETE BT_EVT_BIT(5)
2729#define BT_EVT_MASK_REMOTE_NAME_REQ_COMPLETE BT_EVT_BIT(6)
2730#define BT_EVT_MASK_ENCRYPT_CHANGE BT_EVT_BIT(7)
2731#define BT_EVT_MASK_REMOTE_FEATURES BT_EVT_BIT(10)
2732#define BT_EVT_MASK_REMOTE_VERSION_INFO BT_EVT_BIT(11)
2733#define BT_EVT_MASK_HARDWARE_ERROR BT_EVT_BIT(15)
2734#define BT_EVT_MASK_ROLE_CHANGE BT_EVT_BIT(17)
2735#define BT_EVT_MASK_PIN_CODE_REQ BT_EVT_BIT(21)
2736#define BT_EVT_MASK_LINK_KEY_REQ BT_EVT_BIT(22)
2737#define BT_EVT_MASK_LINK_KEY_NOTIFY BT_EVT_BIT(23)
2738#define BT_EVT_MASK_DATA_BUFFER_OVERFLOW BT_EVT_BIT(25)
2739#define BT_EVT_MASK_INQUIRY_RESULT_WITH_RSSI BT_EVT_BIT(33)
2740#define BT_EVT_MASK_REMOTE_EXT_FEATURES BT_EVT_BIT(34)
2741#define BT_EVT_MASK_SYNC_CONN_COMPLETE BT_EVT_BIT(43)
2742#define BT_EVT_MASK_EXTENDED_INQUIRY_RESULT BT_EVT_BIT(46)
2743#define BT_EVT_MASK_ENCRYPT_KEY_REFRESH_COMPLETE BT_EVT_BIT(47)
2744#define BT_EVT_MASK_IO_CAPA_REQ BT_EVT_BIT(48)
2745#define BT_EVT_MASK_IO_CAPA_RESP BT_EVT_BIT(49)
2746#define BT_EVT_MASK_USER_CONFIRM_REQ BT_EVT_BIT(50)
2747#define BT_EVT_MASK_USER_PASSKEY_REQ BT_EVT_BIT(51)
2748#define BT_EVT_MASK_SSP_COMPLETE BT_EVT_BIT(53)
2749#define BT_EVT_MASK_USER_PASSKEY_NOTIFY BT_EVT_BIT(58)
2750#define BT_EVT_MASK_LE_META_EVENT BT_EVT_BIT(61)
2753#define BT_EVT_MASK_NUM_COMPLETE_DATA_BLOCKS BT_EVT_BIT(8)
2754#define BT_EVT_MASK_TRIGG_CLOCK_CAPTURE BT_EVT_BIT(14)
2755#define BT_EVT_MASK_SYNCH_TRAIN_COMPLETE BT_EVT_BIT(15)
2756#define BT_EVT_MASK_SYNCH_TRAIN_RX BT_EVT_BIT(16)
2757#define BT_EVT_MASK_CL_PER_BC_RX BT_EVT_BIT(17)
2758#define BT_EVT_MASK_CL_PER_BC_TIMEOUT BT_EVT_BIT(18)
2759#define BT_EVT_MASK_TRUNC_PAGE_COMPLETE BT_EVT_BIT(19)
2760#define BT_EVT_MASK_PER_PAGE_RSP_TIMEOUT BT_EVT_BIT(20)
2761#define BT_EVT_MASK_CL_PER_BC_CH_MAP_CHANGE BT_EVT_BIT(21)
2762#define BT_EVT_MASK_INQUIRY_RSP_NOT BT_EVT_BIT(22)
2763#define BT_EVT_MASK_AUTH_PAYLOAD_TIMEOUT_EXP BT_EVT_BIT(23)
2764#define BT_EVT_MASK_SAM_STATUS_CHANGE BT_EVT_BIT(24)
2766#define BT_EVT_MASK_LE_CONN_COMPLETE BT_EVT_BIT(0)
2767#define BT_EVT_MASK_LE_ADVERTISING_REPORT BT_EVT_BIT(1)
2768#define BT_EVT_MASK_LE_CONN_UPDATE_COMPLETE BT_EVT_BIT(2)
2769#define BT_EVT_MASK_LE_REMOTE_FEAT_COMPLETE BT_EVT_BIT(3)
2770#define BT_EVT_MASK_LE_LTK_REQUEST BT_EVT_BIT(4)
2771#define BT_EVT_MASK_LE_CONN_PARAM_REQ BT_EVT_BIT(5)
2772#define BT_EVT_MASK_LE_DATA_LEN_CHANGE BT_EVT_BIT(6)
2773#define BT_EVT_MASK_LE_P256_PUBLIC_KEY_COMPLETE BT_EVT_BIT(7)
2774#define BT_EVT_MASK_LE_GENERATE_DHKEY_COMPLETE BT_EVT_BIT(8)
2775#define BT_EVT_MASK_LE_ENH_CONN_COMPLETE BT_EVT_BIT(9)
2776#define BT_EVT_MASK_LE_DIRECT_ADV_REPORT BT_EVT_BIT(10)
2777#define BT_EVT_MASK_LE_PHY_UPDATE_COMPLETE BT_EVT_BIT(11)
2778#define BT_EVT_MASK_LE_EXT_ADVERTISING_REPORT BT_EVT_BIT(12)
2779#define BT_EVT_MASK_LE_PER_ADV_SYNC_ESTABLISHED BT_EVT_BIT(13)
2780#define BT_EVT_MASK_LE_PER_ADVERTISING_REPORT BT_EVT_BIT(14)
2781#define BT_EVT_MASK_LE_PER_ADV_SYNC_LOST BT_EVT_BIT(15)
2782#define BT_EVT_MASK_LE_SCAN_TIMEOUT BT_EVT_BIT(16)
2783#define BT_EVT_MASK_LE_ADV_SET_TERMINATED BT_EVT_BIT(17)
2784#define BT_EVT_MASK_LE_SCAN_REQ_RECEIVED BT_EVT_BIT(18)
2785#define BT_EVT_MASK_LE_CHAN_SEL_ALGO BT_EVT_BIT(19)
2786#define BT_EVT_MASK_LE_CONNECTIONLESS_IQ_REPORT BT_EVT_BIT(20)
2787#define BT_EVT_MASK_LE_CONNECTION_IQ_REPORT BT_EVT_BIT(21)
2788#define BT_EVT_MASK_LE_CTE_REQUEST_FAILED BT_EVT_BIT(22)
2789#define BT_EVT_MASK_LE_PAST_RECEIVED BT_EVT_BIT(23)
2790#define BT_EVT_MASK_LE_CIS_ESTABLISHED BT_EVT_BIT(24)
2791#define BT_EVT_MASK_LE_CIS_REQ BT_EVT_BIT(25)
2792#define BT_EVT_MASK_LE_BIG_COMPLETE BT_EVT_BIT(26)
2793#define BT_EVT_MASK_LE_BIG_TERMINATED BT_EVT_BIT(27)
2794#define BT_EVT_MASK_LE_BIG_SYNC_ESTABLISHED BT_EVT_BIT(28)
2795#define BT_EVT_MASK_LE_BIG_SYNC_LOST BT_EVT_BIT(29)
2796#define BT_EVT_MASK_LE_REQ_PEER_SCA_COMPLETE BT_EVT_BIT(30)
2797#define BT_EVT_MASK_LE_PATH_LOSS_THRESHOLD BT_EVT_BIT(31)
2798#define BT_EVT_MASK_LE_TRANSMIT_POWER_REPORTING BT_EVT_BIT(32)
2799#define BT_EVT_MASK_LE_BIGINFO_ADV_REPORT BT_EVT_BIT(33)
Bluetooth device address definitions and utilities.
Bluetooth connection handling.
int bt_hci_get_adv_handle(const struct bt_le_ext_adv *adv, uint8_t *adv_handle)
Get advertising handle for an advertising set.
int bt_hci_le_rand(void *buffer, size_t len)
Get Random bytes from the LE Controller.
struct net_buf * bt_hci_cmd_create(uint16_t opcode, uint8_t param_len)
int bt_hci_cmd_send_sync(uint16_t opcode, struct net_buf *buf, struct net_buf **rsp)
int bt_hci_get_conn_handle(const struct bt_conn *conn, uint16_t *conn_handle)
Get connection handle for a connection.
int bt_hci_register_vnd_evt_cb(bt_hci_vnd_evt_cb_t cb)
int bt_hci_cmd_send(uint16_t opcode, struct net_buf *buf)
bool bt_hci_vnd_evt_cb_t(struct net_buf_simple *buf)
Callback type for vendor handling of HCI Vendor-Specific Events.
Definition: hci.h:2889
Bluetooth Host Control Interface status codes.
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT64_TYPE__ uint64_t
Definition: stdint.h:91
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
__INT8_TYPE__ int8_t
Definition: stdint.h:72
__INT16_TYPE__ int16_t
Definition: stdint.h:73
uint16_t handle
Definition: hci.h:59
uint16_t len
Definition: hci.h:60
uint8_t cis_id
Definition: hci.h:1845
uint16_t c_sdu
Definition: hci.h:1847
uint8_t c_phy
Definition: hci.h:1851
uint8_t p_phy
Definition: hci.h:1852
uint16_t p_pdu
Definition: hci.h:1850
uint8_t p_bn
Definition: hci.h:1854
uint8_t nse
Definition: hci.h:1846
uint16_t c_pdu
Definition: hci.h:1849
uint8_t c_bn
Definition: hci.h:1853
uint16_t p_sdu
Definition: hci.h:1848
uint8_t p_phy
Definition: hci.h:1818
uint8_t c_phy
Definition: hci.h:1817
uint8_t cis_id
Definition: hci.h:1814
uint16_t c_sdu
Definition: hci.h:1815
uint8_t c_rtn
Definition: hci.h:1819
uint8_t p_rtn
Definition: hci.h:1820
uint16_t p_sdu
Definition: hci.h:1816
uint16_t acl_handle
Definition: hci.h:1881
uint16_t cis_handle
Definition: hci.h:1880
uint16_t opcode
Definition: hci.h:106
uint8_t param_len
Definition: hci.h:107
uint8_t length
Definition: hci.h:777
uint8_t data[0]
Definition: hci.h:778
uint8_t role
Definition: hci.h:358
bt_addr_t bdaddr
Definition: hci.h:357
uint16_t max_latency
Definition: hci.h:377
uint32_t tx_bandwidth
Definition: hci.h:375
bt_addr_t bdaddr
Definition: hci.h:374
uint16_t pkt_type
Definition: hci.h:380
uint8_t retrans_effort
Definition: hci.h:379
uint32_t rx_bandwidth
Definition: hci.h:376
uint16_t content_format
Definition: hci.h:378
uint16_t handle
Definition: hci.h:422
uint16_t vs_codec_id
Definition: hci.h:767
uint16_t company_id
Definition: hci.h:766
uint8_t coding_format
Definition: hci.h:765
bt_addr_t bdaddr
Definition: hci.h:348
uint8_t pscan_rep_mode
Definition: hci.h:334
uint16_t packet_type
Definition: hci.h:333
bt_addr_t bdaddr
Definition: hci.h:332
uint8_t allow_role_switch
Definition: hci.h:337
uint16_t clock_offset
Definition: hci.h:336
uint8_t reserved
Definition: hci.h:335
uint8_t reason
Definition: hci.h:343
uint16_t handle
Definition: hci.h:342
uint16_t acl_mtu
Definition: hci.h:546
uint8_t sco_mtu
Definition: hci.h:547
uint16_t acl_pkts
Definition: hci.h:548
uint16_t sco_pkts
Definition: hci.h:549
struct bt_hci_handle_count h[0]
Definition: hci.h:560
uint8_t num_handles
Definition: hci.h:559
uint8_t reason
Definition: hci.h:496
bt_addr_t bdaddr
Definition: hci.h:495
uint8_t capability
Definition: hci.h:467
uint8_t authentication
Definition: hci.h:469
uint8_t oob_data
Definition: hci.h:468
bt_addr_t bdaddr
Definition: hci.h:466
uint16_t handle
Definition: hci.h:1901
bt_addr_le_t addr
Definition: hci.h:969
uint8_t sid
Definition: hci.h:1509
bt_addr_le_t addr
Definition: hci.h:1508
bt_addr_le_t peer_id_addr
Definition: hci.h:1154
uint8_t local_irk[16]
Definition: hci.h:1156
uint8_t peer_irk[16]
Definition: hci.h:1155
uint8_t bcode[16]
Definition: hci.h:1962
uint8_t mse
Definition: hci.h:1963
uint8_t encryption
Definition: hci.h:1961
uint16_t sync_timeout
Definition: hci.h:1964
uint8_t big_handle
Definition: hci.h:1959
uint8_t bis[0]
Definition: hci.h:1966
uint16_t sync_handle
Definition: hci.h:1960
uint8_t num_bis
Definition: hci.h:1965
uint8_t big_handle
Definition: hci.h:1971
uint8_t requested_cte_length
Definition: hci.h:1679
uint8_t requested_cte_type
Definition: hci.h:1680
uint16_t cte_request_interval
Definition: hci.h:1678
uint8_t enable
Definition: hci.h:1677
uint16_t handle
Definition: hci.h:1676
uint16_t handle
Definition: hci.h:1690
uint8_t enable
Definition: hci.h:1691
uint16_t handle
Definition: hci.h:1101
uint8_t reason
Definition: hci.h:1102
uint16_t interval_min
Definition: hci.h:1087
uint16_t min_ce_len
Definition: hci.h:1091
uint16_t latency
Definition: hci.h:1089
uint16_t max_ce_len
Definition: hci.h:1092
uint16_t handle
Definition: hci.h:1086
uint16_t interval_max
Definition: hci.h:1088
uint16_t timeout
Definition: hci.h:1090
uint16_t max_pdu
Definition: hci.h:1940
uint8_t pto
Definition: hci.h:1946
uint8_t sdu_interval[3]
Definition: hci.h:1936
uint8_t bcode[16]
Definition: hci.h:1948
uint8_t nse
Definition: hci.h:1938
uint8_t packing
Definition: hci.h:1942
uint8_t encryption
Definition: hci.h:1947
uint16_t iso_interval
Definition: hci.h:1937
uint8_t irc
Definition: hci.h:1945
uint8_t num_bis
Definition: hci.h:1935
uint8_t phy
Definition: hci.h:1941
uint8_t bn
Definition: hci.h:1944
uint16_t max_sdu
Definition: hci.h:1939
uint8_t big_handle
Definition: hci.h:1933
uint8_t framing
Definition: hci.h:1943
uint8_t adv_handle
Definition: hci.h:1934
uint16_t max_sdu
Definition: hci.h:1921
uint8_t bcode[16]
Definition: hci.h:1928
uint16_t max_latency
Definition: hci.h:1922
uint8_t rtn
Definition: hci.h:1923
uint8_t sdu_interval[3]
Definition: hci.h:1920
uint8_t framing
Definition: hci.h:1926
uint8_t encryption
Definition: hci.h:1927
uint8_t phy
Definition: hci.h:1924
uint8_t adv_handle
Definition: hci.h:1918
uint8_t packing
Definition: hci.h:1925
uint8_t num_bis
Definition: hci.h:1919
uint8_t big_handle
Definition: hci.h:1917
struct bt_hci_cis cis[0]
Definition: hci.h:1886
uint8_t num_cis
Definition: hci.h:1885
uint16_t scan_interval
Definition: hci.h:944
uint8_t filter_policy
Definition: hci.h:946
uint16_t min_ce_len
Definition: hci.h:953
uint16_t conn_latency
Definition: hci.h:951
uint16_t max_ce_len
Definition: hci.h:954
uint8_t own_addr_type
Definition: hci.h:948
uint16_t conn_interval_min
Definition: hci.h:949
uint16_t conn_interval_max
Definition: hci.h:950
bt_addr_le_t peer_addr
Definition: hci.h:947
uint16_t scan_window
Definition: hci.h:945
uint16_t supervision_timeout
Definition: hci.h:952
uint16_t timeout
Definition: hci.h:1782
uint16_t skip
Definition: hci.h:1781
uint8_t mode
Definition: hci.h:1780
uint8_t cte_type
Definition: hci.h:1783
uint8_t key[16]
Definition: hci.h:1010
uint8_t plaintext[16]
Definition: hci.h:1011
uint8_t rx_ch
Definition: hci.h:1263
uint8_t mod_index
Definition: hci.h:1265
uint8_t phy
Definition: hci.h:1264
uint8_t tx_ch
Definition: hci.h:1275
uint8_t phy
Definition: hci.h:1278
uint8_t pkt_payload
Definition: hci.h:1277
uint8_t test_data_len
Definition: hci.h:1276
uint8_t filter_policy
Definition: hci.h:1467
uint8_t own_addr_type
Definition: hci.h:1468
bt_addr_le_t peer_addr
Definition: hci.h:1469
struct bt_hci_ext_conn_phy p[0]
Definition: hci.h:1471
uint8_t phys
Definition: hci.h:1470
uint8_t key_type
Definition: hci.h:1148
uint8_t key[64]
Definition: hci.h:1147
uint8_t key[64]
Definition: hci.h:1137
uint8_t payload_type
Definition: hci.h:2029
uint16_t handle
Definition: hci.h:2028
uint16_t handle
Definition: hci.h:2052
uint8_t payload_type
Definition: hci.h:2018
uint16_t handle
Definition: hci.h:2017
uint16_t handle
Definition: hci.h:1044
uint8_t ltk[16]
Definition: hci.h:1035
uint16_t handle
Definition: hci.h:1034
uint8_t cte_type
Definition: hci.h:1770
uint16_t skip
Definition: hci.h:1768
uint16_t conn_handle
Definition: hci.h:1766
uint8_t mode
Definition: hci.h:1767
uint16_t timeout
Definition: hci.h:1769
bt_addr_le_t addr
Definition: hci.h:1493
uint16_t sync_timeout
Definition: hci.h:1495
uint16_t skip
Definition: hci.h:1494
uint8_t cte_type
Definition: hci.h:1496
uint8_t sid
Definition: hci.h:1492
uint8_t options
Definition: hci.h:1491
uint16_t conn_handle
Definition: hci.h:1744
uint16_t service_data
Definition: hci.h:1745
uint8_t adv_handle
Definition: hci.h:1746
uint16_t service_data
Definition: hci.h:1733
uint16_t sync_handle
Definition: hci.h:1734
uint16_t conn_handle
Definition: hci.h:1732
uint16_t handle
Definition: hci.h:1503
uint16_t handle
Definition: hci.h:995
uint16_t handle
Definition: hci.h:2075
uint16_t handle
Definition: hci.h:1801
bt_addr_le_t peer_id_addr
Definition: hci.h:1183
bt_addr_le_t peer_id_addr
Definition: hci.h:1174
uint16_t handle
Definition: hci.h:1218
uint16_t handle
Definition: hci.h:1005
uint16_t handle
Definition: hci.h:2039
uint16_t handle
Definition: hci.h:1906
uint8_t reason
Definition: hci.h:1907
bt_addr_le_t addr
Definition: hci.h:974
uint8_t sid
Definition: hci.h:1515
bt_addr_le_t addr
Definition: hci.h:1514
bt_addr_le_t peer_id_addr
Definition: hci.h:1161
uint8_t handle
Definition: hci.h:1385
uint8_t cig_id
Definition: hci.h:1891
uint8_t path_dir
Definition: hci.h:2003
uint16_t handle
Definition: hci.h:2002
uint16_t handle
Definition: hci.h:1981
uint8_t expected_cte_type
Definition: hci.h:1566
uint8_t slot_durations
Definition: hci.h:1567
uint8_t mod_index
Definition: hci.h:1564
uint8_t ant_ids[0]
Definition: hci.h:1569
uint8_t switch_pattern_len
Definition: hci.h:1568
uint8_t rx_ch
Definition: hci.h:1562
uint8_t expected_cte_len
Definition: hci.h:1565
uint8_t phy
Definition: hci.h:1563
uint8_t rx_ch
Definition: hci.h:1059
uint8_t enable
Definition: hci.h:1195
uint8_t len
Definition: hci.h:889
uint8_t data[31]
Definition: hci.h:890
uint8_t enable
Definition: hci.h:904
uint8_t channel_map
Definition: hci.h:877
uint16_t min_interval
Definition: hci.h:872
uint8_t filter_policy
Definition: hci.h:878
uint8_t type
Definition: hci.h:874
uint16_t max_interval
Definition: hci.h:873
bt_addr_le_t direct_addr
Definition: hci.h:876
uint8_t own_addr_type
Definition: hci.h:875
bt_addr_t bdaddr
Definition: hci.h:1284
uint8_t handle
Definition: hci.h:1283
uint8_t p_interval[3]
Definition: hci.h:1860
uint8_t cig_id
Definition: hci.h:1858
uint8_t sca
Definition: hci.h:1864
uint8_t c_ft
Definition: hci.h:1861
uint8_t framing
Definition: hci.h:1866
uint8_t num_cis
Definition: hci.h:1867
struct bt_hci_cis_params_test cis[0]
Definition: hci.h:1868
uint8_t packing
Definition: hci.h:1865
uint8_t c_interval[3]
Definition: hci.h:1859
uint16_t iso_interval
Definition: hci.h:1863
uint8_t p_ft
Definition: hci.h:1862
uint8_t c_interval[3]
Definition: hci.h:1825
uint8_t sca
Definition: hci.h:1827
uint8_t p_interval[3]
Definition: hci.h:1826
uint8_t packing
Definition: hci.h:1828
uint8_t cig_id
Definition: hci.h:1824
uint16_t p_latency
Definition: hci.h:1831
uint8_t framing
Definition: hci.h:1829
struct bt_hci_cis_params cis[0]
Definition: hci.h:1833
uint8_t num_cis
Definition: hci.h:1832
uint16_t c_latency
Definition: hci.h:1830
uint8_t max_sampled_cte
Definition: hci.h:1625
uint8_t switch_pattern_len
Definition: hci.h:1626
uint8_t ant_ids[0]
Definition: hci.h:1627
uint16_t sync_handle
Definition: hci.h:1622
uint8_t slot_durations
Definition: hci.h:1624
uint8_t sampling_enable
Definition: hci.h:1623
uint8_t cte_enable
Definition: hci.h:1610
uint8_t handle
Definition: hci.h:1609
uint8_t ant_ids[0]
Definition: hci.h:1604
uint8_t switch_pattern_len
Definition: hci.h:1603
uint8_t cte_type
Definition: hci.h:1601
uint8_t handle
Definition: hci.h:1599
uint8_t cte_len
Definition: hci.h:1600
uint8_t cte_count
Definition: hci.h:1602
uint8_t ant_ids[0]
Definition: hci.h:1641
uint8_t sampling_enable
Definition: hci.h:1638
uint8_t slot_durations
Definition: hci.h:1639
uint16_t handle
Definition: hci.h:1637
uint8_t switch_pattern_len
Definition: hci.h:1640
uint8_t switch_pattern_len
Definition: hci.h:1660
uint8_t cte_types
Definition: hci.h:1659
uint8_t ant_ids[0]
Definition: hci.h:1661
uint16_t handle
Definition: hci.h:1658
uint16_t tx_time
Definition: hci.h:1113
uint16_t handle
Definition: hci.h:1111
uint16_t tx_octets
Definition: hci.h:1112
uint8_t tx_phys
Definition: hci.h:1237
uint8_t rx_phys
Definition: hci.h:1238
uint8_t all_phys
Definition: hci.h:1236
uint8_t events[8]
Definition: hci.h:828
uint8_t data[0]
Definition: hci.h:1346
uint8_t handle
Definition: hci.h:1342
uint8_t op
Definition: hci.h:1343
uint8_t len
Definition: hci.h:1345
uint8_t frag_pref
Definition: hci.h:1344
struct bt_hci_ext_adv_set s[0]
Definition: hci.h:1368
uint8_t set_num
Definition: hci.h:1367
uint8_t enable
Definition: hci.h:1366
uint8_t prim_adv_phy
Definition: hci.h:1318
uint8_t prim_max_interval[3]
Definition: hci.h:1312
uint8_t filter_policy
Definition: hci.h:1316
uint8_t own_addr_type
Definition: hci.h:1314
uint16_t props
Definition: hci.h:1310
uint8_t sec_adv_max_skip
Definition: hci.h:1319
int8_t tx_power
Definition: hci.h:1317
uint8_t handle
Definition: hci.h:1309
bt_addr_le_t peer_addr
Definition: hci.h:1315
uint8_t prim_min_interval[3]
Definition: hci.h:1311
uint8_t sec_adv_phy
Definition: hci.h:1320
uint8_t prim_channel_map
Definition: hci.h:1313
uint8_t scan_req_notify_enable
Definition: hci.h:1322
uint8_t sid
Definition: hci.h:1321
uint8_t enable
Definition: hci.h:1448
uint8_t filter_dup
Definition: hci.h:1449
uint16_t period
Definition: hci.h:1451
uint16_t duration
Definition: hci.h:1450
uint8_t own_addr_type
Definition: hci.h:1437
uint8_t filter_policy
Definition: hci.h:1438
uint8_t phys
Definition: hci.h:1439
struct bt_hci_ext_scan_phy p[0]
Definition: hci.h:1440
uint8_t op
Definition: hci.h:1352
uint8_t len
Definition: hci.h:1354
uint8_t handle
Definition: hci.h:1351
uint8_t data[0]
Definition: hci.h:1355
uint8_t frag_pref
Definition: hci.h:1353
uint8_t ch_map[5]
Definition: hci.h:990
uint8_t bit_value
Definition: hci.h:2066
uint8_t bit_number
Definition: hci.h:2065
uint8_t handle
Definition: hci.h:1410
uint8_t op
Definition: hci.h:1411
uint8_t data[0]
Definition: hci.h:1413
uint8_t len
Definition: hci.h:1412
uint8_t handle
Definition: hci.h:1422
uint8_t enable
Definition: hci.h:1421
uint16_t max_interval
Definition: hci.h:1397
uint8_t handle
Definition: hci.h:1395
uint16_t props
Definition: hci.h:1398
uint16_t min_interval
Definition: hci.h:1396
uint16_t handle
Definition: hci.h:1726
uint8_t enable
Definition: hci.h:1727
uint8_t tx_phys
Definition: hci.h:1249
uint16_t phy_opts
Definition: hci.h:1251
uint8_t rx_phys
Definition: hci.h:1250
uint16_t handle
Definition: hci.h:1247
uint8_t all_phys
Definition: hci.h:1248
bt_addr_le_t id_addr
Definition: hci.h:1551
uint8_t mode
Definition: hci.h:1552
bt_addr_t bdaddr
Definition: hci.h:846
uint16_t rpa_timeout
Definition: hci.h:1200
uint8_t enable
Definition: hci.h:934
uint8_t filter_dup
Definition: hci.h:935
uint16_t window
Definition: hci.h:920
uint8_t addr_type
Definition: hci.h:921
uint8_t filter_policy
Definition: hci.h:922
uint8_t scan_type
Definition: hci.h:918
uint16_t interval
Definition: hci.h:919
uint8_t len
Definition: hci.h:895
uint8_t data[31]
Definition: hci.h:896
uint16_t handle
Definition: hci.h:1986
uint8_t codec_config_len
Definition: hci.h:1991
uint8_t controller_delay[3]
Definition: hci.h:1990
struct bt_hci_cp_codec_id codec_id
Definition: hci.h:1989
uint8_t path_id
Definition: hci.h:1988
uint8_t path_dir
Definition: hci.h:1987
uint8_t codec_config[0]
Definition: hci.h:1992
uint16_t handle
Definition: hci.h:1026
uint16_t ediv
Definition: hci.h:1028
uint8_t ltk[16]
Definition: hci.h:1029
uint64_t rand
Definition: hci.h:1027
uint8_t reason
Definition: hci.h:1954
uint8_t big_handle
Definition: hci.h:1953
uint8_t test_data_len
Definition: hci.h:1576
uint8_t switch_pattern_len
Definition: hci.h:1581
uint8_t cte_len
Definition: hci.h:1579
uint8_t tx_ch
Definition: hci.h:1575
uint8_t phy
Definition: hci.h:1578
uint8_t pkt_payload
Definition: hci.h:1577
uint8_t cte_type
Definition: hci.h:1580
uint8_t ant_ids[0]
Definition: hci.h:1582
int8_t tx_power
Definition: hci.h:2114
uint8_t switch_pattern_len
Definition: hci.h:2099
uint8_t tx_ch
Definition: hci.h:2093
uint8_t ant_ids[0]
Definition: hci.h:2100
uint8_t phy
Definition: hci.h:2096
uint8_t test_data_len
Definition: hci.h:2094
uint8_t cte_len
Definition: hci.h:2097
uint8_t pkt_payload
Definition: hci.h:2095
uint8_t cte_type
Definition: hci.h:2098
uint8_t test_data_len
Definition: hci.h:1074
uint8_t tx_ch
Definition: hci.h:1073
uint8_t pkt_payload
Definition: hci.h:1075
uint16_t max_tx_octets
Definition: hci.h:1129
uint16_t max_tx_time
Definition: hci.h:1130
int16_t rx_path_comp
Definition: hci.h:1543
int16_t tx_path_comp
Definition: hci.h:1542
bt_addr_t bdaddr
Definition: hci.h:397
uint8_t link_key[16]
Definition: hci.h:392
bt_addr_t bdaddr
Definition: hci.h:391
bt_addr_t bdaddr
Definition: hci.h:413
bt_addr_t bdaddr
Definition: hci.h:402
uint8_t pin_len
Definition: hci.h:403
uint8_t pin_code[16]
Definition: hci.h:404
uint16_t handle
Definition: hci.h:591
uint8_t direction
Definition: hci.h:774
uint8_t transport
Definition: hci.h:773
struct bt_hci_cp_codec_id codec_id
Definition: hci.h:772
struct bt_hci_cp_codec_id codec_id
Definition: hci.h:789
uint8_t direction
Definition: hci.h:791
uint8_t transport
Definition: hci.h:790
uint8_t codec_config[0]
Definition: hci.h:793
uint8_t codec_config_len
Definition: hci.h:792
uint16_t handle
Definition: hci.h:816
uint8_t page
Definition: hci.h:656
uint8_t page
Definition: hci.h:456
uint16_t handle
Definition: hci.h:455
uint16_t handle
Definition: hci.h:450
uint16_t handle
Definition: hci.h:461
uint8_t type
Definition: hci.h:528
uint16_t handle
Definition: hci.h:527
uint8_t reason
Definition: hci.h:386
bt_addr_t bdaddr
Definition: hci.h:385
bt_addr_t bdaddr
Definition: hci.h:441
bt_addr_t bdaddr
Definition: hci.h:433
uint16_t clock_offset
Definition: hci.h:436
uint8_t reserved
Definition: hci.h:435
uint8_t pscan_rep_mode
Definition: hci.h:434
uint16_t handle
Definition: hci.h:427
uint8_t encrypt
Definition: hci.h:428
uint8_t flow_enable
Definition: hci.h:541
uint8_t events_page_2[8]
Definition: hci.h:575
uint8_t events[8]
Definition: hci.h:501
uint32_t rx_bandwidth
Definition: hci.h:365
uint16_t content_format
Definition: hci.h:367
uint16_t max_latency
Definition: hci.h:366
uint8_t retrans_effort
Definition: hci.h:368
uint16_t pkt_type
Definition: hci.h:369
uint32_t tx_bandwidth
Definition: hci.h:364
uint16_t handle
Definition: hci.h:363
bt_addr_t bdaddr
Definition: hci.h:475
bt_addr_t bdaddr
Definition: hci.h:490
bt_addr_t bdaddr
Definition: hci.h:484
uint32_t passkey
Definition: hci.h:485
uint16_t auth_payload_timeout
Definition: hci.h:603
uint16_t handle
Definition: hci.h:602
uint8_t class_of_device[3]
Definition: hci.h:520
uint8_t mode
Definition: hci.h:565
uint8_t le
Definition: hci.h:580
uint8_t simul
Definition: hci.h:581
uint8_t sc_support
Definition: hci.h:586
uint8_t mode
Definition: hci.h:570
uint16_t handle
Definition: hci.h:2153
uint8_t status
Definition: hci.h:2152
uint16_t handle
Definition: hci.h:2352
uint8_t status
Definition: hci.h:2193
uint16_t opcode
Definition: hci.h:2189
uint8_t ncmd
Definition: hci.h:2188
uint16_t opcode
Definition: hci.h:2200
uint8_t ncmd
Definition: hci.h:2199
uint8_t status
Definition: hci.h:2198
uint8_t status
Definition: hci.h:2129
bt_addr_t bdaddr
Definition: hci.h:2131
uint8_t encr_enabled
Definition: hci.h:2133
uint16_t handle
Definition: hci.h:2130
uint8_t link_type
Definition: hci.h:2132
bt_addr_t bdaddr
Definition: hci.h:2138
uint8_t dev_class[3]
Definition: hci.h:2139
uint8_t link_type
Definition: hci.h:2140
uint8_t link_type
Definition: hci.h:2256
uint8_t reason
Definition: hci.h:2147
uint16_t handle
Definition: hci.h:2146
uint8_t status
Definition: hci.h:2145
uint8_t encrypt
Definition: hci.h:2167
uint16_t handle
Definition: hci.h:2166
uint8_t status
Definition: hci.h:2165
uint16_t handle
Definition: hci.h:2306
uint8_t status
Definition: hci.h:2305
uint8_t eir[240]
Definition: hci.h:2300
int8_t rssi
Definition: hci.h:2299
uint16_t clock_offset
Definition: hci.h:2298
uint8_t num_reports
Definition: hci.h:2293
bt_addr_t addr
Definition: hci.h:2294
uint8_t cod[3]
Definition: hci.h:2297
uint8_t reserved
Definition: hci.h:2296
uint8_t pscan_rep_mode
Definition: hci.h:2295
uint8_t hardware_code
Definition: hci.h:2205
uint8_t len
Definition: hci.h:38
uint8_t evt
Definition: hci.h:37
uint8_t status
Definition: hci.h:2124
bt_addr_t bdaddr
Definition: hci.h:2311
uint8_t authentication
Definition: hci.h:2319
uint8_t capability
Definition: hci.h:2317
uint8_t oob_data
Definition: hci.h:2318
bt_addr_t bdaddr
Definition: hci.h:2316
uint8_t num_completed_ext_adv_evts
Definition: hci.h:2536
uint8_t status
Definition: hci.h:2533
uint16_t conn_handle
Definition: hci.h:2535
uint8_t adv_handle
Definition: hci.h:2534
uint8_t length
Definition: hci.h:2376
bt_addr_le_t addr
Definition: hci.h:2375
uint8_t evt_type
Definition: hci.h:2374
uint8_t data[0]
Definition: hci.h:2377
struct bt_hci_evt_le_advertising_info adv_info[0]
Definition: hci.h:2381
uint8_t num_reports
Definition: hci.h:2380
uint8_t irc
Definition: hci.h:2662
uint16_t iso_interval
Definition: hci.h:2664
uint8_t big_handle
Definition: hci.h:2655
uint8_t bn
Definition: hci.h:2660
uint8_t latency[3]
Definition: hci.h:2657
uint8_t sync_delay[3]
Definition: hci.h:2656
uint8_t pto
Definition: hci.h:2661
uint16_t max_pdu
Definition: hci.h:2663
uint8_t num_bis
Definition: hci.h:2665
uint8_t phy
Definition: hci.h:2658
uint8_t status
Definition: hci.h:2654
uint8_t nse
Definition: hci.h:2659
uint16_t handle[0]
Definition: hci.h:2666
uint16_t max_pdu
Definition: hci.h:2684
uint8_t num_bis
Definition: hci.h:2686
uint8_t big_handle
Definition: hci.h:2678
uint8_t nse
Definition: hci.h:2680
uint8_t bn
Definition: hci.h:2681
uint16_t handle[0]
Definition: hci.h:2687
uint16_t iso_interval
Definition: hci.h:2685
uint8_t pto
Definition: hci.h:2682
uint8_t status
Definition: hci.h:2677
uint8_t latency[3]
Definition: hci.h:2679
uint8_t irc
Definition: hci.h:2683
uint8_t reason
Definition: hci.h:2693
uint8_t big_handle
Definition: hci.h:2692
uint8_t reason
Definition: hci.h:2672
uint8_t big_handle
Definition: hci.h:2671
uint16_t max_sdu
Definition: hci.h:2714
uint16_t max_pdu
Definition: hci.h:2712
uint8_t phy
Definition: hci.h:2715
uint8_t sdu_interval[3]
Definition: hci.h:2713
uint16_t sync_handle
Definition: hci.h:2705
uint8_t irc
Definition: hci.h:2711
uint8_t framing
Definition: hci.h:2716
uint8_t bn
Definition: hci.h:2709
uint8_t nse
Definition: hci.h:2707
uint8_t encryption
Definition: hci.h:2717
uint8_t num_bis
Definition: hci.h:2706
uint16_t iso_interval
Definition: hci.h:2708
uint8_t pto
Definition: hci.h:2710
uint16_t handle
Definition: hci.h:2550
uint8_t chan_sel_algo
Definition: hci.h:2551
uint16_t interval
Definition: hci.h:2641
uint8_t p_ft
Definition: hci.h:2638
uint8_t p_phy
Definition: hci.h:2633
uint8_t status
Definition: hci.h:2626
uint8_t c_phy
Definition: hci.h:2632
uint8_t nse
Definition: hci.h:2634
uint8_t c_latency[3]
Definition: hci.h:2630
uint16_t conn_handle
Definition: hci.h:2627
uint8_t c_bn
Definition: hci.h:2635
uint8_t cig_sync_delay[3]
Definition: hci.h:2628
uint8_t p_bn
Definition: hci.h:2636
uint8_t c_ft
Definition: hci.h:2637
uint8_t cis_sync_delay[3]
Definition: hci.h:2629
uint16_t p_max_pdu
Definition: hci.h:2640
uint16_t c_max_pdu
Definition: hci.h:2639
uint8_t p_latency[3]
Definition: hci.h:2631
uint8_t cis_id
Definition: hci.h:2649
uint8_t cig_id
Definition: hci.h:2648
uint16_t cis_handle
Definition: hci.h:2647
uint16_t acl_handle
Definition: hci.h:2646
uint8_t clock_accuracy
Definition: hci.h:2367
uint16_t supv_timeout
Definition: hci.h:2366
uint16_t handle
Definition: hci.h:2361
uint8_t role
Definition: hci.h:2362
uint8_t status
Definition: hci.h:2360
bt_addr_le_t peer_addr
Definition: hci.h:2363
uint16_t latency
Definition: hci.h:2365
uint16_t interval
Definition: hci.h:2364
uint16_t interval_max
Definition: hci.h:2411
uint16_t handle
Definition: hci.h:2409
uint16_t interval_min
Definition: hci.h:2410
uint16_t latency
Definition: hci.h:2412
uint16_t timeout
Definition: hci.h:2413
uint16_t interval
Definition: hci.h:2388
uint16_t handle
Definition: hci.h:2387
uint16_t supv_timeout
Definition: hci.h:2390
uint8_t status
Definition: hci.h:2386
uint16_t latency
Definition: hci.h:2389
uint8_t cte_type
Definition: hci.h:2590
uint8_t rssi_ant_id
Definition: hci.h:2589
uint16_t conn_evt_counter
Definition: hci.h:2593
uint16_t conn_handle
Definition: hci.h:2585
int16_t rssi
Definition: hci.h:2588
struct bt_hci_le_iq_sample sample[0]
Definition: hci.h:2595
uint8_t slot_durations
Definition: hci.h:2591
uint8_t sample_count
Definition: hci.h:2594
uint8_t rx_phy
Definition: hci.h:2586
uint8_t data_chan_idx
Definition: hci.h:2587
uint8_t packet_status
Definition: hci.h:2592
int16_t rssi
Definition: hci.h:2573
struct bt_hci_le_iq_sample sample[0]
Definition: hci.h:2580
uint16_t sync_handle
Definition: hci.h:2571
uint8_t sample_count
Definition: hci.h:2579
uint8_t cte_type
Definition: hci.h:2575
uint8_t slot_durations
Definition: hci.h:2576
uint8_t packet_status
Definition: hci.h:2577
uint16_t per_evt_counter
Definition: hci.h:2578
uint8_t chan_idx
Definition: hci.h:2572
uint8_t rssi_ant_id
Definition: hci.h:2574
uint8_t status
Definition: hci.h:2607
uint16_t conn_handle
Definition: hci.h:2608
uint16_t max_rx_octets
Definition: hci.h:2421
uint16_t handle
Definition: hci.h:2418
uint16_t max_tx_time
Definition: hci.h:2420
uint16_t max_rx_time
Definition: hci.h:2422
uint16_t max_tx_octets
Definition: hci.h:2419
int8_t rssi
Definition: hci.h:2456
bt_addr_le_t addr
Definition: hci.h:2454
bt_addr_le_t dir_addr
Definition: hci.h:2455
uint8_t evt_type
Definition: hci.h:2453
struct bt_hci_evt_le_direct_adv_info direct_adv_info[0]
Definition: hci.h:2460
uint8_t num_reports
Definition: hci.h:2459
uint16_t handle
Definition: hci.h:2440
bt_addr_le_t peer_addr
Definition: hci.h:2442
bt_addr_t peer_rpa
Definition: hci.h:2444
uint8_t clock_accuracy
Definition: hci.h:2448
uint16_t latency
Definition: hci.h:2446
uint16_t supv_timeout
Definition: hci.h:2447
bt_addr_t local_rpa
Definition: hci.h:2443
uint16_t interval
Definition: hci.h:2445
uint8_t status
Definition: hci.h:2439
uint8_t role
Definition: hci.h:2441
uint16_t evt_type
Definition: hci.h:2485
uint8_t prim_phy
Definition: hci.h:2487
uint8_t length
Definition: hci.h:2494
bt_addr_le_t direct_addr
Definition: hci.h:2493
int8_t tx_power
Definition: hci.h:2490
uint8_t sid
Definition: hci.h:2489
int8_t rssi
Definition: hci.h:2491
uint16_t interval
Definition: hci.h:2492
uint8_t data[0]
Definition: hci.h:2495
bt_addr_le_t addr
Definition: hci.h:2486
uint8_t sec_phy
Definition: hci.h:2488
uint8_t num_reports
Definition: hci.h:2498
struct bt_hci_evt_le_ext_advertising_info adv_info[0]
Definition: hci.h:2499
uint8_t status
Definition: hci.h:2433
uint8_t dhkey[32]
Definition: hci.h:2434
uint16_t ediv
Definition: hci.h:2404
uint64_t rand
Definition: hci.h:2403
uint16_t handle
Definition: hci.h:2402
uint8_t status
Definition: hci.h:2427
uint8_t key[64]
Definition: hci.h:2428
uint8_t clock_accuracy
Definition: hci.h:2621
uint8_t adv_sid
Definition: hci.h:2617
uint8_t status
Definition: hci.h:2613
uint16_t conn_handle
Definition: hci.h:2614
uint16_t sync_handle
Definition: hci.h:2616
bt_addr_le_t addr
Definition: hci.h:2618
uint16_t interval
Definition: hci.h:2620
uint16_t service_data
Definition: hci.h:2615
uint8_t phy
Definition: hci.h:2619
uint16_t handle
Definition: hci.h:2505
uint16_t interval
Definition: hci.h:2509
uint8_t status
Definition: hci.h:2504
uint8_t sid
Definition: hci.h:2506
uint8_t phy
Definition: hci.h:2508
bt_addr_le_t adv_addr
Definition: hci.h:2507
uint8_t clock_accuracy
Definition: hci.h:2510
uint16_t handle
Definition: hci.h:2526
uint8_t length
Definition: hci.h:2520
uint8_t data[0]
Definition: hci.h:2521
int8_t tx_power
Definition: hci.h:2516
uint8_t cte_type
Definition: hci.h:2518
uint8_t data_status
Definition: hci.h:2519
uint16_t handle
Definition: hci.h:2515
int8_t rssi
Definition: hci.h:2517
uint16_t handle
Definition: hci.h:2466
uint8_t status
Definition: hci.h:2465
uint8_t tx_phy
Definition: hci.h:2467
uint8_t rx_phy
Definition: hci.h:2468
uint8_t features[8]
Definition: hci.h:2397
uint8_t status
Definition: hci.h:2395
uint16_t handle
Definition: hci.h:2396
uint8_t status
Definition: hci.h:2698
uint8_t sca
Definition: hci.h:2700
uint16_t handle
Definition: hci.h:2699
uint8_t handle
Definition: hci.h:2541
bt_addr_le_t addr
Definition: hci.h:2542
bt_addr_t bdaddr
Definition: hci.h:2244
uint8_t link_key[16]
Definition: hci.h:2245
uint8_t key_type
Definition: hci.h:2246
bt_addr_t bdaddr
Definition: hci.h:2228
uint8_t num_handles
Definition: hci.h:2217
struct bt_hci_handle_count h[0]
Definition: hci.h:2218
bt_addr_t bdaddr
Definition: hci.h:2223
uint16_t handle
Definition: hci.h:2272
uint8_t features[8]
Definition: hci.h:2275
uint8_t status
Definition: hci.h:2271
uint8_t page
Definition: hci.h:2273
uint8_t max_page
Definition: hci.h:2274
uint8_t status
Definition: hci.h:2172
uint8_t features[8]
Definition: hci.h:2174
uint16_t handle
Definition: hci.h:2173
bt_addr_t bdaddr
Definition: hci.h:2159
uint8_t name[248]
Definition: hci.h:2160
uint8_t status
Definition: hci.h:2158
uint16_t subversion
Definition: hci.h:2183
uint16_t handle
Definition: hci.h:2180
uint8_t status
Definition: hci.h:2179
uint8_t version
Definition: hci.h:2181
uint16_t manufacturer
Definition: hci.h:2182
bt_addr_t bdaddr
Definition: hci.h:2211
uint8_t role
Definition: hci.h:2212
uint8_t status
Definition: hci.h:2210
uint8_t status
Definition: hci.h:2335
bt_addr_t bdaddr
Definition: hci.h:2336
uint8_t tx_interval
Definition: hci.h:2284
uint8_t air_mode
Definition: hci.h:2288
uint8_t retansmission_window
Definition: hci.h:2285
uint16_t rx_pkt_length
Definition: hci.h:2286
bt_addr_t bdaddr
Definition: hci.h:2282
uint16_t handle
Definition: hci.h:2281
uint8_t link_type
Definition: hci.h:2283
uint16_t tx_pkt_length
Definition: hci.h:2287
uint8_t status
Definition: hci.h:2280
bt_addr_t bdaddr
Definition: hci.h:2324
uint32_t passkey
Definition: hci.h:2325
uint32_t passkey
Definition: hci.h:2342
bt_addr_t bdaddr
Definition: hci.h:2341
bt_addr_t bdaddr
Definition: hci.h:2330
uint8_t max_ext_adv_evts
Definition: hci.h:1362
uint8_t handle
Definition: hci.h:1360
uint16_t duration
Definition: hci.h:1361
uint16_t max_ce_len
Definition: hci.h:1463
uint16_t scan_interval
Definition: hci.h:1456
uint16_t conn_interval_max
Definition: hci.h:1459
uint16_t conn_latency
Definition: hci.h:1460
uint16_t conn_interval_min
Definition: hci.h:1458
uint16_t supervision_timeout
Definition: hci.h:1461
uint16_t scan_window
Definition: hci.h:1457
uint16_t min_ce_len
Definition: hci.h:1462
uint16_t interval
Definition: hci.h:1428
uint8_t type
Definition: hci.h:1427
uint16_t window
Definition: hci.h:1429
uint16_t count
Definition: hci.h:554
uint16_t handle
Definition: hci.h:553
uint16_t sn
Definition: hci.h:88
uint16_t slen
Definition: hci.h:89
uint16_t len
Definition: hci.h:101
uint16_t handle
Definition: hci.h:100
uint32_t ts
Definition: hci.h:94
struct bt_hci_iso_data_hdr data
Definition: hci.h:95
int8_t q
Definition: hci.h:2567
int8_t i
Definition: hci.h:2566
uint8_t lap[3]
Definition: hci.h:323
uint8_t num_rsp
Definition: hci.h:325
uint8_t length
Definition: hci.h:324
uint8_t status
Definition: hci.h:351
bt_addr_t bdaddr
Definition: hci.h:352
uint8_t big_handle
Definition: hci.h:1976
uint8_t status
Definition: hci.h:1975
uint8_t status
Definition: hci.h:1684
uint16_t handle
Definition: hci.h:1685
uint8_t status
Definition: hci.h:1695
uint16_t handle
Definition: hci.h:1696
uint8_t status
Definition: hci.h:1105
uint16_t handle
Definition: hci.h:1106
uint8_t status
Definition: hci.h:1095
uint16_t handle
Definition: hci.h:1096
uint8_t status
Definition: hci.h:1787
uint8_t enc_data[16]
Definition: hci.h:1015
uint8_t status
Definition: hci.h:1014
uint8_t status
Definition: hci.h:2033
uint16_t handle
Definition: hci.h:2034
uint32_t missed_cnt
Definition: hci.h:2059
uint8_t status
Definition: hci.h:2056
uint16_t handle
Definition: hci.h:2057
uint32_t received_cnt
Definition: hci.h:2058
uint32_t failed_cnt
Definition: hci.h:2060
uint8_t status
Definition: hci.h:2022
uint16_t handle
Definition: hci.h:2023
uint8_t status
Definition: hci.h:1047
uint16_t handle
Definition: hci.h:1048
uint16_t handle
Definition: hci.h:1039
uint8_t status
Definition: hci.h:1038
uint8_t status
Definition: hci.h:1774
uint16_t conn_handle
Definition: hci.h:1775
uint16_t conn_handle
Definition: hci.h:1751
uint8_t status
Definition: hci.h:1750
uint16_t conn_handle
Definition: hci.h:1739
uint8_t status
Definition: hci.h:1738
uint8_t rand[8]
Definition: hci.h:1021
uint8_t status
Definition: hci.h:1020
uint8_t num_ant
Definition: hci.h:1716
uint8_t switch_sample_rates
Definition: hci.h:1715
uint8_t max_cte_len
Definition: hci.h:1718
uint8_t status
Definition: hci.h:1714
uint8_t max_switch_pattern_len
Definition: hci.h:1717
uint8_t acl_max_num
Definition: hci.h:1794
uint8_t status
Definition: hci.h:1792
uint16_t iso_max_len
Definition: hci.h:1795
uint8_t iso_max_num
Definition: hci.h:1796
uint16_t acl_max_len
Definition: hci.h:1793
uint8_t le_max_num
Definition: hci.h:835
uint16_t le_max_len
Definition: hci.h:834
uint8_t status
Definition: hci.h:833
uint8_t ch_map[5]
Definition: hci.h:1000
uint8_t status
Definition: hci.h:998
uint16_t handle
Definition: hci.h:999
uint8_t status
Definition: hci.h:883
int8_t tx_power_level
Definition: hci.h:884
uint16_t max_tx_octets
Definition: hci.h:1123
uint8_t status
Definition: hci.h:1122
uint16_t max_tx_time
Definition: hci.h:1124
uint8_t status
Definition: hci.h:961
uint8_t fal_size
Definition: hci.h:962
uint32_t tx_last_subevent_packets
Definition: hci.h:2083
uint32_t tx_flushed_packets
Definition: hci.h:2082
uint32_t crc_error_packets
Definition: hci.h:2085
uint32_t duplicate_packets
Definition: hci.h:2087
uint32_t rx_unreceived_packets
Definition: hci.h:2086
uint32_t retransmitted_packets
Definition: hci.h:2084
uint16_t handle
Definition: hci.h:2080
uint32_t tx_unacked_packets
Definition: hci.h:2081
uint8_t status
Definition: hci.h:2079
uint8_t status
Definition: hci.h:1805
uint8_t offset[3]
Definition: hci.h:1809
uint32_t timestamp
Definition: hci.h:1808
uint16_t handle
Definition: hci.h:1806
uint16_t seq
Definition: hci.h:1807
uint8_t status
Definition: hci.h:840
uint8_t features[8]
Definition: hci.h:841
uint8_t status
Definition: hci.h:1186
bt_addr_t local_rpa
Definition: hci.h:1187
uint8_t status
Definition: hci.h:1373
uint16_t max_adv_data_len
Definition: hci.h:1374
uint16_t max_tx_octets
Definition: hci.h:1206
uint8_t status
Definition: hci.h:1205
uint16_t max_tx_time
Definition: hci.h:1207
uint16_t max_rx_octets
Definition: hci.h:1208
uint16_t max_rx_time
Definition: hci.h:1209
uint8_t status
Definition: hci.h:1379
uint8_t num_sets
Definition: hci.h:1380
bt_addr_t peer_rpa
Definition: hci.h:1178
uint8_t status
Definition: hci.h:1177
uint8_t status
Definition: hci.h:1522
uint8_t list_size
Definition: hci.h:1523
uint8_t rx_phy
Definition: hci.h:1224
uint8_t tx_phy
Definition: hci.h:1223
uint8_t status
Definition: hci.h:1221
uint16_t handle
Definition: hci.h:1222
int16_t rx_path_comp
Definition: hci.h:1537
int16_t tx_path_comp
Definition: hci.h:1536
uint8_t status
Definition: hci.h:1535
uint8_t rl_size
Definition: hci.h:1169
uint8_t status
Definition: hci.h:1168
uint8_t le_states[8]
Definition: hci.h:1054
uint8_t status
Definition: hci.h:1053
uint16_t handle
Definition: hci.h:2044
uint32_t received_cnt
Definition: hci.h:2045
uint8_t status
Definition: hci.h:2043
uint32_t missed_cnt
Definition: hci.h:2046
uint32_t failed_cnt
Definition: hci.h:2047
int8_t max_tx_power
Definition: hci.h:1530
int8_t min_tx_power
Definition: hci.h:1529
uint8_t status
Definition: hci.h:1528
uint16_t handle
Definition: hci.h:1912
uint8_t status
Definition: hci.h:1911
uint8_t status
Definition: hci.h:1895
uint8_t cig_id
Definition: hci.h:1896
uint8_t status
Definition: hci.h:2007
uint16_t handle
Definition: hci.h:2008
uint16_t handle[0]
Definition: hci.h:1875
uint8_t num_handles
Definition: hci.h:1874
uint8_t cig_id
Definition: hci.h:1873
uint8_t status
Definition: hci.h:1872
uint16_t handle[0]
Definition: hci.h:1840
uint8_t status
Definition: hci.h:1837
uint8_t num_handles
Definition: hci.h:1839
uint8_t cig_id
Definition: hci.h:1838
uint16_t sync_handle
Definition: hci.h:1632
uint8_t status
Definition: hci.h:1631
uint16_t handle
Definition: hci.h:1646
uint8_t status
Definition: hci.h:1645
uint8_t status
Definition: hci.h:1665
uint16_t handle
Definition: hci.h:1666
uint16_t handle
Definition: hci.h:1117
uint8_t status
Definition: hci.h:1116
uint8_t status
Definition: hci.h:1325
int8_t tx_power
Definition: hci.h:1326
uint8_t status
Definition: hci.h:2070
uint16_t handle
Definition: hci.h:1997
uint8_t status
Definition: hci.h:1996
uint8_t status
Definition: hci.h:1080
uint16_t rx_pkt_count
Definition: hci.h:1081
uint8_t status
Definition: hci.h:416
bt_addr_t bdaddr
Definition: hci.h:417
uint8_t status
Definition: hci.h:407
bt_addr_t bdaddr
Definition: hci.h:408
uint8_t status
Definition: hci.h:595
uint16_t auth_payload_timeout
Definition: hci.h:597
uint16_t handle
Definition: hci.h:596
uint8_t status
Definition: hci.h:682
bt_addr_t bdaddr
Definition: hci.h:683
uint8_t status
Definition: hci.h:673
uint8_t sco_max_len
Definition: hci.h:675
uint16_t acl_max_num
Definition: hci.h:676
uint16_t acl_max_len
Definition: hci.h:674
uint16_t sco_max_num
Definition: hci.h:677
uint8_t num_capabilities
Definition: hci.h:782
uint8_t status
Definition: hci.h:781
uint8_t capabilities[0]
Definition: hci.h:784
uint8_t codecs[0]
Definition: hci.h:761
uint8_t status
Definition: hci.h:759
uint8_t status
Definition: hci.h:735
uint8_t codecs[0]
Definition: hci.h:737
uint8_t status
Definition: hci.h:796
uint8_t max_ctlr_delay[3]
Definition: hci.h:798
uint8_t min_ctlr_delay[3]
Definition: hci.h:797
uint8_t status
Definition: hci.h:819
uint16_t handle
Definition: hci.h:820
uint8_t key_size
Definition: hci.h:821
uint8_t max_page
Definition: hci.h:661
uint8_t ext_features[8]
Definition: hci.h:662
uint8_t page
Definition: hci.h:660
uint8_t status
Definition: hci.h:659
uint8_t status
Definition: hci.h:667
uint8_t features[8]
Definition: hci.h:668
uint16_t hci_revision
Definition: hci.h:642
uint8_t hci_version
Definition: hci.h:641
uint16_t lmp_subversion
Definition: hci.h:645
uint8_t lmp_version
Definition: hci.h:643
uint16_t manufacturer
Definition: hci.h:644
uint8_t status
Definition: hci.h:640
uint8_t status
Definition: hci.h:650
uint8_t commands[64]
Definition: hci.h:651
int8_t tx_power_level
Definition: hci.h:534
uint16_t handle
Definition: hci.h:533
uint8_t status
Definition: hci.h:532
bt_addr_t bdaddr
Definition: hci.h:445
uint8_t status
Definition: hci.h:444
bt_addr_t bdaddr
Definition: hci.h:479
uint8_t status
Definition: hci.h:478
uint16_t handle
Definition: hci.h:608
uint8_t status
Definition: hci.h:607
uint8_t codec_id
Definition: hci.h:742
uint8_t transports
Definition: hci.h:743
uint8_t codec_id
Definition: hci.h:720
struct bt_hci_std_codec_info_v2 codec_info[0]
Definition: hci.h:747
uint8_t num_codecs
Definition: hci.h:746
struct bt_hci_std_codec_info codec_info[0]
Definition: hci.h:724
uint8_t num_codecs
Definition: hci.h:723
uint16_t company_id
Definition: hci.h:750
uint8_t transports
Definition: hci.h:752
uint16_t codec_id
Definition: hci.h:751
uint16_t codec_id
Definition: hci.h:728
uint16_t company_id
Definition: hci.h:727
struct bt_hci_vs_codec_info_v2 codec_info[0]
Definition: hci.h:756
uint8_t num_codecs
Definition: hci.h:755
uint8_t num_codecs
Definition: hci.h:731
struct bt_hci_vs_codec_info codec_info[0]
Definition: hci.h:732
uint8_t local_name[248]
Definition: hci.h:508
uint16_t min_ce_len
Definition: hci.h:984
uint16_t max_ce_len
Definition: hci.h:985
uint16_t handle
Definition: hci.h:979
uint16_t conn_latency
Definition: hci.h:982
uint16_t conn_interval_max
Definition: hci.h:981
uint16_t supervision_timeout
Definition: hci.h:983
uint16_t conn_interval_min
Definition: hci.h:980
Simple network buffer representation.
Definition: buf.h:82
Network buffer representation.
Definition: buf.h:914
uint16_t len
Definition: buf.h:945
static ZTEST_BMEM char buffer[8]
Definition: test_mbox_api.c:551