Home
last modified time | relevance | path

Searched refs:packet_type (Results 1 – 6 of 6) sorted by relevance

/Zephyr-latest/drivers/bluetooth/hci/
Dhci_silabs_siwx91x.c39 uint8_t packet_type = BT_HCI_H4_NONE; in siwx91x_bt_send() local
43 packet_type = BT_HCI_H4_ACL; in siwx91x_bt_send()
46 packet_type = BT_HCI_H4_CMD; in siwx91x_bt_send()
53 if ((packet_type != BT_HCI_H4_NONE) && (buf->len < sizeof(hci->rsi_data_packet.data))) { in siwx91x_bt_send()
54 net_buf_push_u8(buf, packet_type); in siwx91x_bt_send()
73 uint8_t packet_type = BT_HCI_H4_NONE; in siwx91x_bt_resp_rcvd() local
80 memcpy(&packet_type, (resp_buf->data - 12), 1); in siwx91x_bt_resp_rcvd()
81 switch (packet_type) { in siwx91x_bt_resp_rcvd()
97 LOG_ERR("Unknown/Unhandled HCI type: %d", packet_type); in siwx91x_bt_resp_rcvd()
Dhci_silabs_efr32.c161 uint8_t packet_type; in hci_common_transport_transmit() local
170 packet_type = data[0]; in hci_common_transport_transmit()
175 switch (packet_type) { in hci_common_transport_transmit()
183 LOG_ERR("Unknown HCI type: %d", packet_type); in hci_common_transport_transmit()
Duserchan.c211 const uint8_t packet_type = frame_start[0]; in rx_thread() local
235 buf_add = frame_start + sizeof(packet_type); in rx_thread()
236 buf_add_len = decoded_len - sizeof(packet_type); in rx_thread()
/Zephyr-latest/subsys/bluetooth/host/classic/
Davctp_internal.h62 #define BT_AVCTP_HDR_SET_PACKET_TYPE(hdr, packet_type) \ argument
63 (hdr)->byte0 = (((hdr)->byte0) & ~GENMASK(3, 2)) | FIELD_PREP(GENMASK(3, 2), (packet_type))
/Zephyr-latest/subsys/bluetooth/host/
Dconn.c2346 cp->packet_type = sys_cpu_to_le16(0xcc18); /* DM1 DH1 DM3 DH5 DM5 DH5 */ in bt_conn_create_br()
/Zephyr-latest/include/zephyr/bluetooth/
Dhci_types.h395 uint16_t packet_type; member