Searched refs:tx_seq (Results 1 – 3 of 3) sorted by relevance
/Zephyr-latest/samples/bluetooth/hci_uart_3wire/src/ |
D | main.c | 101 uint8_t tx_seq; member 180 uint8_t next_seq = h5.tx_seq; in process_unack() 188 LOG_DBG("rx_ack %u tx_ack %u tx_seq %u unack_queue_len %u", h5.rx_ack, h5.tx_ack, h5.tx_seq, in process_unack() 205 LOG_ERR("Wrong sequence: rx_ack %u tx_seq %u next_seq %u", h5.rx_ack, h5.tx_seq, in process_unack() 309 H5_SET_SEQ(hdr, h5.tx_seq); in h5_send() 310 h5.tx_seq = (h5.tx_seq + 1) % 8; in h5_send() 357 h5.tx_seq = (h5.tx_seq - 1) & 0x07; in retx_timeout() 712 h5.tx_seq = 0; in rx_thread()
|
/Zephyr-latest/drivers/bluetooth/hci/ |
D | h5.c | 101 uint8_t tx_seq; member 184 uint8_t next_seq = h5->tx_seq; in process_unack() 192 h5->tx_seq, h5->unack_queue_len); in process_unack() 209 h5->tx_seq, next_seq); in process_unack() 312 H5_SET_SEQ(hdr, h5->tx_seq); in h5_send() 313 h5->tx_seq = (h5->tx_seq + 1) % 8; in h5_send() 361 h5->tx_seq = (h5->tx_seq - 1) & 0x07; in retx_timeout()
|
/Zephyr-latest/subsys/usb/device_next/class/ |
D | usbd_cdc_ncm.c | 230 uint16_t tx_seq; member 839 data->tx_seq = 0; in usbd_cdc_ncm_update() 1050 ntb->nth.wSequence = sys_cpu_to_le16(++data->tx_seq); in cdc_ncm_send()
|