Home
last modified time | relevance | path

Searched refs:hci_buffer (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/drivers/bluetooth/hci/
Dhci_stm32wb0.c374 uint8_t *hci_buffer = buf->data; in bt_hci_stm32wb0_send() local
386 connection_handle = ((hci_buffer[1] & 0x0F) << 8) + hci_buffer[0]; in bt_hci_stm32wb0_send()
387 data_len = (hci_buffer[3] << 8) + hci_buffer[2]; in bt_hci_stm32wb0_send()
388 pdu = hci_buffer + 4; in bt_hci_stm32wb0_send()
389 pb_flag = (hci_buffer[1] >> 4) & 0x3; in bt_hci_stm32wb0_send()
390 bc_flag = (hci_buffer[1] >> 6) & 0x3; in bt_hci_stm32wb0_send()
402 connection_handle = sys_get_le16(hci_buffer) & 0x0FFF; in bt_hci_stm32wb0_send()
403 iso_data_load_len = sys_get_le16(hci_buffer + 2) & 0x3FFF; in bt_hci_stm32wb0_send()
404 pb_flag = (hci_buffer[1] >> 4) & 0x3; in bt_hci_stm32wb0_send()
405 ts_flag = (hci_buffer[1] >> 6) & 0x1; in bt_hci_stm32wb0_send()
[all …]
/Zephyr-latest/samples/boards/st/bluetooth/interactive_gui/src/
Dmain.c98 static uint16_t parse_cmd(uint8_t *hci_buffer, uint16_t hci_pckt_len, uint8_t *buffer_out) in parse_cmd() argument
101 struct bt_vendor_cmd_hdr *hdr = (struct bt_vendor_cmd_hdr *) hci_buffer; in parse_cmd()