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))
78#define BT_ISO_DATA_VALID 0x00
79#define BT_ISO_DATA_INVALID 0x01
80#define BT_ISO_DATA_NOP 0x02
82#define bt_iso_pkt_len(h) ((h) & 0x3fff)
83#define bt_iso_pkt_flags(h) ((h) >> 14)
84#define bt_iso_pkt_len_pack(h, f) ((h) | ((f) << 14))
90#define BT_HCI_ISO_DATA_HDR_SIZE 4
96#define BT_HCI_ISO_TS_DATA_HDR_SIZE 8
102#define BT_HCI_ISO_HDR_SIZE 4
108#define BT_HCI_CMD_HDR_SIZE 3
111#define BT_CMD_TEST(cmd, octet, bit) (cmd[octet] & BIT(bit))
112#define BT_CMD_LE_STATES(cmd) BT_CMD_TEST(cmd, 28, 3)
114#define BT_FEAT_TEST(feat, page, octet, bit) (feat[page][octet] & BIT(bit))
116#define BT_FEAT_BREDR(feat) !BT_FEAT_TEST(feat, 0, 4, 5)
117#define BT_FEAT_LE(feat) BT_FEAT_TEST(feat, 0, 4, 6)
118#define BT_FEAT_EXT_FEATURES(feat) BT_FEAT_TEST(feat, 0, 7, 7)
119#define BT_FEAT_HOST_SSP(feat) BT_FEAT_TEST(feat, 1, 0, 0)
120#define BT_FEAT_SC(feat) BT_FEAT_TEST(feat, 2, 1, 0)
122#define BT_FEAT_LMP_ESCO_CAPABLE(feat) BT_FEAT_TEST(feat, 0, 3, 7)
123#define BT_FEAT_HV2_PKT(feat) BT_FEAT_TEST(feat, 0, 1, 4)
124#define BT_FEAT_HV3_PKT(feat) BT_FEAT_TEST(feat, 0, 1, 5)
125#define BT_FEAT_EV4_PKT(feat) BT_FEAT_TEST(feat, 0, 4, 0)
126#define BT_FEAT_EV5_PKT(feat) BT_FEAT_TEST(feat, 0, 4, 1)
127#define BT_FEAT_2EV3_PKT(feat) BT_FEAT_TEST(feat, 0, 5, 5)
128#define BT_FEAT_3EV3_PKT(feat) BT_FEAT_TEST(feat, 0, 5, 6)
129#define BT_FEAT_3SLOT_PKT(feat) BT_FEAT_TEST(feat, 0, 5, 7)
132#define BT_LE_FEAT_BIT_ENC 0
133#define BT_LE_FEAT_BIT_CONN_PARAM_REQ 1
134#define BT_LE_FEAT_BIT_EXT_REJ_IND 2
135#define BT_LE_FEAT_BIT_PER_INIT_FEAT_XCHG 3
136#define BT_LE_FEAT_BIT_PING 4
137#define BT_LE_FEAT_BIT_DLE 5
138#define BT_LE_FEAT_BIT_PRIVACY 6
139#define BT_LE_FEAT_BIT_EXT_SCAN 7
140#define BT_LE_FEAT_BIT_PHY_2M 8
141#define BT_LE_FEAT_BIT_SMI_TX 9
142#define BT_LE_FEAT_BIT_SMI_RX 10
143#define BT_LE_FEAT_BIT_PHY_CODED 11
144#define BT_LE_FEAT_BIT_EXT_ADV 12
145#define BT_LE_FEAT_BIT_PER_ADV 13
146#define BT_LE_FEAT_BIT_CHAN_SEL_ALGO_2 14
147#define BT_LE_FEAT_BIT_PWR_CLASS_1 15
148#define BT_LE_FEAT_BIT_MIN_USED_CHAN_PROC 16
149#define BT_LE_FEAT_BIT_CONN_CTE_REQ 17
150#define BT_LE_FEAT_BIT_CONN_CTE_RESP 18
151#define BT_LE_FEAT_BIT_CONNECTIONLESS_CTE_TX 19
152#define BT_LE_FEAT_BIT_CONNECTIONLESS_CTE_RX 20
153#define BT_LE_FEAT_BIT_ANT_SWITCH_TX_AOD 21
154#define BT_LE_FEAT_BIT_ANT_SWITCH_RX_AOA 22
155#define BT_LE_FEAT_BIT_RX_CTE 23
156#define BT_LE_FEAT_BIT_PAST_SEND 24
157#define BT_LE_FEAT_BIT_PAST_RECV 25
158#define BT_LE_FEAT_BIT_SCA_UPDATE 26
159#define BT_LE_FEAT_BIT_REMOTE_PUB_KEY_VALIDATE 27
160#define BT_LE_FEAT_BIT_CIS_CENTRAL 28
161#define BT_LE_FEAT_BIT_CIS_PERIPHERAL 29
162#define BT_LE_FEAT_BIT_ISO_BROADCASTER 30
163#define BT_LE_FEAT_BIT_SYNC_RECEIVER 31
164#define BT_LE_FEAT_BIT_ISO_CHANNELS 32
165#define BT_LE_FEAT_BIT_PWR_CTRL_REQ 33
166#define BT_LE_FEAT_BIT_PWR_CHG_IND 34
167#define BT_LE_FEAT_BIT_PATH_LOSS_MONITOR 35
169#define BT_LE_FEAT_TEST(feat, n) (feat[(n) >> 3] & \
172#define BT_FEAT_LE_ENCR(feat) BT_LE_FEAT_TEST(feat, \
174#define BT_FEAT_LE_CONN_PARAM_REQ_PROC(feat) BT_LE_FEAT_TEST(feat, \
175 BT_LE_FEAT_BIT_CONN_PARAM_REQ)
176#define BT_FEAT_LE_PER_INIT_FEAT_XCHG(feat) BT_LE_FEAT_TEST(feat, \
177 BT_LE_FEAT_BIT_PER_INIT_FEAT_XCHG)
178#define BT_FEAT_LE_DLE(feat) BT_LE_FEAT_TEST(feat, \
180#define BT_FEAT_LE_PHY_2M(feat) BT_LE_FEAT_TEST(feat, \
181 BT_LE_FEAT_BIT_PHY_2M)
182#define BT_FEAT_LE_PHY_CODED(feat) BT_LE_FEAT_TEST(feat, \
183 BT_LE_FEAT_BIT_PHY_CODED)
184#define BT_FEAT_LE_PRIVACY(feat) BT_LE_FEAT_TEST(feat, \
185 BT_LE_FEAT_BIT_PRIVACY)
186#define BT_FEAT_LE_EXT_ADV(feat) BT_LE_FEAT_TEST(feat, \
187 BT_LE_FEAT_BIT_EXT_ADV)
188#define BT_FEAT_LE_EXT_PER_ADV(feat) BT_LE_FEAT_TEST(feat, \
189 BT_LE_FEAT_BIT_PER_ADV)
190#define BT_FEAT_LE_CONNECTION_CTE_REQ(feat) BT_LE_FEAT_TEST(feat, \
191 BT_LE_FEAT_BIT_CONN_CTE_REQ)
192#define BT_FEAT_LE_CONNECTION_CTE_RESP(feat) BT_LE_FEAT_TEST(feat, \
193 BT_LE_FEAT_BIT_CONN_CTE_RESP)
194#define BT_FEAT_LE_CONNECTIONLESS_CTE_TX(feat) BT_LE_FEAT_TEST(feat, \
195 BT_LE_FEAT_BIT_CONNECTIONLESS_CTE_TX)
196#define BT_FEAT_LE_CONNECTIONLESS_CTE_RX(feat) BT_LE_FEAT_TEST(feat, \
197 BT_LE_FEAT_BIT_CONNECTIONLESS_CTE_RX)
198#define BT_FEAT_LE_ANT_SWITCH_TX_AOD(feat) BT_LE_FEAT_TEST(feat, \
199 BT_LE_FEAT_BIT_ANT_SWITCH_TX_AOD)
200#define BT_FEAT_LE_ANT_SWITCH_RX_AOA(feat) BT_LE_FEAT_TEST(feat, \
201 BT_LE_FEAT_BIT_ANT_SWITCH_RX_AOA)
202#define BT_FEAT_LE_RX_CTE(feat) BT_LE_FEAT_TEST(feat, \
203 BT_LE_FEAT_BIT_RX_CTE)
204#define BT_FEAT_LE_PAST_SEND(feat) BT_LE_FEAT_TEST(feat, \
205 BT_LE_FEAT_BIT_PAST_SEND)
206#define BT_FEAT_LE_PAST_RECV(feat) BT_LE_FEAT_TEST(feat, \
207 BT_LE_FEAT_BIT_PAST_RECV)
208#define BT_FEAT_LE_CIS_CENTRAL(feat) BT_LE_FEAT_TEST(feat, \
209 BT_LE_FEAT_BIT_CIS_CENTRAL)
210#define BT_FEAT_LE_CIS_PERIPHERAL(feat) BT_LE_FEAT_TEST(feat, \
211 BT_LE_FEAT_BIT_CIS_PERIPHERAL)
212#define BT_FEAT_LE_ISO_BROADCASTER(feat) BT_LE_FEAT_TEST(feat, \
213 BT_LE_FEAT_BIT_ISO_BROADCASTER)
214#define BT_FEAT_LE_SYNC_RECEIVER(feat) BT_LE_FEAT_TEST(feat, \
215 BT_LE_FEAT_BIT_SYNC_RECEIVER)
216#define BT_FEAT_LE_ISO_CHANNELS(feat) BT_LE_FEAT_TEST(feat, \
217 BT_LE_FEAT_BIT_ISO_CHANNELS)
219#define BT_FEAT_LE_CIS(feat) (BT_FEAT_LE_CIS_CENTRAL(feat) | \
220 BT_FEAT_LE_CIS_PERIPHERAL(feat))
221#define BT_FEAT_LE_BIS(feat) (BT_FEAT_LE_ISO_BROADCASTER(feat) | \
222 BT_FEAT_LE_SYNC_RECEIVER(feat))
223#define BT_FEAT_LE_ISO(feat) (BT_FEAT_LE_CIS(feat) | \
224 BT_FEAT_LE_BIS(feat))
227#define BT_LE_STATES_PER_CONN_ADV(states) (states & 0x0000004000000000)
230#define BT_HCI_NO_BONDING 0x00
231#define BT_HCI_NO_BONDING_MITM 0x01
232#define BT_HCI_DEDICATED_BONDING 0x02
233#define BT_HCI_DEDICATED_BONDING_MITM 0x03
234#define BT_HCI_GENERAL_BONDING 0x04
235#define BT_HCI_GENERAL_BONDING_MITM 0x05
244#define BT_IO_DISPLAY_ONLY 0x00
245#define BT_IO_DISPLAY_YESNO 0x01
246#define BT_IO_KEYBOARD_ONLY 0x02
247#define BT_IO_NO_INPUT_OUTPUT 0x03
250#define HCI_PKT_TYPE_HV1 0x0020
251#define HCI_PKT_TYPE_HV2 0x0040
252#define HCI_PKT_TYPE_HV3 0x0080
255#define HCI_PKT_TYPE_ESCO_HV1 0x0001
256#define HCI_PKT_TYPE_ESCO_HV2 0x0002
257#define HCI_PKT_TYPE_ESCO_HV3 0x0004
258#define HCI_PKT_TYPE_ESCO_EV3 0x0008
259#define HCI_PKT_TYPE_ESCO_EV4 0x0010
260#define HCI_PKT_TYPE_ESCO_EV5 0x0020
261#define HCI_PKT_TYPE_ESCO_2EV3 0x0040
262#define HCI_PKT_TYPE_ESCO_3EV3 0x0080
263#define HCI_PKT_TYPE_ESCO_2EV5 0x0100
264#define HCI_PKT_TYPE_ESCO_3EV5 0x0200
267#define ESCO_PKT_MASK (HCI_PKT_TYPE_ESCO_HV1 | \
268 HCI_PKT_TYPE_ESCO_HV2 | \
269 HCI_PKT_TYPE_ESCO_HV3)
270#define SCO_PKT_MASK (HCI_PKT_TYPE_HV1 | \
273#define EDR_ESCO_PKT_MASK (HCI_PKT_TYPE_ESCO_2EV3 | \
274 HCI_PKT_TYPE_ESCO_3EV3 | \
275 HCI_PKT_TYPE_ESCO_2EV5 | \
276 HCI_PKT_TYPE_ESCO_3EV5)
279#define BT_HCI_SCO 0x00
280#define BT_HCI_ACL 0x01
281#define BT_HCI_ESCO 0x02
284#define BT_OGF_LINK_CTRL 0x01
285#define BT_OGF_BASEBAND 0x03
286#define BT_OGF_INFO 0x04
287#define BT_OGF_STATUS 0x05
288#define BT_OGF_LE 0x08
289#define BT_OGF_VS 0x3f
292#define BT_OP(ogf, ocf) ((ocf) | ((ogf) << 10))
295#define BT_OP_NOP 0x0000
298#define BT_OGF(opcode) (((opcode) >> 10) & BIT_MASK(6))
300#define BT_OCF(opcode) ((opcode) & BIT_MASK(10))
302#define BT_HCI_OP_INQUIRY BT_OP(BT_OGF_LINK_CTRL, 0x0001)
309#define BT_HCI_OP_INQUIRY_CANCEL BT_OP(BT_OGF_LINK_CTRL, 0x0002)
311#define BT_HCI_OP_CONNECT BT_OP(BT_OGF_LINK_CTRL, 0x0005)
321#define BT_HCI_OP_DISCONNECT BT_OP(BT_OGF_LINK_CTRL, 0x0006)
327#define BT_HCI_OP_CONNECT_CANCEL BT_OP(BT_OGF_LINK_CTRL, 0x0008)
336#define BT_HCI_OP_ACCEPT_CONN_REQ BT_OP(BT_OGF_LINK_CTRL, 0x0009)
342#define BT_HCI_OP_SETUP_SYNC_CONN BT_OP(BT_OGF_LINK_CTRL, 0x0028)
353#define BT_HCI_OP_ACCEPT_SYNC_CONN_REQ BT_OP(BT_OGF_LINK_CTRL, 0x0029)
364#define BT_HCI_OP_REJECT_CONN_REQ BT_OP(BT_OGF_LINK_CTRL, 0x000a)
370#define BT_HCI_OP_LINK_KEY_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x000b)
376#define BT_HCI_OP_LINK_KEY_NEG_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x000c)
381#define BT_HCI_OP_PIN_CODE_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x000d)
392#define BT_HCI_OP_PIN_CODE_NEG_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x000e)
401#define BT_HCI_OP_AUTH_REQUESTED BT_OP(BT_OGF_LINK_CTRL, 0x0011)
406#define BT_HCI_OP_SET_CONN_ENCRYPT BT_OP(BT_OGF_LINK_CTRL, 0x0013)
412#define BT_HCI_OP_REMOTE_NAME_REQUEST BT_OP(BT_OGF_LINK_CTRL, 0x0019)
420#define BT_HCI_OP_REMOTE_NAME_CANCEL BT_OP(BT_OGF_LINK_CTRL, 0x001a)
429#define BT_HCI_OP_READ_REMOTE_FEATURES BT_OP(BT_OGF_LINK_CTRL, 0x001b)
434#define BT_HCI_OP_READ_REMOTE_EXT_FEATURES BT_OP(BT_OGF_LINK_CTRL, 0x001c)
440#define BT_HCI_OP_READ_REMOTE_VERSION_INFO BT_OP(BT_OGF_LINK_CTRL, 0x001d)
445#define BT_HCI_OP_IO_CAPABILITY_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x002b)
453#define BT_HCI_OP_USER_CONFIRM_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x002c)
454#define BT_HCI_OP_USER_CONFIRM_NEG_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x002d)
463#define BT_HCI_OP_USER_PASSKEY_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x002e)
469#define BT_HCI_OP_USER_PASSKEY_NEG_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x002f)
474#define BT_HCI_OP_IO_CAPABILITY_NEG_REPLY BT_OP(BT_OGF_LINK_CTRL, 0x0034)
480#define BT_HCI_OP_SET_EVENT_MASK BT_OP(BT_OGF_BASEBAND, 0x0001)
485#define BT_HCI_OP_RESET BT_OP(BT_OGF_BASEBAND, 0x0003)
487#define BT_HCI_OP_WRITE_LOCAL_NAME BT_OP(BT_OGF_BASEBAND, 0x0013)
492#define BT_HCI_OP_WRITE_PAGE_TIMEOUT BT_OP(BT_OGF_BASEBAND, 0x0018)
494#define BT_HCI_OP_WRITE_SCAN_ENABLE BT_OP(BT_OGF_BASEBAND, 0x001a)
495#define BT_BREDR_SCAN_DISABLED 0x00
496#define BT_BREDR_SCAN_INQUIRY 0x01
497#define BT_BREDR_SCAN_PAGE 0x02
499#define BT_HCI_OP_WRITE_CLASS_OF_DEVICE BT_OP(BT_OGF_BASEBAND, 0x0024)
504#define BT_TX_POWER_LEVEL_CURRENT 0x00
505#define BT_TX_POWER_LEVEL_MAX 0x01
506#define BT_HCI_OP_READ_TX_POWER_LEVEL BT_OP(BT_OGF_BASEBAND, 0x002d)
518#define BT_HCI_CTL_TO_HOST_FLOW_DISABLE 0x00
519#define BT_HCI_CTL_TO_HOST_FLOW_ENABLE 0x01
520#define BT_HCI_OP_SET_CTL_TO_HOST_FLOW BT_OP(BT_OGF_BASEBAND, 0x0031)
525#define BT_HCI_OP_HOST_BUFFER_SIZE BT_OP(BT_OGF_BASEBAND, 0x0033)
538#define BT_HCI_OP_HOST_NUM_COMPLETED_PACKETS BT_OP(BT_OGF_BASEBAND, 0x0035)
544#define BT_HCI_OP_WRITE_INQUIRY_MODE BT_OP(BT_OGF_BASEBAND, 0x0045)
549#define BT_HCI_OP_WRITE_SSP_MODE BT_OP(BT_OGF_BASEBAND, 0x0056)
554#define BT_HCI_OP_SET_EVENT_MASK_PAGE_2 BT_OP(BT_OGF_BASEBAND, 0x0063)
559#define BT_HCI_OP_LE_WRITE_LE_HOST_SUPP BT_OP(BT_OGF_BASEBAND, 0x006d)
565#define BT_HCI_OP_WRITE_SC_HOST_SUPP BT_OP(BT_OGF_BASEBAND, 0x007a)
570#define BT_HCI_OP_READ_AUTH_PAYLOAD_TIMEOUT BT_OP(BT_OGF_BASEBAND, 0x007b)
581#define BT_HCI_OP_WRITE_AUTH_PAYLOAD_TIMEOUT BT_OP(BT_OGF_BASEBAND, 0x007c)
592#define BT_HCI_OP_CONFIGURE_DATA_PATH BT_OP(BT_OGF_BASEBAND, 0x0083)
605#define BT_HCI_VERSION_1_0B 0
606#define BT_HCI_VERSION_1_1 1
607#define BT_HCI_VERSION_1_2 2
608#define BT_HCI_VERSION_2_0 3
609#define BT_HCI_VERSION_2_1 4
610#define BT_HCI_VERSION_3_0 5
611#define BT_HCI_VERSION_4_0 6
612#define BT_HCI_VERSION_4_1 7
613#define BT_HCI_VERSION_4_2 8
614#define BT_HCI_VERSION_5_0 9
615#define BT_HCI_VERSION_5_1 10
616#define BT_HCI_VERSION_5_2 11
617#define BT_HCI_VERSION_5_3 12
619#define BT_HCI_OP_READ_LOCAL_VERSION_INFO BT_OP(BT_OGF_INFO, 0x0001)
629#define BT_HCI_OP_READ_SUPPORTED_COMMANDS BT_OP(BT_OGF_INFO, 0x0002)
635#define BT_HCI_OP_READ_LOCAL_EXT_FEATURES BT_OP(BT_OGF_INFO, 0x0004)
646#define BT_HCI_OP_READ_LOCAL_FEATURES BT_OP(BT_OGF_INFO, 0x0003)
652#define BT_HCI_OP_READ_BUFFER_SIZE BT_OP(BT_OGF_INFO, 0x0005)
661#define BT_HCI_OP_READ_BD_ADDR BT_OP(BT_OGF_INFO, 0x0009)
668#define BT_HCI_CODEC_TRANSPORT_MASK_BREDR_ACL BIT(0)
669#define BT_HCI_CODEC_TRANSPORT_MASK_BREDR_SCO BIT(1)
670#define BT_HCI_CODEC_TRANSPORT_MASK_LE_CIS BIT(2)
671#define BT_HCI_CODEC_TRANSPORT_MASK_LE_BIS BIT(3)
674#define BT_HCI_LOGICAL_TRANSPORT_TYPE_BREDR_ACL 0x00
675#define BT_HCI_LOGICAL_TRANSPORT_TYPE_BREDR_SCO 0x01
676#define BT_HCI_LOGICAL_TRANSPORT_TYPE_LE_CIS 0x02
677#define BT_HCI_LOGICAL_TRANSPORT_TYPE_LE_BIS 0x03
680#define BT_HCI_DATAPATH_DIR_HOST_TO_CTLR 0x00
681#define BT_HCI_DATAPATH_DIR_CTLR_TO_HOST 0x01
684#define BT_HCI_DATAPATH_ID_HCI 0x00
685#define BT_HCI_DATAPATH_ID_VS 0x01
686#define BT_HCI_DATAPATH_ID_VS_END 0xfe
687#define BT_HCI_DATAPATH_ID_DISABLED 0xff
690#define BT_HCI_CODING_FORMAT_ULAW_LOG 0x00
691#define BT_HCI_CODING_FORMAT_ALAW_LOG 0x01
692#define BT_HCI_CODING_FORMAT_CVSD 0x02
693#define BT_HCI_CODING_FORMAT_TRANSPARENT 0x03
694#define BT_HCI_CODING_FORMAT_LINEAR_PCM 0x04
695#define BT_HCI_CODING_FORMAT_MSBC 0x05
696#define BT_HCI_CODING_FORMAT_VS 0xFF
699#define BT_HCI_OP_READ_CODECS BT_OP(BT_OGF_INFO, 0x000b)
721#define BT_HCI_OP_READ_CODECS_V2 BT_OP(BT_OGF_INFO, 0x000d)
751#define BT_HCI_OP_READ_CODEC_CAPABILITIES BT_OP(BT_OGF_INFO, 0x000e)
768#define BT_HCI_OP_READ_CTLR_DELAY BT_OP(BT_OGF_INFO, 0x000f)
782#define BT_HCI_OP_READ_RSSI BT_OP(BT_OGF_STATUS, 0x0005)
792#define BT_HCI_ENCRYPTION_KEY_SIZE_MIN 7
793#define BT_HCI_ENCRYPTION_KEY_SIZE_MAX 16
795#define BT_HCI_OP_READ_ENCRYPTION_KEY_SIZE BT_OP(BT_OGF_STATUS, 0x0008)
807#define BT_HCI_OP_LE_SET_EVENT_MASK BT_OP(BT_OGF_LE, 0x0001)
812#define BT_HCI_OP_LE_READ_BUFFER_SIZE BT_OP(BT_OGF_LE, 0x0002)
819#define BT_HCI_OP_LE_READ_LOCAL_FEATURES BT_OP(BT_OGF_LE, 0x0003)
825#define BT_HCI_OP_LE_SET_RANDOM_ADDRESS BT_OP(BT_OGF_LE, 0x0005)
830#define BT_HCI_ADV_IND 0x00
831#define BT_HCI_ADV_DIRECT_IND 0x01
832#define BT_HCI_ADV_SCAN_IND 0x02
833#define BT_HCI_ADV_NONCONN_IND 0x03
834#define BT_HCI_ADV_DIRECT_IND_LOW_DUTY 0x04
835#define BT_HCI_ADV_SCAN_RSP 0x04
837#define BT_LE_ADV_INTERVAL_MIN 0x0020
838#define BT_LE_ADV_INTERVAL_MAX 0x4000
839#define BT_LE_ADV_INTERVAL_DEFAULT 0x0800
841#define BT_LE_ADV_CHAN_MAP_CHAN_37 0x01
842#define BT_LE_ADV_CHAN_MAP_CHAN_38 0x02
843#define BT_LE_ADV_CHAN_MAP_CHAN_39 0x04
844#define BT_LE_ADV_CHAN_MAP_ALL 0x07
846#define BT_LE_ADV_FP_NO_FILTER 0x00
847#define BT_LE_ADV_FP_FILTER_SCAN_REQ 0x01
848#define BT_LE_ADV_FP_FILTER_CONN_IND 0x02
849#define BT_LE_ADV_FP_FILTER_BOTH 0x03
851#define BT_HCI_OP_LE_SET_ADV_PARAM BT_OP(BT_OGF_LE, 0x0006)
862#define BT_HCI_OP_LE_READ_ADV_CHAN_TX_POWER BT_OP(BT_OGF_LE, 0x0007)
868#define BT_HCI_OP_LE_SET_ADV_DATA BT_OP(BT_OGF_LE, 0x0008)
874#define BT_HCI_OP_LE_SET_SCAN_RSP_DATA BT_OP(BT_OGF_LE, 0x0009)
880#define BT_HCI_LE_ADV_DISABLE 0x00
881#define BT_HCI_LE_ADV_ENABLE 0x01
883#define BT_HCI_OP_LE_SET_ADV_ENABLE BT_OP(BT_OGF_LE, 0x000a)
889#define BT_HCI_OP_LE_SET_SCAN_PARAM BT_OP(BT_OGF_LE, 0x000b)
890#define BT_HCI_LE_SCAN_PASSIVE 0x00
891#define BT_HCI_LE_SCAN_ACTIVE 0x01
893#define BT_HCI_LE_SCAN_FP_BASIC_NO_FILTER 0x00
894#define BT_HCI_LE_SCAN_FP_BASIC_FILTER 0x01
895#define BT_HCI_LE_SCAN_FP_EXT_NO_FILTER 0x02
896#define BT_HCI_LE_SCAN_FP_EXT_FILTER 0x03
906#define BT_HCI_OP_LE_SET_SCAN_ENABLE BT_OP(BT_OGF_LE, 0x000c)
908#define BT_HCI_LE_SCAN_DISABLE 0x00
909#define BT_HCI_LE_SCAN_ENABLE 0x01
911#define BT_HCI_LE_SCAN_FILTER_DUP_DISABLE 0x00
912#define BT_HCI_LE_SCAN_FILTER_DUP_ENABLE 0x01
919#define BT_HCI_OP_LE_CREATE_CONN BT_OP(BT_OGF_LE, 0x000d)
921#define BT_HCI_LE_CREATE_CONN_FP_NO_FILTER 0x00
922#define BT_HCI_LE_CREATE_CONN_FP_FILTER 0x01
938#define BT_HCI_OP_LE_CREATE_CONN_CANCEL BT_OP(BT_OGF_LE, 0x000e)
940#define BT_HCI_OP_LE_READ_FAL_SIZE BT_OP(BT_OGF_LE, 0x000f)
946#define BT_HCI_OP_LE_CLEAR_FAL BT_OP(BT_OGF_LE, 0x0010)
948#define BT_HCI_OP_LE_ADD_DEV_TO_FAL BT_OP(BT_OGF_LE, 0x0011)
953#define BT_HCI_OP_LE_REM_DEV_FROM_FAL BT_OP(BT_OGF_LE, 0x0012)
958#define BT_HCI_OP_LE_CONN_UPDATE BT_OP(BT_OGF_LE, 0x0013)
969#define BT_HCI_OP_LE_SET_HOST_CHAN_CLASSIF BT_OP(BT_OGF_LE, 0x0014)
974#define BT_HCI_OP_LE_READ_CHAN_MAP BT_OP(BT_OGF_LE, 0x0015)
984#define BT_HCI_OP_LE_READ_REMOTE_FEATURES BT_OP(BT_OGF_LE, 0x0016)
989#define BT_HCI_OP_LE_ENCRYPT BT_OP(BT_OGF_LE, 0x0017)
999#define BT_HCI_OP_LE_RAND BT_OP(BT_OGF_LE, 0x0018)
1005#define BT_HCI_OP_LE_START_ENCRYPTION BT_OP(BT_OGF_LE, 0x0019)
1013#define BT_HCI_OP_LE_LTK_REQ_REPLY BT_OP(BT_OGF_LE, 0x001a)
1023#define BT_HCI_OP_LE_LTK_REQ_NEG_REPLY BT_OP(BT_OGF_LE, 0x001b)
1032#define BT_HCI_OP_LE_READ_SUPP_STATES BT_OP(BT_OGF_LE, 0x001c)
1038#define BT_HCI_OP_LE_RX_TEST BT_OP(BT_OGF_LE, 0x001d)
1043#define BT_HCI_OP_LE_TX_TEST BT_OP(BT_OGF_LE, 0x001e)
1050#define BT_HCI_OP_LE_TEST_END BT_OP(BT_OGF_LE, 0x001f)
1056#define BT_HCI_OP_LE_CONN_PARAM_REQ_REPLY BT_OP(BT_OGF_LE, 0x0020)
1071#define BT_HCI_OP_LE_CONN_PARAM_REQ_NEG_REPLY BT_OP(BT_OGF_LE, 0x0021)
1081#define BT_HCI_OP_LE_SET_DATA_LEN BT_OP(BT_OGF_LE, 0x0022)
1092#define BT_HCI_OP_LE_READ_DEFAULT_DATA_LEN BT_OP(BT_OGF_LE, 0x0023)
1099#define BT_HCI_OP_LE_WRITE_DEFAULT_DATA_LEN BT_OP(BT_OGF_LE, 0x0024)
1105#define BT_HCI_OP_LE_P256_PUBLIC_KEY BT_OP(BT_OGF_LE, 0x0025)
1107#define BT_HCI_OP_LE_GENERATE_DHKEY BT_OP(BT_OGF_LE, 0x0026)
1113#define BT_HCI_OP_LE_GENERATE_DHKEY_V2 BT_OP(BT_OGF_LE, 0x005e)
1115#define BT_HCI_LE_KEY_TYPE_GENERATED 0x00
1116#define BT_HCI_LE_KEY_TYPE_DEBUG 0x01
1124#define BT_HCI_OP_LE_ADD_DEV_TO_RL BT_OP(BT_OGF_LE, 0x0027)
1131#define BT_HCI_OP_LE_REM_DEV_FROM_RL BT_OP(BT_OGF_LE, 0x0028)
1136#define BT_HCI_OP_LE_CLEAR_RL BT_OP(BT_OGF_LE, 0x0029)
1138#define BT_HCI_OP_LE_READ_RL_SIZE BT_OP(BT_OGF_LE, 0x002a)
1144#define BT_HCI_OP_LE_READ_PEER_RPA BT_OP(BT_OGF_LE, 0x002b)
1153#define BT_HCI_OP_LE_READ_LOCAL_RPA BT_OP(BT_OGF_LE, 0x002c)
1162#define BT_HCI_ADDR_RES_DISABLE 0x00
1163#define BT_HCI_ADDR_RES_ENABLE 0x01
1165#define BT_HCI_OP_LE_SET_ADDR_RES_ENABLE BT_OP(BT_OGF_LE, 0x002d)
1170#define BT_HCI_OP_LE_SET_RPA_TIMEOUT BT_OP(BT_OGF_LE, 0x002e)
1175#define BT_HCI_OP_LE_READ_MAX_DATA_LEN BT_OP(BT_OGF_LE, 0x002f)
1184#define BT_HCI_LE_PHY_1M 0x01
1185#define BT_HCI_LE_PHY_2M 0x02
1186#define BT_HCI_LE_PHY_CODED 0x03
1188#define BT_HCI_OP_LE_READ_PHY BT_OP(BT_OGF_LE, 0x0030)
1199#define BT_HCI_LE_PHY_TX_ANY BIT(0)
1200#define BT_HCI_LE_PHY_RX_ANY BIT(1)
1202#define BT_HCI_LE_PHY_PREFER_1M BIT(0)
1203#define BT_HCI_LE_PHY_PREFER_2M BIT(1)
1204#define BT_HCI_LE_PHY_PREFER_CODED BIT(2)
1206#define BT_HCI_OP_LE_SET_DEFAULT_PHY BT_OP(BT_OGF_LE, 0x0031)
1213#define BT_HCI_LE_PHY_CODED_ANY 0x00
1214#define BT_HCI_LE_PHY_CODED_S2 0x01
1215#define BT_HCI_LE_PHY_CODED_S8 0x02
1217#define BT_HCI_OP_LE_SET_PHY BT_OP(BT_OGF_LE, 0x0032)
1226#define BT_HCI_LE_MOD_INDEX_STANDARD 0x00
1227#define BT_HCI_LE_MOD_INDEX_STABLE 0x01
1229#define BT_HCI_OP_LE_ENH_RX_TEST BT_OP(BT_OGF_LE, 0x0033)
1237#define BT_HCI_LE_TX_PHY_CODED_S8 0x03
1238#define BT_HCI_LE_TX_PHY_CODED_S2 0x04
1240#define BT_HCI_OP_LE_ENH_TX_TEST BT_OP(BT_OGF_LE, 0x0034)
1248#define BT_HCI_OP_LE_SET_ADV_SET_RANDOM_ADDR BT_OP(BT_OGF_LE, 0x0035)
1254#define BT_HCI_LE_ADV_PROP_CONN BIT(0)
1255#define BT_HCI_LE_ADV_PROP_SCAN BIT(1)
1256#define BT_HCI_LE_ADV_PROP_DIRECT BIT(2)
1257#define BT_HCI_LE_ADV_PROP_HI_DC_CONN BIT(3)
1258#define BT_HCI_LE_ADV_PROP_LEGACY BIT(4)
1259#define BT_HCI_LE_ADV_PROP_ANON BIT(5)
1260#define BT_HCI_LE_ADV_PROP_TX_POWER BIT(6)
1262#define BT_HCI_LE_ADV_SCAN_REQ_ENABLE 1
1263#define BT_HCI_LE_ADV_SCAN_REQ_DISABLE 0
1265#define BT_HCI_LE_ADV_TX_POWER_NO_PREF 0x7F
1267#define BT_HCI_LE_ADV_HANDLE_MAX 0xEF
1269#define BT_HCI_LE_EXT_ADV_SID_INVALID 0xFF
1271#define BT_HCI_OP_LE_SET_EXT_ADV_PARAM BT_OP(BT_OGF_LE, 0x0036)
1293#define BT_HCI_LE_EXT_ADV_OP_INTERM_FRAG 0x00
1294#define BT_HCI_LE_EXT_ADV_OP_FIRST_FRAG 0x01
1295#define BT_HCI_LE_EXT_ADV_OP_LAST_FRAG 0x02
1296#define BT_HCI_LE_EXT_ADV_OP_COMPLETE_DATA 0x03
1297#define BT_HCI_LE_EXT_ADV_OP_UNCHANGED_DATA 0x04
1299#define BT_HCI_LE_EXT_ADV_FRAG_ENABLED 0x00
1300#define BT_HCI_LE_EXT_ADV_FRAG_DISABLED 0x01
1302#define BT_HCI_LE_EXT_ADV_FRAG_MAX_LEN 251
1304#define BT_HCI_OP_LE_SET_EXT_ADV_DATA BT_OP(BT_OGF_LE, 0x0037)
1313#define BT_HCI_OP_LE_SET_EXT_SCAN_RSP_DATA BT_OP(BT_OGF_LE, 0x0038)
1322#define BT_HCI_OP_LE_SET_EXT_ADV_ENABLE BT_OP(BT_OGF_LE, 0x0039)
1335#define BT_HCI_OP_LE_READ_MAX_ADV_DATA_LEN BT_OP(BT_OGF_LE, 0x003a)
1341#define BT_HCI_OP_LE_READ_NUM_ADV_SETS BT_OP(BT_OGF_LE, 0x003b)
1347#define BT_HCI_OP_LE_REMOVE_ADV_SET BT_OP(BT_OGF_LE, 0x003c)
1352#define BT_HCI_OP_CLEAR_ADV_SETS BT_OP(BT_OGF_LE, 0x003d)
1354#define BT_HCI_OP_LE_SET_PER_ADV_PARAM BT_OP(BT_OGF_LE, 0x003e)
1362#define BT_HCI_LE_PER_ADV_OP_INTERM_FRAG 0x00
1363#define BT_HCI_LE_PER_ADV_OP_FIRST_FRAG 0x01
1364#define BT_HCI_LE_PER_ADV_OP_LAST_FRAG 0x02
1365#define BT_HCI_LE_PER_ADV_OP_COMPLETE_DATA 0x03
1367#define BT_HCI_LE_PER_ADV_FRAG_MAX_LEN 252
1369#define BT_HCI_OP_LE_SET_PER_ADV_DATA BT_OP(BT_OGF_LE, 0x003f)
1377#define BT_HCI_OP_LE_SET_PER_ADV_ENABLE BT_OP(BT_OGF_LE, 0x0040)
1383#define BT_HCI_OP_LE_SET_EXT_SCAN_PARAM BT_OP(BT_OGF_LE, 0x0041)
1390#define BT_HCI_LE_EXT_SCAN_PHY_1M BIT(0)
1391#define BT_HCI_LE_EXT_SCAN_PHY_2M BIT(1)
1392#define BT_HCI_LE_EXT_SCAN_PHY_CODED BIT(2)
1402#define BT_HCI_LE_EXT_SCAN_FILTER_DUP_ENABLE_RESET 0x02
1404#define BT_HCI_OP_LE_SET_EXT_SCAN_ENABLE BT_OP(BT_OGF_LE, 0x0042)
1412#define BT_HCI_OP_LE_EXT_CREATE_CONN BT_OP(BT_OGF_LE, 0x0043)
1432#define BT_HCI_LE_PER_ADV_CREATE_SYNC_FP_USE_LIST BIT(0)
1433#define BT_HCI_LE_PER_ADV_CREATE_SYNC_FP_REPORTS_DISABLED BIT(1)
1435#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_NO_AOA BIT(0)
1436#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_NO_AOD_1US BIT(1)
1437#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_NO_AOD_2US BIT(2)
1438#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_NO_CTE BIT(3)
1439#define BT_HCI_LE_PER_ADV_CREATE_SYNC_CTE_TYPE_ONLY_CTE BIT(4)
1441#define BT_HCI_OP_LE_PER_ADV_CREATE_SYNC BT_OP(BT_OGF_LE, 0x0044)
1451#define BT_HCI_OP_LE_PER_ADV_CREATE_SYNC_CANCEL BT_OP(BT_OGF_LE, 0x0045)
1453#define BT_HCI_OP_LE_PER_ADV_TERMINATE_SYNC BT_OP(BT_OGF_LE, 0x0046)
1458#define BT_HCI_OP_LE_ADD_DEV_TO_PER_ADV_LIST BT_OP(BT_OGF_LE, 0x0047)
1464#define BT_HCI_OP_LE_REM_DEV_FROM_PER_ADV_LIST BT_OP(BT_OGF_LE, 0x0048)
1470#define BT_HCI_OP_LE_CLEAR_PER_ADV_LIST BT_OP(BT_OGF_LE, 0x0049)
1472#define BT_HCI_OP_LE_READ_PER_ADV_LIST_SIZE BT_OP(BT_OGF_LE, 0x004a)
1478#define BT_HCI_OP_LE_READ_TX_POWER BT_OP(BT_OGF_LE, 0x004b)
1485#define BT_HCI_OP_LE_READ_RF_PATH_COMP BT_OP(BT_OGF_LE, 0x004c)
1492#define BT_HCI_OP_LE_WRITE_RF_PATH_COMP BT_OP(BT_OGF_LE, 0x004d)
1498#define BT_HCI_LE_PRIVACY_MODE_NETWORK 0x00
1499#define BT_HCI_LE_PRIVACY_MODE_DEVICE 0x01
1501#define BT_HCI_OP_LE_SET_PRIVACY_MODE BT_OP(BT_OGF_LE, 0x004e)
1508#define BT_HCI_LE_CTE_LEN_MIN 0x2
1509#define BT_HCI_LE_CTE_LEN_MAX 0x14
1511#define BT_HCI_LE_AOA_CTE 0x0
1512#define BT_HCI_LE_AOD_CTE_1US 0x1
1513#define BT_HCI_LE_AOD_CTE_2US 0x2
1514#define BT_HCI_LE_NO_CTE 0xFF
1516#define BT_HCI_LE_CTE_COUNT_MIN 0x1
1517#define BT_HCI_LE_CTE_COUNT_MAX 0x10
1519#define BT_HCI_OP_LE_SET_CL_CTE_TX_PARAMS BT_OP(BT_OGF_LE, 0x0051)
1529#define BT_HCI_OP_LE_SET_CL_CTE_TX_ENABLE BT_OP(BT_OGF_LE, 0x0052)
1535#define BT_HCI_LE_ANTENNA_SWITCHING_SLOT_1US 0x1
1536#define BT_HCI_LE_ANTENNA_SWITCHING_SLOT_2US 0x2
1538#define BT_HCI_LE_SAMPLE_CTE_ALL 0x0
1539#define BT_HCI_LE_SAMPLE_CTE_COUNT_MIN 0x1
1540#define BT_HCI_LE_SAMPLE_CTE_COUNT_MAX 0x10
1542#define BT_HCI_OP_LE_SET_CL_CTE_SAMPLING_ENABLE BT_OP(BT_OGF_LE, 0x0053)
1557#define BT_HCI_OP_LE_SET_CONN_CTE_RX_PARAMS BT_OP(BT_OGF_LE, 0x0054)
1571#define BT_HCI_LE_AOA_CTE_RSP BIT(0)
1572#define BT_HCI_LE_AOD_CTE_RSP_1US BIT(1)
1573#define BT_HCI_LE_AOD_CTE_RSP_2US BIT(2)
1575#define BT_HCI_LE_SWITCH_PATTERN_LEN_MIN 0x2
1576#define BT_HCI_LE_SWITCH_PATTERN_LEN_MAX 0x4B
1578#define BT_HCI_OP_LE_SET_CONN_CTE_TX_PARAMS BT_OP(BT_OGF_LE, 0x0055)
1592#define BT_HCI_REQUEST_CTE_ONCE 0x0
1593#define BT_HCI_REQUEST_CTE_INTERVAL_MIN 0x1
1594#define BT_HCI_REQUEST_CTE_INTERVAL_MAX 0xFFFF
1596#define BT_HCI_OP_LE_CONN_CTE_REQ_ENABLE BT_OP(BT_OGF_LE, 0x0056)
1610#define BT_HCI_OP_LE_CONN_CTE_RSP_ENABLE BT_OP(BT_OGF_LE, 0x0057)
1621#define BT_HCI_LE_1US_AOD_TX BIT(0)
1622#define BT_HCI_LE_1US_AOD_RX BIT(1)
1623#define BT_HCI_LE_1US_AOA_RX BIT(2)
1625#define BT_HCI_LE_NUM_ANT_MIN 0x1
1626#define BT_HCI_LE_NUM_ANT_MAX 0x4B
1628#define BT_HCI_LE_MAX_SWITCH_PATTERN_LEN_MIN 0x2
1629#define BT_HCI_LE_MAX_SWITCH_PATTERN_LEN_MAX 0x4B
1631#define BT_HCI_LE_MAX_CTE_LEN_MIN 0x2
1632#define BT_HCI_LE_MAX_CTE_LEN_MAX 0x14
1634#define BT_HCI_OP_LE_READ_ANT_INFO BT_OP(BT_OGF_LE, 0x0058)
1643#define BT_HCI_OP_LE_SET_PER_ADV_RECV_ENABLE BT_OP(BT_OGF_LE, 0x0059)
1649#define BT_HCI_OP_LE_PER_ADV_SYNC_TRANSFER BT_OP(BT_OGF_LE, 0x005a)
1661#define BT_HCI_OP_LE_PER_ADV_SET_INFO_TRANSFER BT_OP(BT_OGF_LE, 0x005b)
1673#define BT_HCI_LE_PAST_MODE_NO_SYNC 0x00
1674#define BT_HCI_LE_PAST_MODE_NO_REPORTS 0x01
1675#define BT_HCI_LE_PAST_MODE_SYNC 0x02
1677#define BT_HCI_LE_PAST_CTE_TYPE_NO_AOA BIT(0)
1678#define BT_HCI_LE_PAST_CTE_TYPE_NO_AOD_1US BIT(1)
1679#define BT_HCI_LE_PAST_CTE_TYPE_NO_AOD_2US BIT(2)
1680#define BT_HCI_LE_PAST_CTE_TYPE_NO_CTE BIT(3)
1681#define BT_HCI_LE_PAST_CTE_TYPE_ONLY_CTE BIT(4)
1683#define BT_HCI_OP_LE_PAST_PARAM BT_OP(BT_OGF_LE, 0x005c)
1697#define BT_HCI_OP_LE_DEFAULT_PAST_PARAM BT_OP(BT_OGF_LE, 0x005d)
1709#define BT_HCI_OP_LE_READ_BUFFER_SIZE_V2 BT_OP(BT_OGF_LE, 0x0060)
1718#define BT_HCI_OP_LE_READ_ISO_TX_SYNC BT_OP(BT_OGF_LE, 0x0061)
1731#define BT_HCI_OP_LE_SET_CIG_PARAMS BT_OP(BT_OGF_LE, 0x0062)
1762#define BT_HCI_OP_LE_SET_CIG_PARAMS_TEST BT_OP(BT_OGF_LE, 0x0063)
1797#define BT_HCI_OP_LE_CREATE_CIS BT_OP(BT_OGF_LE, 0x0064)
1808#define BT_HCI_OP_LE_REMOVE_CIG BT_OP(BT_OGF_LE, 0x0065)
1818#define BT_HCI_OP_LE_ACCEPT_CIS BT_OP(BT_OGF_LE, 0x0066)
1823#define BT_HCI_OP_LE_REJECT_CIS BT_OP(BT_OGF_LE, 0x0067)
1834#define BT_HCI_OP_LE_CREATE_BIG BT_OP(BT_OGF_LE, 0x0068)
1850#define BT_HCI_OP_LE_CREATE_BIG_TEST BT_OP(BT_OGF_LE, 0x0069)
1870#define BT_HCI_OP_LE_TERMINATE_BIG BT_OP(BT_OGF_LE, 0x006a)
1876#define BT_HCI_OP_LE_BIG_CREATE_SYNC BT_OP(BT_OGF_LE, 0x006b)
1888#define BT_HCI_OP_LE_BIG_TERMINATE_SYNC BT_OP(BT_OGF_LE, 0x006c)
1898#define BT_HCI_OP_LE_REQ_PEER_SC BT_OP(BT_OGF_LE, 0x006d)
1903#define BT_HCI_OP_LE_SETUP_ISO_PATH BT_OP(BT_OGF_LE, 0x006e)
1919#define BT_HCI_OP_LE_REMOVE_ISO_PATH BT_OP(BT_OGF_LE, 0x006f)
1930#define BT_HCI_OP_LE_ISO_TRANSMIT_TEST BT_OP(BT_OGF_LE, 0x0070)
1941#define BT_HCI_OP_LE_ISO_RECEIVE_TEST BT_OP(BT_OGF_LE, 0x0071)
1952#define BT_HCI_OP_LE_ISO_READ_TEST_COUNTERS BT_OP(BT_OGF_LE, 0x0072)
1965#define BT_HCI_OP_LE_ISO_TEST_END BT_OP(BT_OGF_LE, 0x0073)
1978#define BT_HCI_OP_LE_SET_HOST_FEATURE BT_OP(BT_OGF_LE, 0x0074)
1988#define BT_HCI_OP_LE_READ_ISO_LINK_QUALITY BT_OP(BT_OGF_LE, 0x0075)
2007#define BT_HCI_EVT_UNKNOWN 0x00
2008#define BT_HCI_EVT_VENDOR 0xff
2010#define BT_HCI_EVT_INQUIRY_COMPLETE 0x01
2015#define BT_HCI_EVT_CONN_COMPLETE 0x03
2024#define BT_HCI_EVT_CONN_REQUEST 0x04
2031#define BT_HCI_EVT_DISCONN_COMPLETE 0x05
2038#define BT_HCI_EVT_AUTH_COMPLETE 0x06
2044#define BT_HCI_EVT_REMOTE_NAME_REQ_COMPLETE 0x07
2051#define BT_HCI_EVT_ENCRYPT_CHANGE 0x08
2058#define BT_HCI_EVT_REMOTE_FEATURES 0x0b
2065#define BT_HCI_EVT_REMOTE_VERSION_INFO 0x0c
2074#define BT_HCI_EVT_CMD_COMPLETE 0x0e
2084#define BT_HCI_EVT_CMD_STATUS 0x0f
2091#define BT_HCI_EVT_HARDWARE_ERROR 0x10
2096#define BT_HCI_EVT_ROLE_CHANGE 0x12
2103#define BT_HCI_EVT_NUM_COMPLETED_PACKETS 0x13
2109#define BT_HCI_EVT_PIN_CODE_REQ 0x16
2114#define BT_HCI_EVT_LINK_KEY_REQ 0x17
2120#define BT_LK_COMBINATION 0x00
2121#define BT_LK_LOCAL_UNIT 0x01
2122#define BT_LK_REMOTE_UNIT 0x02
2123#define BT_LK_DEBUG_COMBINATION 0x03
2124#define BT_LK_UNAUTH_COMBINATION_P192 0x04
2125#define BT_LK_AUTH_COMBINATION_P192 0x05
2126#define BT_LK_CHANGED_COMBINATION 0x06
2127#define BT_LK_UNAUTH_COMBINATION_P256 0x07
2128#define BT_LK_AUTH_COMBINATION_P256 0x08
2130#define BT_HCI_EVT_LINK_KEY_NOTIFY 0x18
2138#define BT_OVERFLOW_LINK_SYNCH 0x00
2139#define BT_OVERFLOW_LINK_ACL 0x01
2141#define BT_HCI_EVT_DATA_BUF_OVERFLOW 0x1a
2146#define BT_HCI_EVT_INQUIRY_RESULT_WITH_RSSI 0x22
2156#define BT_HCI_EVT_REMOTE_EXT_FEATURES 0x23
2165#define BT_HCI_EVT_SYNC_CONN_COMPLETE 0x2c
2178#define BT_HCI_EVT_EXTENDED_INQUIRY_RESULT 0x2f
2190#define BT_HCI_EVT_ENCRYPT_KEY_REFRESH_COMPLETE 0x30
2196#define BT_HCI_EVT_IO_CAPA_REQ 0x31
2201#define BT_HCI_EVT_IO_CAPA_RESP 0x32
2209#define BT_HCI_EVT_USER_CONFIRM_REQ 0x33
2215#define BT_HCI_EVT_USER_PASSKEY_REQ 0x34
2220#define BT_HCI_EVT_SSP_COMPLETE 0x36
2226#define BT_HCI_EVT_USER_PASSKEY_NOTIFY 0x3b
2232#define BT_HCI_EVT_LE_META_EVENT 0x3e
2237#define BT_HCI_EVT_AUTH_PAYLOAD_TIMEOUT_EXP 0x57
2242#define BT_HCI_ROLE_CENTRAL 0x00
2243#define BT_HCI_ROLE_PERIPHERAL 0x01
2245#define BT_HCI_EVT_LE_CONN_COMPLETE 0x01
2257#define BT_HCI_LE_RSSI_NOT_AVAILABLE 0x7F
2259#define BT_HCI_EVT_LE_ADVERTISING_REPORT 0x02
2271#define BT_HCI_EVT_LE_CONN_UPDATE_COMPLETE 0x03
2280#define BT_HCI_EVT_LE_REMOTE_FEAT_COMPLETE 0x04
2287#define BT_HCI_EVT_LE_LTK_REQUEST 0x05
2294#define BT_HCI_EVT_LE_CONN_PARAM_REQ 0x06
2303#define BT_HCI_EVT_LE_DATA_LEN_CHANGE 0x07
2312#define BT_HCI_EVT_LE_P256_PUBLIC_KEY_COMPLETE 0x08
2318#define BT_HCI_EVT_LE_GENERATE_DHKEY_COMPLETE 0x09
2324#define BT_HCI_EVT_LE_ENH_CONN_COMPLETE 0x0a
2338#define BT_HCI_EVT_LE_DIRECT_ADV_REPORT 0x0b
2350#define BT_HCI_EVT_LE_PHY_UPDATE_COMPLETE 0x0c
2358#define BT_HCI_EVT_LE_EXT_ADVERTISING_REPORT 0x0d
2360#define BT_HCI_LE_ADV_EVT_TYPE_CONN BIT(0)
2361#define BT_HCI_LE_ADV_EVT_TYPE_SCAN BIT(1)
2362#define BT_HCI_LE_ADV_EVT_TYPE_DIRECT BIT(2)
2363#define BT_HCI_LE_ADV_EVT_TYPE_SCAN_RSP BIT(3)
2364#define BT_HCI_LE_ADV_EVT_TYPE_LEGACY BIT(4)
2366#define BT_HCI_LE_ADV_EVT_TYPE_DATA_STATUS(ev_type) (((ev_type) >> 5) & 0x03)
2367#define BT_HCI_LE_ADV_EVT_TYPE_DATA_STATUS_COMPLETE 0
2368#define BT_HCI_LE_ADV_EVT_TYPE_DATA_STATUS_PARTIAL 1
2369#define BT_HCI_LE_ADV_EVT_TYPE_DATA_STATUS_INCOMPLETE 2
2389#define BT_HCI_EVT_LE_PER_ADV_SYNC_ESTABLISHED 0x0e
2400#define BT_HCI_EVT_LE_PER_ADVERTISING_REPORT 0x0f
2411#define BT_HCI_EVT_LE_PER_ADV_SYNC_LOST 0x10
2416#define BT_HCI_EVT_LE_SCAN_TIMEOUT 0x11
2418#define BT_HCI_EVT_LE_ADV_SET_TERMINATED 0x12
2426#define BT_HCI_EVT_LE_SCAN_REQ_RECEIVED 0x13
2432#define BT_HCI_LE_CHAN_SEL_ALGO_1 0x00
2433#define BT_HCI_LE_CHAN_SEL_ALGO_2 0x01
2435#define BT_HCI_EVT_LE_CHAN_SEL_ALGO 0x14
2441#define BT_HCI_LE_CTE_CRC_OK 0x0
2442#define BT_HCI_LE_CTE_CRC_ERR_CTE_BASED_TIME 0x1
2443#define BT_HCI_LE_CTE_CRC_ERR_CTE_BASED_OTHER 0x2
2444#define BT_HCI_LE_CTE_INSUFFICIENT_RESOURCES 0xFF
2446#define B_HCI_LE_CTE_REPORT_SAMPLE_COUNT_MIN 0x9
2447#define B_HCI_LE_CTE_REPORT_SAMPLE_COUNT_MAX 0x52
2449#define BT_HCI_LE_CTE_REPORT_NO_VALID_SAMPLE 0x80
2451#define BT_HCI_EVT_LE_CONNECTIONLESS_IQ_REPORT 0x15
2470#define BT_HCI_EVT_LE_CONNECTION_IQ_REPORT 0x16
2485#define BT_HCI_EVT_LE_CTE_REQUEST_FAILED 0x17
2491#define BT_HCI_EVT_LE_PAST_RECEIVED 0x18
2504#define BT_HCI_EVT_LE_CIS_ESTABLISHED 0x19
2524#define BT_HCI_EVT_LE_CIS_REQ 0x1a
2532#define BT_HCI_EVT_LE_BIG_COMPLETE 0x1b
2549#define BT_HCI_EVT_LE_BIG_TERMINATE 0x1c
2555#define BT_HCI_EVT_LE_BIG_SYNC_ESTABLISHED 0x1d
2570#define BT_HCI_EVT_LE_BIG_SYNC_LOST 0x1e
2576#define BT_HCI_EVT_LE_REQ_PEER_SCA_COMPLETE 0x1f
2583#define BT_HCI_EVT_LE_BIGINFO_ADV_REPORT 0x22
2602#define BT_EVT_BIT(n) (1ULL << (n))
2604#define BT_EVT_MASK_INQUIRY_COMPLETE BT_EVT_BIT(0)
2605#define BT_EVT_MASK_CONN_COMPLETE BT_EVT_BIT(2)
2606#define BT_EVT_MASK_CONN_REQUEST BT_EVT_BIT(3)
2607#define BT_EVT_MASK_DISCONN_COMPLETE BT_EVT_BIT(4)
2608#define BT_EVT_MASK_AUTH_COMPLETE BT_EVT_BIT(5)
2609#define BT_EVT_MASK_REMOTE_NAME_REQ_COMPLETE BT_EVT_BIT(6)
2610#define BT_EVT_MASK_ENCRYPT_CHANGE BT_EVT_BIT(7)
2611#define BT_EVT_MASK_REMOTE_FEATURES BT_EVT_BIT(10)
2612#define BT_EVT_MASK_REMOTE_VERSION_INFO BT_EVT_BIT(11)
2613#define BT_EVT_MASK_HARDWARE_ERROR BT_EVT_BIT(15)
2614#define BT_EVT_MASK_ROLE_CHANGE BT_EVT_BIT(17)
2615#define BT_EVT_MASK_PIN_CODE_REQ BT_EVT_BIT(21)
2616#define BT_EVT_MASK_LINK_KEY_REQ BT_EVT_BIT(22)
2617#define BT_EVT_MASK_LINK_KEY_NOTIFY BT_EVT_BIT(23)
2618#define BT_EVT_MASK_DATA_BUFFER_OVERFLOW BT_EVT_BIT(25)
2619#define BT_EVT_MASK_INQUIRY_RESULT_WITH_RSSI BT_EVT_BIT(33)
2620#define BT_EVT_MASK_REMOTE_EXT_FEATURES BT_EVT_BIT(34)
2621#define BT_EVT_MASK_SYNC_CONN_COMPLETE BT_EVT_BIT(43)
2622#define BT_EVT_MASK_EXTENDED_INQUIRY_RESULT BT_EVT_BIT(46)
2623#define BT_EVT_MASK_ENCRYPT_KEY_REFRESH_COMPLETE BT_EVT_BIT(47)
2624#define BT_EVT_MASK_IO_CAPA_REQ BT_EVT_BIT(48)
2625#define BT_EVT_MASK_IO_CAPA_RESP BT_EVT_BIT(49)
2626#define BT_EVT_MASK_USER_CONFIRM_REQ BT_EVT_BIT(50)
2627#define BT_EVT_MASK_USER_PASSKEY_REQ BT_EVT_BIT(51)
2628#define BT_EVT_MASK_SSP_COMPLETE BT_EVT_BIT(53)
2629#define BT_EVT_MASK_USER_PASSKEY_NOTIFY BT_EVT_BIT(58)
2630#define BT_EVT_MASK_LE_META_EVENT BT_EVT_BIT(61)
2633#define BT_EVT_MASK_NUM_COMPLETE_DATA_BLOCKS BT_EVT_BIT(8)
2634#define BT_EVT_MASK_TRIGG_CLOCK_CAPTURE BT_EVT_BIT(14)
2635#define BT_EVT_MASK_SYNCH_TRAIN_COMPLETE BT_EVT_BIT(15)
2636#define BT_EVT_MASK_SYNCH_TRAIN_RX BT_EVT_BIT(16)
2637#define BT_EVT_MASK_CL_PER_BC_RX BT_EVT_BIT(17)
2638#define BT_EVT_MASK_CL_PER_BC_TIMEOUT BT_EVT_BIT(18)
2639#define BT_EVT_MASK_TRUNC_PAGE_COMPLETE BT_EVT_BIT(19)
2640#define BT_EVT_MASK_PER_PAGE_RSP_TIMEOUT BT_EVT_BIT(20)
2641#define BT_EVT_MASK_CL_PER_BC_CH_MAP_CHANGE BT_EVT_BIT(21)
2642#define BT_EVT_MASK_INQUIRY_RSP_NOT BT_EVT_BIT(22)
2643#define BT_EVT_MASK_AUTH_PAYLOAD_TIMEOUT_EXP BT_EVT_BIT(23)
2644#define BT_EVT_MASK_SAM_STATUS_CHANGE BT_EVT_BIT(24)
2646#define BT_EVT_MASK_LE_CONN_COMPLETE BT_EVT_BIT(0)
2647#define BT_EVT_MASK_LE_ADVERTISING_REPORT BT_EVT_BIT(1)
2648#define BT_EVT_MASK_LE_CONN_UPDATE_COMPLETE BT_EVT_BIT(2)
2649#define BT_EVT_MASK_LE_REMOTE_FEAT_COMPLETE BT_EVT_BIT(3)
2650#define BT_EVT_MASK_LE_LTK_REQUEST BT_EVT_BIT(4)
2651#define BT_EVT_MASK_LE_CONN_PARAM_REQ BT_EVT_BIT(5)
2652#define BT_EVT_MASK_LE_DATA_LEN_CHANGE BT_EVT_BIT(6)
2653#define BT_EVT_MASK_LE_P256_PUBLIC_KEY_COMPLETE BT_EVT_BIT(7)
2654#define BT_EVT_MASK_LE_GENERATE_DHKEY_COMPLETE BT_EVT_BIT(8)
2655#define BT_EVT_MASK_LE_ENH_CONN_COMPLETE BT_EVT_BIT(9)
2656#define BT_EVT_MASK_LE_DIRECT_ADV_REPORT BT_EVT_BIT(10)
2657#define BT_EVT_MASK_LE_PHY_UPDATE_COMPLETE BT_EVT_BIT(11)
2658#define BT_EVT_MASK_LE_EXT_ADVERTISING_REPORT BT_EVT_BIT(12)
2659#define BT_EVT_MASK_LE_PER_ADV_SYNC_ESTABLISHED BT_EVT_BIT(13)
2660#define BT_EVT_MASK_LE_PER_ADVERTISING_REPORT BT_EVT_BIT(14)
2661#define BT_EVT_MASK_LE_PER_ADV_SYNC_LOST BT_EVT_BIT(15)
2662#define BT_EVT_MASK_LE_SCAN_TIMEOUT BT_EVT_BIT(16)
2663#define BT_EVT_MASK_LE_ADV_SET_TERMINATED BT_EVT_BIT(17)
2664#define BT_EVT_MASK_LE_SCAN_REQ_RECEIVED BT_EVT_BIT(18)
2665#define BT_EVT_MASK_LE_CHAN_SEL_ALGO BT_EVT_BIT(19)
2666#define BT_EVT_MASK_LE_CONNECTIONLESS_IQ_REPORT BT_EVT_BIT(21)
2667#define BT_EVT_MASK_LE_CONNECTION_IQ_REPORT BT_EVT_BIT(22)
2668#define BT_EVT_MASK_LE_CTE_REQUEST_FAILED BT_EVT_BIT(23)
2669#define BT_EVT_MASK_LE_PAST_RECEIVED BT_EVT_BIT(23)
2670#define BT_EVT_MASK_LE_CIS_ESTABLISHED BT_EVT_BIT(24)
2671#define BT_EVT_MASK_LE_CIS_REQ BT_EVT_BIT(25)
2672#define BT_EVT_MASK_LE_BIG_COMPLETE BT_EVT_BIT(26)
2673#define BT_EVT_MASK_LE_BIG_TERMINATED BT_EVT_BIT(27)
2674#define BT_EVT_MASK_LE_BIG_SYNC_ESTABLISHED BT_EVT_BIT(28)
2675#define BT_EVT_MASK_LE_BIG_SYNC_LOST BT_EVT_BIT(29)
2676#define BT_EVT_MASK_LE_REQ_PEER_SCA_COMPLETE BT_EVT_BIT(30)
2677#define BT_EVT_MASK_LE_PATH_LOSS_THRESHOLD BT_EVT_BIT(31)
2678#define BT_EVT_MASK_LE_TRANSMIT_POWER_REPORTING BT_EVT_BIT(32)
2679#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.
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:2769
Bluetooth Host Control Interface status codes.
__UINT32_TYPE__ uint32_t
Definition: stdint.h:60
__UINT64_TYPE__ uint64_t
Definition: stdint.h:61
__UINT8_TYPE__ uint8_t
Definition: stdint.h:58
__UINT16_TYPE__ uint16_t
Definition: stdint.h:59
__INT8_TYPE__ int8_t
Definition: stdint.h:42
__INT16_TYPE__ int16_t
Definition: stdint.h:43
uint16_t handle
Definition: hci.h:59
uint16_t len
Definition: hci.h:60
uint8_t cis_id
Definition: hci.h:1764
uint16_t c_sdu
Definition: hci.h:1766
uint8_t c_phy
Definition: hci.h:1770
uint8_t p_phy
Definition: hci.h:1771
uint16_t p_pdu
Definition: hci.h:1769
uint8_t p_bn
Definition: hci.h:1773
uint8_t nse
Definition: hci.h:1765
uint16_t c_pdu
Definition: hci.h:1768
uint8_t c_bn
Definition: hci.h:1772
uint16_t p_sdu
Definition: hci.h:1767
uint8_t p_phy
Definition: hci.h:1737
uint8_t c_phy
Definition: hci.h:1736
uint8_t cis_id
Definition: hci.h:1733
uint16_t c_sdu
Definition: hci.h:1734
uint8_t c_rtn
Definition: hci.h:1738
uint8_t p_rtn
Definition: hci.h:1739
uint16_t p_sdu
Definition: hci.h:1735
uint16_t acl_handle
Definition: hci.h:1800
uint16_t cis_handle
Definition: hci.h:1799
uint16_t opcode
Definition: hci.h:105
uint8_t param_len
Definition: hci.h:106
uint8_t length
Definition: hci.h:758
uint8_t data[0]
Definition: hci.h:759
uint8_t role
Definition: hci.h:339
bt_addr_t bdaddr
Definition: hci.h:338
uint16_t max_latency
Definition: hci.h:358
uint32_t tx_bandwidth
Definition: hci.h:356
bt_addr_t bdaddr
Definition: hci.h:355
uint16_t pkt_type
Definition: hci.h:361
uint8_t retrans_effort
Definition: hci.h:360
uint32_t rx_bandwidth
Definition: hci.h:357
uint16_t content_format
Definition: hci.h:359
uint16_t handle
Definition: hci.h:403
uint16_t vs_codec_id
Definition: hci.h:748
uint16_t company_id
Definition: hci.h:747
uint8_t coding_format
Definition: hci.h:746
bt_addr_t bdaddr
Definition: hci.h:329
uint8_t pscan_rep_mode
Definition: hci.h:315
uint16_t packet_type
Definition: hci.h:314
bt_addr_t bdaddr
Definition: hci.h:313
uint8_t allow_role_switch
Definition: hci.h:318
uint16_t clock_offset
Definition: hci.h:317
uint8_t reserved
Definition: hci.h:316
uint8_t reason
Definition: hci.h:324
uint16_t handle
Definition: hci.h:323
uint16_t acl_mtu
Definition: hci.h:527
uint8_t sco_mtu
Definition: hci.h:528
uint16_t acl_pkts
Definition: hci.h:529
uint16_t sco_pkts
Definition: hci.h:530
struct bt_hci_handle_count h[0]
Definition: hci.h:541
uint8_t num_handles
Definition: hci.h:540
uint8_t reason
Definition: hci.h:477
bt_addr_t bdaddr
Definition: hci.h:476
uint8_t capability
Definition: hci.h:448
uint8_t authentication
Definition: hci.h:450
uint8_t oob_data
Definition: hci.h:449
bt_addr_t bdaddr
Definition: hci.h:447
uint16_t handle
Definition: hci.h:1820
bt_addr_le_t addr
Definition: hci.h:950
uint8_t sid
Definition: hci.h:1461
bt_addr_le_t addr
Definition: hci.h:1460
bt_addr_le_t peer_id_addr
Definition: hci.h:1126
uint8_t local_irk[16]
Definition: hci.h:1128
uint8_t peer_irk[16]
Definition: hci.h:1127
uint8_t bcode[16]
Definition: hci.h:1881
uint8_t mse
Definition: hci.h:1882
uint8_t encryption
Definition: hci.h:1880
uint16_t sync_timeout
Definition: hci.h:1883
uint8_t big_handle
Definition: hci.h:1878
uint8_t bis[0]
Definition: hci.h:1885
uint16_t sync_handle
Definition: hci.h:1879
uint8_t num_bis
Definition: hci.h:1884
uint8_t big_handle
Definition: hci.h:1890
uint8_t cte_request_interval
Definition: hci.h:1600
uint8_t requested_cte_length
Definition: hci.h:1601
uint8_t requested_cte_type
Definition: hci.h:1602
uint8_t enable
Definition: hci.h:1599
uint16_t handle
Definition: hci.h:1598
uint16_t handle
Definition: hci.h:1612
uint8_t enable
Definition: hci.h:1613
uint16_t handle
Definition: hci.h:1073
uint8_t reason
Definition: hci.h:1074
uint16_t interval_min
Definition: hci.h:1059
uint16_t min_ce_len
Definition: hci.h:1063
uint16_t latency
Definition: hci.h:1061
uint16_t max_ce_len
Definition: hci.h:1064
uint16_t handle
Definition: hci.h:1058
uint16_t interval_max
Definition: hci.h:1060
uint16_t timeout
Definition: hci.h:1062
uint16_t max_pdu
Definition: hci.h:1859
uint8_t pto
Definition: hci.h:1865
uint8_t sdu_interval[3]
Definition: hci.h:1855
uint8_t bcode[16]
Definition: hci.h:1867
uint8_t nse
Definition: hci.h:1857
uint8_t packing
Definition: hci.h:1861
uint8_t encryption
Definition: hci.h:1866
uint16_t iso_interval
Definition: hci.h:1856
uint8_t irc
Definition: hci.h:1864
uint8_t num_bis
Definition: hci.h:1854
uint8_t phy
Definition: hci.h:1860
uint8_t bn
Definition: hci.h:1863
uint16_t max_sdu
Definition: hci.h:1858
uint8_t big_handle
Definition: hci.h:1852
uint8_t framing
Definition: hci.h:1862
uint8_t adv_handle
Definition: hci.h:1853
uint16_t max_sdu
Definition: hci.h:1840
uint8_t bcode[16]
Definition: hci.h:1847
uint16_t max_latency
Definition: hci.h:1841
uint8_t rtn
Definition: hci.h:1842
uint8_t sdu_interval[3]
Definition: hci.h:1839
uint8_t framing
Definition: hci.h:1845
uint8_t encryption
Definition: hci.h:1846
uint8_t phy
Definition: hci.h:1843
uint8_t adv_handle
Definition: hci.h:1837
uint8_t packing
Definition: hci.h:1844
uint8_t num_bis
Definition: hci.h:1838
uint8_t big_handle
Definition: hci.h:1836
struct bt_hci_cis cis[0]
Definition: hci.h:1805
uint8_t num_cis
Definition: hci.h:1804
uint16_t scan_interval
Definition: hci.h:925
uint8_t filter_policy
Definition: hci.h:927
uint16_t min_ce_len
Definition: hci.h:934
uint16_t conn_latency
Definition: hci.h:932
uint16_t max_ce_len
Definition: hci.h:935
uint8_t own_addr_type
Definition: hci.h:929
uint16_t conn_interval_min
Definition: hci.h:930
uint16_t conn_interval_max
Definition: hci.h:931
bt_addr_le_t peer_addr
Definition: hci.h:928
uint16_t scan_window
Definition: hci.h:926
uint16_t supervision_timeout
Definition: hci.h:933
uint16_t timeout
Definition: hci.h:1701
uint16_t skip
Definition: hci.h:1700
uint8_t mode
Definition: hci.h:1699
uint8_t cte_type
Definition: hci.h:1702
uint8_t key[16]
Definition: hci.h:991
uint8_t plaintext[16]
Definition: hci.h:992
uint8_t rx_ch
Definition: hci.h:1231
uint8_t mod_index
Definition: hci.h:1233
uint8_t phy
Definition: hci.h:1232
uint8_t tx_ch
Definition: hci.h:1242
uint8_t phy
Definition: hci.h:1245
uint8_t pkt_payload
Definition: hci.h:1244
uint8_t test_data_len
Definition: hci.h:1243
uint8_t filter_policy
Definition: hci.h:1425
uint8_t own_addr_type
Definition: hci.h:1426
bt_addr_le_t peer_addr
Definition: hci.h:1427
struct bt_hci_ext_conn_phy p[0]
Definition: hci.h:1429
uint8_t phys
Definition: hci.h:1428
uint8_t key_type
Definition: hci.h:1120
uint8_t key[64]
Definition: hci.h:1119
uint8_t key[64]
Definition: hci.h:1109
uint8_t payload_type
Definition: hci.h:1944
uint16_t handle
Definition: hci.h:1943
uint16_t handle
Definition: hci.h:1967
uint8_t payload_type
Definition: hci.h:1933
uint16_t handle
Definition: hci.h:1932
uint16_t handle
Definition: hci.h:1025
uint8_t ltk[16]
Definition: hci.h:1016
uint16_t handle
Definition: hci.h:1015
uint8_t cte_type
Definition: hci.h:1689
uint16_t skip
Definition: hci.h:1687
uint16_t conn_handle
Definition: hci.h:1685
uint8_t mode
Definition: hci.h:1686
uint16_t timeout
Definition: hci.h:1688
bt_addr_le_t addr
Definition: hci.h:1445
uint16_t sync_timeout
Definition: hci.h:1447
uint16_t skip
Definition: hci.h:1446
uint8_t cte_type
Definition: hci.h:1448
uint8_t sid
Definition: hci.h:1444
uint8_t options
Definition: hci.h:1443
uint16_t conn_handle
Definition: hci.h:1663
uint16_t service_data
Definition: hci.h:1664
uint8_t adv_handle
Definition: hci.h:1665
uint16_t service_data
Definition: hci.h:1652
uint16_t sync_handle
Definition: hci.h:1653
uint16_t conn_handle
Definition: hci.h:1651
uint16_t handle
Definition: hci.h:1455
uint16_t handle
Definition: hci.h:976
uint16_t handle
Definition: hci.h:1990
uint16_t handle
Definition: hci.h:1720
bt_addr_le_t peer_id_addr
Definition: hci.h:1155
bt_addr_le_t peer_id_addr
Definition: hci.h:1146
uint16_t handle
Definition: hci.h:1190
uint16_t handle
Definition: hci.h:986
uint16_t handle
Definition: hci.h:1954
uint16_t handle
Definition: hci.h:1825
uint8_t reason
Definition: hci.h:1826
bt_addr_le_t addr
Definition: hci.h:955
uint8_t sid
Definition: hci.h:1467
bt_addr_le_t addr
Definition: hci.h:1466
bt_addr_le_t peer_id_addr
Definition: hci.h:1133
uint8_t handle
Definition: hci.h:1349
uint8_t cig_id
Definition: hci.h:1810
uint8_t path_dir
Definition: hci.h:1922
uint16_t handle
Definition: hci.h:1921
uint16_t handle
Definition: hci.h:1900
uint8_t rx_ch
Definition: hci.h:1040
uint8_t enable
Definition: hci.h:1167
uint8_t len
Definition: hci.h:870
uint8_t data[31]
Definition: hci.h:871
uint8_t enable
Definition: hci.h:885
uint8_t channel_map
Definition: hci.h:858
uint16_t min_interval
Definition: hci.h:853
uint8_t filter_policy
Definition: hci.h:859
uint8_t type
Definition: hci.h:855
uint16_t max_interval
Definition: hci.h:854
bt_addr_le_t direct_addr
Definition: hci.h:857
uint8_t own_addr_type
Definition: hci.h:856
bt_addr_t bdaddr
Definition: hci.h:1251
uint8_t handle
Definition: hci.h:1250
uint8_t p_interval[3]
Definition: hci.h:1779
uint8_t cig_id
Definition: hci.h:1777
uint8_t sca
Definition: hci.h:1783
uint8_t c_ft
Definition: hci.h:1780
uint8_t framing
Definition: hci.h:1785
uint8_t num_cis
Definition: hci.h:1786
struct bt_hci_cis_params_test cis[0]
Definition: hci.h:1787
uint8_t packing
Definition: hci.h:1784
uint8_t c_interval[3]
Definition: hci.h:1778
uint16_t iso_interval
Definition: hci.h:1782
uint8_t p_ft
Definition: hci.h:1781
uint8_t c_interval[3]
Definition: hci.h:1744
uint8_t sca
Definition: hci.h:1746
uint8_t p_interval[3]
Definition: hci.h:1745
uint8_t packing
Definition: hci.h:1747
uint8_t cig_id
Definition: hci.h:1743
uint16_t p_latency
Definition: hci.h:1750
uint8_t framing
Definition: hci.h:1748
struct bt_hci_cis_params cis[0]
Definition: hci.h:1752
uint8_t num_cis
Definition: hci.h:1751
uint16_t c_latency
Definition: hci.h:1749
uint8_t max_sampled_cte
Definition: hci.h:1547
uint8_t switch_pattern_len
Definition: hci.h:1548
uint8_t ant_ids[0]
Definition: hci.h:1549
uint16_t sync_handle
Definition: hci.h:1544
uint8_t slot_durations
Definition: hci.h:1546
uint8_t sampling_enable
Definition: hci.h:1545
uint8_t cte_enable
Definition: hci.h:1532
uint8_t handle
Definition: hci.h:1531
uint8_t ant_ids[0]
Definition: hci.h:1526
uint8_t switch_pattern_len
Definition: hci.h:1525
uint8_t cte_type
Definition: hci.h:1523
uint8_t handle
Definition: hci.h:1521
uint8_t cte_len
Definition: hci.h:1522
uint8_t cte_count
Definition: hci.h:1524
uint8_t ant_ids[0]
Definition: hci.h:1563
uint8_t sampling_enable
Definition: hci.h:1560
uint8_t slot_durations
Definition: hci.h:1561
uint16_t handle
Definition: hci.h:1559
uint8_t switch_pattern_len
Definition: hci.h:1562
uint8_t switch_pattern_len
Definition: hci.h:1582
uint8_t cte_types
Definition: hci.h:1581
uint8_t ant_ids[0]
Definition: hci.h:1583
uint16_t handle
Definition: hci.h:1580
uint16_t tx_time
Definition: hci.h:1085
uint16_t handle
Definition: hci.h:1083
uint16_t tx_octets
Definition: hci.h:1084
uint8_t tx_phys
Definition: hci.h:1209
uint8_t rx_phys
Definition: hci.h:1210
uint8_t all_phys
Definition: hci.h:1208
uint8_t events[8]
Definition: hci.h:809
uint8_t handle
Definition: hci.h:1306
uint8_t data[251]
Definition: hci.h:1310
uint8_t op
Definition: hci.h:1307
uint8_t len
Definition: hci.h:1309
uint8_t frag_pref
Definition: hci.h:1308
struct bt_hci_ext_adv_set s[0]
Definition: hci.h:1332
uint8_t set_num
Definition: hci.h:1331
uint8_t enable
Definition: hci.h:1330
uint8_t prim_adv_phy
Definition: hci.h:1282
uint8_t prim_max_interval[3]
Definition: hci.h:1276
uint8_t filter_policy
Definition: hci.h:1280
uint8_t own_addr_type
Definition: hci.h:1278
uint16_t props
Definition: hci.h:1274
uint8_t sec_adv_max_skip
Definition: hci.h:1283
int8_t tx_power
Definition: hci.h:1281
uint8_t handle
Definition: hci.h:1273
bt_addr_le_t peer_addr
Definition: hci.h:1279
uint8_t prim_min_interval[3]
Definition: hci.h:1275
uint8_t sec_adv_phy
Definition: hci.h:1284
uint8_t prim_channel_map
Definition: hci.h:1277
uint8_t scan_req_notify_enable
Definition: hci.h:1286
uint8_t sid
Definition: hci.h:1285
uint8_t enable
Definition: hci.h:1406
uint8_t filter_dup
Definition: hci.h:1407
uint16_t period
Definition: hci.h:1409
uint16_t duration
Definition: hci.h:1408
uint8_t own_addr_type
Definition: hci.h:1395
uint8_t filter_policy
Definition: hci.h:1396
uint8_t phys
Definition: hci.h:1397
struct bt_hci_ext_scan_phy p[0]
Definition: hci.h:1398
uint8_t op
Definition: hci.h:1316
uint8_t len
Definition: hci.h:1318
uint8_t handle
Definition: hci.h:1315
uint8_t data[251]
Definition: hci.h:1319
uint8_t frag_pref
Definition: hci.h:1317
uint8_t ch_map[5]
Definition: hci.h:971
uint8_t bit_value
Definition: hci.h:1981
uint8_t bit_number
Definition: hci.h:1980
uint8_t handle
Definition: hci.h:1371
uint8_t op
Definition: hci.h:1372
uint8_t data[251]
Definition: hci.h:1374
uint8_t len
Definition: hci.h:1373
uint8_t handle
Definition: hci.h:1380
uint8_t enable
Definition: hci.h:1379
uint16_t max_interval
Definition: hci.h:1358
uint8_t handle
Definition: hci.h:1356
uint16_t props
Definition: hci.h:1359
uint16_t min_interval
Definition: hci.h:1357
uint16_t handle
Definition: hci.h:1645
uint8_t enable
Definition: hci.h:1646
uint8_t tx_phys
Definition: hci.h:1221
uint16_t phy_opts
Definition: hci.h:1223
uint8_t rx_phys
Definition: hci.h:1222
uint16_t handle
Definition: hci.h:1219
uint8_t all_phys
Definition: hci.h:1220
bt_addr_le_t id_addr
Definition: hci.h:1503
uint8_t mode
Definition: hci.h:1504
bt_addr_t bdaddr
Definition: hci.h:827
uint16_t rpa_timeout
Definition: hci.h:1172
uint8_t enable
Definition: hci.h:915
uint8_t filter_dup
Definition: hci.h:916
uint16_t window
Definition: hci.h:901
uint8_t addr_type
Definition: hci.h:902
uint8_t filter_policy
Definition: hci.h:903
uint8_t scan_type
Definition: hci.h:899
uint16_t interval
Definition: hci.h:900
uint8_t len
Definition: hci.h:876
uint8_t data[31]
Definition: hci.h:877
uint16_t handle
Definition: hci.h:1905
uint8_t codec_config_len
Definition: hci.h:1910
uint8_t controller_delay[3]
Definition: hci.h:1909
struct bt_hci_cp_codec_id codec_id
Definition: hci.h:1908
uint8_t path_id
Definition: hci.h:1907
uint8_t path_dir
Definition: hci.h:1906
uint8_t codec_config[0]
Definition: hci.h:1911
uint16_t handle
Definition: hci.h:1007
uint16_t ediv
Definition: hci.h:1009
uint8_t ltk[16]
Definition: hci.h:1010
uint64_t rand
Definition: hci.h:1008
uint8_t reason
Definition: hci.h:1873
uint8_t big_handle
Definition: hci.h:1872
uint8_t test_data_len
Definition: hci.h:1046
uint8_t tx_ch
Definition: hci.h:1045
uint8_t pkt_payload
Definition: hci.h:1047
uint16_t max_tx_octets
Definition: hci.h:1101
uint16_t max_tx_time
Definition: hci.h:1102
int16_t rx_path_comp
Definition: hci.h:1495
int16_t tx_path_comp
Definition: hci.h:1494
bt_addr_t bdaddr
Definition: hci.h:378
uint8_t link_key[16]
Definition: hci.h:373
bt_addr_t bdaddr
Definition: hci.h:372
bt_addr_t bdaddr
Definition: hci.h:394
bt_addr_t bdaddr
Definition: hci.h:383
uint8_t pin_len
Definition: hci.h:384
uint8_t pin_code[16]
Definition: hci.h:385
uint16_t handle
Definition: hci.h:572
uint8_t direction
Definition: hci.h:755
uint8_t transport
Definition: hci.h:754
struct bt_hci_cp_codec_id codec_id
Definition: hci.h:753
struct bt_hci_cp_codec_id codec_id
Definition: hci.h:770
uint8_t direction
Definition: hci.h:772
uint8_t transport
Definition: hci.h:771
uint8_t codec_config[0]
Definition: hci.h:774
uint8_t codec_config_len
Definition: hci.h:773
uint16_t handle
Definition: hci.h:797
uint8_t page
Definition: hci.h:637
uint8_t page
Definition: hci.h:437
uint16_t handle
Definition: hci.h:436
uint16_t handle
Definition: hci.h:431
uint16_t handle
Definition: hci.h:442
uint8_t type
Definition: hci.h:509
uint16_t handle
Definition: hci.h:508
uint8_t reason
Definition: hci.h:367
bt_addr_t bdaddr
Definition: hci.h:366
bt_addr_t bdaddr
Definition: hci.h:422
bt_addr_t bdaddr
Definition: hci.h:414
uint16_t clock_offset
Definition: hci.h:417
uint8_t reserved
Definition: hci.h:416
uint8_t pscan_rep_mode
Definition: hci.h:415
uint16_t handle
Definition: hci.h:408
uint8_t encrypt
Definition: hci.h:409
uint8_t flow_enable
Definition: hci.h:522
uint8_t events_page_2[8]
Definition: hci.h:556
uint8_t events[8]
Definition: hci.h:482
uint32_t rx_bandwidth
Definition: hci.h:346
uint16_t content_format
Definition: hci.h:348
uint16_t max_latency
Definition: hci.h:347
uint8_t retrans_effort
Definition: hci.h:349
uint16_t pkt_type
Definition: hci.h:350
uint32_t tx_bandwidth
Definition: hci.h:345
uint16_t handle
Definition: hci.h:344
bt_addr_t bdaddr
Definition: hci.h:456
bt_addr_t bdaddr
Definition: hci.h:471
bt_addr_t bdaddr
Definition: hci.h:465
uint32_t passkey
Definition: hci.h:466
uint16_t auth_payload_timeout
Definition: hci.h:584
uint16_t handle
Definition: hci.h:583
uint8_t class_of_device[3]
Definition: hci.h:501
uint8_t mode
Definition: hci.h:546
uint8_t le
Definition: hci.h:561
uint8_t simul
Definition: hci.h:562
uint8_t sc_support
Definition: hci.h:567
uint8_t mode
Definition: hci.h:551
uint16_t handle
Definition: hci.h:2041
uint8_t status
Definition: hci.h:2040
uint16_t handle
Definition: hci.h:2239
uint8_t status
Definition: hci.h:2081
uint16_t opcode
Definition: hci.h:2077
uint8_t ncmd
Definition: hci.h:2076
uint16_t opcode
Definition: hci.h:2088
uint8_t ncmd
Definition: hci.h:2087
uint8_t status
Definition: hci.h:2086
uint8_t status
Definition: hci.h:2017
bt_addr_t bdaddr
Definition: hci.h:2019
uint8_t encr_enabled
Definition: hci.h:2021
uint16_t handle
Definition: hci.h:2018
uint8_t link_type
Definition: hci.h:2020
bt_addr_t bdaddr
Definition: hci.h:2026
uint8_t dev_class[3]
Definition: hci.h:2027
uint8_t link_type
Definition: hci.h:2028
uint8_t link_type
Definition: hci.h:2143
uint8_t reason
Definition: hci.h:2035
uint16_t handle
Definition: hci.h:2034
uint8_t status
Definition: hci.h:2033
uint8_t encrypt
Definition: hci.h:2055
uint16_t handle
Definition: hci.h:2054
uint8_t status
Definition: hci.h:2053
uint16_t handle
Definition: hci.h:2193
uint8_t status
Definition: hci.h:2192
uint8_t eir[240]
Definition: hci.h:2187
int8_t rssi
Definition: hci.h:2186
uint16_t clock_offset
Definition: hci.h:2185
uint8_t num_reports
Definition: hci.h:2180
bt_addr_t addr
Definition: hci.h:2181
uint8_t cod[3]
Definition: hci.h:2184
uint8_t reserved
Definition: hci.h:2183
uint8_t pscan_rep_mode
Definition: hci.h:2182
uint8_t hardware_code
Definition: hci.h:2093
uint8_t len
Definition: hci.h:38
uint8_t evt
Definition: hci.h:37
uint8_t status
Definition: hci.h:2012
bt_addr_t bdaddr
Definition: hci.h:2198
uint8_t authentication
Definition: hci.h:2206
uint8_t capability
Definition: hci.h:2204
uint8_t oob_data
Definition: hci.h:2205
bt_addr_t bdaddr
Definition: hci.h:2203
uint8_t num_completed_ext_adv_evts
Definition: hci.h:2423
uint8_t status
Definition: hci.h:2420
uint16_t conn_handle
Definition: hci.h:2422
uint8_t adv_handle
Definition: hci.h:2421
uint8_t length
Definition: hci.h:2263
bt_addr_le_t addr
Definition: hci.h:2262
uint8_t evt_type
Definition: hci.h:2261
uint8_t data[0]
Definition: hci.h:2264
struct bt_hci_evt_le_advertising_info adv_info[0]
Definition: hci.h:2268
uint8_t num_reports
Definition: hci.h:2267
uint8_t irc
Definition: hci.h:2542
uint16_t iso_interval
Definition: hci.h:2544
uint8_t big_handle
Definition: hci.h:2535
uint8_t bn
Definition: hci.h:2540
uint8_t latency[3]
Definition: hci.h:2537
uint8_t sync_delay[3]
Definition: hci.h:2536
uint8_t pto
Definition: hci.h:2541
uint16_t max_pdu
Definition: hci.h:2543
uint8_t num_bis
Definition: hci.h:2545
uint8_t phy
Definition: hci.h:2538
uint8_t status
Definition: hci.h:2534
uint8_t nse
Definition: hci.h:2539
uint16_t handle[0]
Definition: hci.h:2546
uint16_t max_pdu
Definition: hci.h:2564
uint8_t num_bis
Definition: hci.h:2566
uint8_t big_handle
Definition: hci.h:2558
uint8_t nse
Definition: hci.h:2560
uint8_t bn
Definition: hci.h:2561
uint16_t handle[0]
Definition: hci.h:2567
uint16_t iso_interval
Definition: hci.h:2565
uint8_t pto
Definition: hci.h:2562
uint8_t status
Definition: hci.h:2557
uint8_t latency[3]
Definition: hci.h:2559
uint8_t irc
Definition: hci.h:2563
uint8_t reason
Definition: hci.h:2573
uint8_t big_handle
Definition: hci.h:2572
uint8_t reason
Definition: hci.h:2552
uint8_t big_handle
Definition: hci.h:2551
uint16_t max_sdu
Definition: hci.h:2594
uint16_t max_pdu
Definition: hci.h:2592
uint8_t phy
Definition: hci.h:2595
uint8_t sdu_interval[3]
Definition: hci.h:2593
uint16_t sync_handle
Definition: hci.h:2585
uint8_t irc
Definition: hci.h:2591
uint8_t framing
Definition: hci.h:2596
uint8_t bn
Definition: hci.h:2589
uint8_t nse
Definition: hci.h:2587
uint8_t encryption
Definition: hci.h:2597
uint8_t num_bis
Definition: hci.h:2586
uint16_t iso_interval
Definition: hci.h:2588
uint8_t pto
Definition: hci.h:2590
uint16_t handle
Definition: hci.h:2437
uint8_t chan_sel_algo
Definition: hci.h:2438
uint16_t interval
Definition: hci.h:2521
uint8_t p_ft
Definition: hci.h:2518
uint8_t p_phy
Definition: hci.h:2513
uint8_t status
Definition: hci.h:2506
uint8_t c_phy
Definition: hci.h:2512
uint8_t nse
Definition: hci.h:2514
uint8_t c_latency[3]
Definition: hci.h:2510
uint16_t conn_handle
Definition: hci.h:2507
uint8_t c_bn
Definition: hci.h:2515
uint8_t cig_sync_delay[3]
Definition: hci.h:2508
uint8_t p_bn
Definition: hci.h:2516
uint8_t c_ft
Definition: hci.h:2517
uint8_t cis_sync_delay[3]
Definition: hci.h:2509
uint16_t p_max_pdu
Definition: hci.h:2520
uint16_t c_max_pdu
Definition: hci.h:2519
uint8_t p_latency[3]
Definition: hci.h:2511
uint8_t cis_id
Definition: hci.h:2529
uint8_t cig_id
Definition: hci.h:2528
uint16_t cis_handle
Definition: hci.h:2527
uint16_t acl_handle
Definition: hci.h:2526
uint8_t clock_accuracy
Definition: hci.h:2254
uint16_t supv_timeout
Definition: hci.h:2253
uint16_t handle
Definition: hci.h:2248
uint8_t role
Definition: hci.h:2249
uint8_t status
Definition: hci.h:2247
bt_addr_le_t peer_addr
Definition: hci.h:2250
uint16_t latency
Definition: hci.h:2252
uint16_t interval
Definition: hci.h:2251
uint16_t interval_max
Definition: hci.h:2298
uint16_t handle
Definition: hci.h:2296
uint16_t interval_min
Definition: hci.h:2297
uint16_t latency
Definition: hci.h:2299
uint16_t timeout
Definition: hci.h:2300
uint16_t interval
Definition: hci.h:2275
uint16_t handle
Definition: hci.h:2274
uint16_t supv_timeout
Definition: hci.h:2277
uint8_t status
Definition: hci.h:2273
uint16_t latency
Definition: hci.h:2276
uint8_t cte_type
Definition: hci.h:2477
uint8_t rssi_ant_id
Definition: hci.h:2476
uint16_t conn_evt_counter
Definition: hci.h:2480
uint16_t conn_handle
Definition: hci.h:2472
int16_t rssi
Definition: hci.h:2475
struct bt_hci_le_iq_sample sample[0]
Definition: hci.h:2482
uint8_t slot_durations
Definition: hci.h:2478
uint8_t sample_count
Definition: hci.h:2481
uint8_t rx_phy
Definition: hci.h:2473
uint8_t data_chan_idx
Definition: hci.h:2474
uint8_t packet_status
Definition: hci.h:2479
int16_t rssi
Definition: hci.h:2460
struct bt_hci_le_iq_sample sample[0]
Definition: hci.h:2467
uint16_t sync_handle
Definition: hci.h:2458
uint8_t sample_count
Definition: hci.h:2466
uint8_t cte_type
Definition: hci.h:2462
uint8_t slot_durations
Definition: hci.h:2463
uint8_t packet_status
Definition: hci.h:2464
uint16_t per_evt_counter
Definition: hci.h:2465
uint8_t chan_idx
Definition: hci.h:2459
uint8_t rssi_ant_id
Definition: hci.h:2461
uint8_t status
Definition: hci.h:2487
uint16_t conn_handle
Definition: hci.h:2488
uint16_t max_rx_octets
Definition: hci.h:2308
uint16_t handle
Definition: hci.h:2305
uint16_t max_tx_time
Definition: hci.h:2307
uint16_t max_rx_time
Definition: hci.h:2309
uint16_t max_tx_octets
Definition: hci.h:2306
int8_t rssi
Definition: hci.h:2343
bt_addr_le_t addr
Definition: hci.h:2341
bt_addr_le_t dir_addr
Definition: hci.h:2342
uint8_t evt_type
Definition: hci.h:2340
struct bt_hci_evt_le_direct_adv_info direct_adv_info[0]
Definition: hci.h:2347
uint8_t num_reports
Definition: hci.h:2346
uint16_t handle
Definition: hci.h:2327
bt_addr_le_t peer_addr
Definition: hci.h:2329
bt_addr_t peer_rpa
Definition: hci.h:2331
uint8_t clock_accuracy
Definition: hci.h:2335
uint16_t latency
Definition: hci.h:2333
uint16_t supv_timeout
Definition: hci.h:2334
bt_addr_t local_rpa
Definition: hci.h:2330
uint16_t interval
Definition: hci.h:2332
uint8_t status
Definition: hci.h:2326
uint8_t role
Definition: hci.h:2328
uint16_t evt_type
Definition: hci.h:2372
uint8_t prim_phy
Definition: hci.h:2374
uint8_t length
Definition: hci.h:2381
bt_addr_le_t direct_addr
Definition: hci.h:2380
int8_t tx_power
Definition: hci.h:2377
uint8_t sid
Definition: hci.h:2376
int8_t rssi
Definition: hci.h:2378
uint16_t interval
Definition: hci.h:2379
uint8_t data[0]
Definition: hci.h:2382
bt_addr_le_t addr
Definition: hci.h:2373
uint8_t sec_phy
Definition: hci.h:2375
uint8_t num_reports
Definition: hci.h:2385
struct bt_hci_evt_le_ext_advertising_info adv_info[0]
Definition: hci.h:2386
uint8_t status
Definition: hci.h:2320
uint8_t dhkey[32]
Definition: hci.h:2321
uint16_t ediv
Definition: hci.h:2291
uint64_t rand
Definition: hci.h:2290
uint16_t handle
Definition: hci.h:2289
uint8_t status
Definition: hci.h:2314
uint8_t key[64]
Definition: hci.h:2315
uint8_t clock_accuracy
Definition: hci.h:2501
uint8_t adv_sid
Definition: hci.h:2497
uint8_t status
Definition: hci.h:2493
uint16_t conn_handle
Definition: hci.h:2494
uint16_t sync_handle
Definition: hci.h:2496
bt_addr_le_t addr
Definition: hci.h:2498
uint16_t interval
Definition: hci.h:2500
uint16_t service_data
Definition: hci.h:2495
uint8_t phy
Definition: hci.h:2499
uint16_t handle
Definition: hci.h:2392
uint16_t interval
Definition: hci.h:2396
uint8_t status
Definition: hci.h:2391
uint8_t sid
Definition: hci.h:2393
uint8_t phy
Definition: hci.h:2395
bt_addr_le_t adv_addr
Definition: hci.h:2394
uint8_t clock_accuracy
Definition: hci.h:2397
uint16_t handle
Definition: hci.h:2413
uint8_t length
Definition: hci.h:2407
uint8_t data[0]
Definition: hci.h:2408
int8_t tx_power
Definition: hci.h:2403
uint8_t cte_type
Definition: hci.h:2405
uint8_t data_status
Definition: hci.h:2406
uint16_t handle
Definition: hci.h:2402
int8_t rssi
Definition: hci.h:2404
uint16_t handle
Definition: hci.h:2353
uint8_t status
Definition: hci.h:2352
uint8_t tx_phy
Definition: hci.h:2354
uint8_t rx_phy
Definition: hci.h:2355
uint8_t features[8]
Definition: hci.h:2284
uint8_t status
Definition: hci.h:2282
uint16_t handle
Definition: hci.h:2283
uint8_t status
Definition: hci.h:2578
uint8_t sca
Definition: hci.h:2580
uint16_t handle
Definition: hci.h:2579
uint8_t handle
Definition: hci.h:2428
bt_addr_le_t addr
Definition: hci.h:2429
bt_addr_t bdaddr
Definition: hci.h:2132
uint8_t link_key[16]
Definition: hci.h:2133
uint8_t key_type
Definition: hci.h:2134
bt_addr_t bdaddr
Definition: hci.h:2116
uint8_t num_handles
Definition: hci.h:2105
struct bt_hci_handle_count h[0]
Definition: hci.h:2106
bt_addr_t bdaddr
Definition: hci.h:2111
uint16_t handle
Definition: hci.h:2159
uint8_t features[8]
Definition: hci.h:2162
uint8_t status
Definition: hci.h:2158
uint8_t page
Definition: hci.h:2160
uint8_t max_page
Definition: hci.h:2161
uint8_t status
Definition: hci.h:2060
uint8_t features[8]
Definition: hci.h:2062
uint16_t handle
Definition: hci.h:2061
bt_addr_t bdaddr
Definition: hci.h:2047
uint8_t name[248]
Definition: hci.h:2048
uint8_t status
Definition: hci.h:2046
uint16_t subversion
Definition: hci.h:2071
uint16_t handle
Definition: hci.h:2068
uint8_t status
Definition: hci.h:2067
uint8_t version
Definition: hci.h:2069
uint16_t manufacturer
Definition: hci.h:2070
bt_addr_t bdaddr
Definition: hci.h:2099
uint8_t role
Definition: hci.h:2100
uint8_t status
Definition: hci.h:2098
uint8_t status
Definition: hci.h:2222
bt_addr_t bdaddr
Definition: hci.h:2223
uint8_t tx_interval
Definition: hci.h:2171
uint8_t air_mode
Definition: hci.h:2175
uint8_t retansmission_window
Definition: hci.h:2172
uint16_t rx_pkt_length
Definition: hci.h:2173
bt_addr_t bdaddr
Definition: hci.h:2169
uint16_t handle
Definition: hci.h:2168
uint8_t link_type
Definition: hci.h:2170
uint16_t tx_pkt_length
Definition: hci.h:2174
uint8_t status
Definition: hci.h:2167
bt_addr_t bdaddr
Definition: hci.h:2211
uint32_t passkey
Definition: hci.h:2212
uint32_t passkey
Definition: hci.h:2229
bt_addr_t bdaddr
Definition: hci.h:2228
bt_addr_t bdaddr
Definition: hci.h:2217
uint8_t max_ext_adv_evts
Definition: hci.h:1326
uint8_t handle
Definition: hci.h:1324
uint16_t duration
Definition: hci.h:1325
uint16_t max_ce_len
Definition: hci.h:1421
uint16_t scan_interval
Definition: hci.h:1414
uint16_t conn_interval_max
Definition: hci.h:1417
uint16_t conn_latency
Definition: hci.h:1418
uint16_t conn_interval_min
Definition: hci.h:1416
uint16_t supervision_timeout
Definition: hci.h:1419
uint16_t scan_window
Definition: hci.h:1415
uint16_t min_ce_len
Definition: hci.h:1420
uint16_t interval
Definition: hci.h:1386
uint8_t type
Definition: hci.h:1385
uint16_t window
Definition: hci.h:1387
uint16_t count
Definition: hci.h:535
uint16_t handle
Definition: hci.h:534
uint16_t sn
Definition: hci.h:87
uint16_t slen
Definition: hci.h:88
uint16_t len
Definition: hci.h:100
uint16_t handle
Definition: hci.h:99
uint32_t ts
Definition: hci.h:93
struct bt_hci_iso_data_hdr data
Definition: hci.h:94
int8_t q
Definition: hci.h:2454
int8_t i
Definition: hci.h:2453
uint8_t lap[3]
Definition: hci.h:304
uint8_t num_rsp
Definition: hci.h:306
uint8_t length
Definition: hci.h:305
uint8_t status
Definition: hci.h:332
bt_addr_t bdaddr
Definition: hci.h:333
uint8_t big_handle
Definition: hci.h:1895
uint8_t status
Definition: hci.h:1894
uint8_t status
Definition: hci.h:1606
uint16_t handle
Definition: hci.h:1607
uint8_t status
Definition: hci.h:1617
uint16_t handle
Definition: hci.h:1618
uint8_t status
Definition: hci.h:1077
uint16_t handle
Definition: hci.h:1078
uint8_t status
Definition: hci.h:1067
uint16_t handle
Definition: hci.h:1068
uint8_t status
Definition: hci.h:1706
uint8_t enc_data[16]
Definition: hci.h:996
uint8_t status
Definition: hci.h:995
uint8_t status
Definition: hci.h:1948
uint16_t handle
Definition: hci.h:1949
uint32_t missed_cnt
Definition: hci.h:1974
uint8_t status
Definition: hci.h:1971
uint16_t handle
Definition: hci.h:1972
uint32_t received_cnt
Definition: hci.h:1973
uint32_t failed_cnt
Definition: hci.h:1975
uint8_t status
Definition: hci.h:1937
uint16_t handle
Definition: hci.h:1938
uint8_t status
Definition: hci.h:1028
uint16_t handle
Definition: hci.h:1029
uint16_t handle
Definition: hci.h:1020
uint8_t status
Definition: hci.h:1019
uint8_t status
Definition: hci.h:1693
uint16_t conn_handle
Definition: hci.h:1694
uint16_t conn_handle
Definition: hci.h:1670
uint8_t status
Definition: hci.h:1669
uint16_t conn_handle
Definition: hci.h:1658
uint8_t status
Definition: hci.h:1657
uint8_t rand[8]
Definition: hci.h:1002
uint8_t status
Definition: hci.h:1001
uint8_t num_ant
Definition: hci.h:1638
uint8_t switch_sample_rates
Definition: hci.h:1637
uint8_t max_cte_len
Definition: hci.h:1640
uint8_t status
Definition: hci.h:1636
uint8_t max_switch_pattern_len
Definition: hci.h:1639
uint8_t acl_max_num
Definition: hci.h:1713
uint8_t status
Definition: hci.h:1711
uint16_t iso_max_len
Definition: hci.h:1714
uint8_t iso_max_num
Definition: hci.h:1715
uint16_t acl_max_len
Definition: hci.h:1712
uint8_t le_max_num
Definition: hci.h:816
uint16_t le_max_len
Definition: hci.h:815
uint8_t status
Definition: hci.h:814
uint8_t ch_map[5]
Definition: hci.h:981
uint8_t status
Definition: hci.h:979
uint16_t handle
Definition: hci.h:980
uint8_t status
Definition: hci.h:864
int8_t tx_power_level
Definition: hci.h:865
uint16_t max_tx_octets
Definition: hci.h:1095
uint8_t status
Definition: hci.h:1094
uint16_t max_tx_time
Definition: hci.h:1096
uint8_t status
Definition: hci.h:942
uint8_t fal_size
Definition: hci.h:943
uint32_t tx_last_subevent_packets
Definition: hci.h:1998
uint32_t tx_flushed_packets
Definition: hci.h:1997
uint32_t crc_error_packets
Definition: hci.h:2000
uint32_t duplicate_packets
Definition: hci.h:2002
uint32_t rx_unreceived_packets
Definition: hci.h:2001
uint32_t retransmitted_packets
Definition: hci.h:1999
uint16_t handle
Definition: hci.h:1995
uint32_t tx_unacked_packets
Definition: hci.h:1996
uint8_t status
Definition: hci.h:1994
uint8_t status
Definition: hci.h:1724
uint8_t offset[3]
Definition: hci.h:1728
uint32_t timestamp
Definition: hci.h:1727
uint16_t handle
Definition: hci.h:1725
uint16_t seq
Definition: hci.h:1726
uint8_t status
Definition: hci.h:821
uint8_t features[8]
Definition: hci.h:822
uint8_t status
Definition: hci.h:1158
bt_addr_t local_rpa
Definition: hci.h:1159
uint8_t status
Definition: hci.h:1337
uint16_t max_adv_data_len
Definition: hci.h:1338
uint16_t max_tx_octets
Definition: hci.h:1178
uint8_t status
Definition: hci.h:1177
uint16_t max_tx_time
Definition: hci.h:1179
uint16_t max_rx_octets
Definition: hci.h:1180
uint16_t max_rx_time
Definition: hci.h:1181
uint8_t status
Definition: hci.h:1343
uint8_t num_sets
Definition: hci.h:1344
bt_addr_t peer_rpa
Definition: hci.h:1150
uint8_t status
Definition: hci.h:1149
uint8_t status
Definition: hci.h:1474
uint8_t list_size
Definition: hci.h:1475
uint8_t rx_phy
Definition: hci.h:1196
uint8_t tx_phy
Definition: hci.h:1195
uint8_t status
Definition: hci.h:1193
uint16_t handle
Definition: hci.h:1194
int16_t rx_path_comp
Definition: hci.h:1489
int16_t tx_path_comp
Definition: hci.h:1488
uint8_t status
Definition: hci.h:1487
uint8_t rl_size
Definition: hci.h:1141
uint8_t status
Definition: hci.h:1140
uint8_t le_states[8]
Definition: hci.h:1035
uint8_t status
Definition: hci.h:1034
uint16_t handle
Definition: hci.h:1959
uint32_t received_cnt
Definition: hci.h:1960
uint8_t status
Definition: hci.h:1958
uint32_t missed_cnt
Definition: hci.h:1961
uint32_t failed_cnt
Definition: hci.h:1962
int8_t max_tx_power
Definition: hci.h:1482
int8_t min_tx_power
Definition: hci.h:1481
uint8_t status
Definition: hci.h:1480
uint16_t handle
Definition: hci.h:1831
uint8_t status
Definition: hci.h:1830
uint8_t status
Definition: hci.h:1814
uint8_t cig_id
Definition: hci.h:1815
uint8_t status
Definition: hci.h:1926
uint16_t handle
Definition: hci.h:1927
uint16_t handle[0]
Definition: hci.h:1794
uint8_t num_handles
Definition: hci.h:1793
uint8_t cig_id
Definition: hci.h:1792
uint8_t status
Definition: hci.h:1791
uint16_t handle[0]
Definition: hci.h:1759
uint8_t status
Definition: hci.h:1756
uint8_t num_handles
Definition: hci.h:1758
uint8_t cig_id
Definition: hci.h:1757
uint16_t sync_handle
Definition: hci.h:1554
uint8_t status
Definition: hci.h:1553
uint16_t handle
Definition: hci.h:1568
uint8_t status
Definition: hci.h:1567
uint8_t status
Definition: hci.h:1587
uint16_t handle
Definition: hci.h:1588
uint16_t handle
Definition: hci.h:1089
uint8_t status
Definition: hci.h:1088
uint8_t status
Definition: hci.h:1289
int8_t tx_power
Definition: hci.h:1290
uint8_t status
Definition: hci.h:1985
uint16_t handle
Definition: hci.h:1916
uint8_t status
Definition: hci.h:1915
uint8_t status
Definition: hci.h:1052
uint16_t rx_pkt_count
Definition: hci.h:1053
uint8_t status
Definition: hci.h:397
bt_addr_t bdaddr
Definition: hci.h:398
uint8_t status
Definition: hci.h:388
bt_addr_t bdaddr
Definition: hci.h:389
uint8_t status
Definition: hci.h:576
uint16_t auth_payload_timeout
Definition: hci.h:578
uint16_t handle
Definition: hci.h:577
uint8_t status
Definition: hci.h:663
bt_addr_t bdaddr
Definition: hci.h:664
uint8_t status
Definition: hci.h:654
uint8_t sco_max_len
Definition: hci.h:656
uint16_t acl_max_num
Definition: hci.h:657
uint16_t acl_max_len
Definition: hci.h:655
uint16_t sco_max_num
Definition: hci.h:658
uint8_t num_capabilities
Definition: hci.h:763
uint8_t status
Definition: hci.h:762
uint8_t capabilities[0]
Definition: hci.h:765
uint8_t codecs[0]
Definition: hci.h:742
uint8_t status
Definition: hci.h:740
uint8_t status
Definition: hci.h:716
uint8_t codecs[0]
Definition: hci.h:718
uint8_t status
Definition: hci.h:777
uint8_t max_ctlr_delay[3]
Definition: hci.h:779
uint8_t min_ctlr_delay[3]
Definition: hci.h:778
uint8_t status
Definition: hci.h:800
uint16_t handle
Definition: hci.h:801
uint8_t key_size
Definition: hci.h:802
uint8_t max_page
Definition: hci.h:642
uint8_t ext_features[8]
Definition: hci.h:643
uint8_t page
Definition: hci.h:641
uint8_t status
Definition: hci.h:640
uint8_t status
Definition: hci.h:648
uint8_t features[8]
Definition: hci.h:649
uint16_t hci_revision
Definition: hci.h:623
uint8_t hci_version
Definition: hci.h:622
uint16_t lmp_subversion
Definition: hci.h:626
uint8_t lmp_version
Definition: hci.h:624
uint16_t manufacturer
Definition: hci.h:625
uint8_t status
Definition: hci.h:621
uint8_t status
Definition: hci.h:631
uint8_t commands[64]
Definition: hci.h:632
int8_t tx_power_level
Definition: hci.h:515
uint16_t handle
Definition: hci.h:514
uint8_t status
Definition: hci.h:513
bt_addr_t bdaddr
Definition: hci.h:426
uint8_t status
Definition: hci.h:425
bt_addr_t bdaddr
Definition: hci.h:460
uint8_t status
Definition: hci.h:459
uint16_t handle
Definition: hci.h:589
uint8_t status
Definition: hci.h:588
uint8_t codec_id
Definition: hci.h:723
uint8_t transports
Definition: hci.h:724
uint8_t codec_id
Definition: hci.h:701
struct bt_hci_std_codec_info_v2 codec_info[0]
Definition: hci.h:728
uint8_t num_codecs
Definition: hci.h:727
struct bt_hci_std_codec_info codec_info[0]
Definition: hci.h:705
uint8_t num_codecs
Definition: hci.h:704
uint16_t company_id
Definition: hci.h:731
uint8_t transports
Definition: hci.h:733
uint16_t codec_id
Definition: hci.h:732
uint16_t codec_id
Definition: hci.h:709
uint16_t company_id
Definition: hci.h:708
struct bt_hci_vs_codec_info_v2 codec_info[0]
Definition: hci.h:737
uint8_t num_codecs
Definition: hci.h:736
uint8_t num_codecs
Definition: hci.h:712
struct bt_hci_vs_codec_info codec_info[0]
Definition: hci.h:713
uint8_t local_name[248]
Definition: hci.h:489
uint16_t min_ce_len
Definition: hci.h:965
uint16_t max_ce_len
Definition: hci.h:966
uint16_t handle
Definition: hci.h:960
uint16_t conn_latency
Definition: hci.h:963
uint16_t conn_interval_max
Definition: hci.h:962
uint16_t supervision_timeout
Definition: hci.h:964
uint16_t conn_interval_min
Definition: hci.h:961
Simple network buffer representation.
Definition: buf.h:87
Network buffer representation.
Definition: buf.h:919