Home
last modified time | relevance | path

Searched refs:rx_frames (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/drivers/ieee802154/
Dieee802154_nrf5.h44 struct nrf5_802154_rx_frame rx_frames[CONFIG_NRF_802154_RX_BUFFERS]; member
Dieee802154_nrf5.c1107 for (uint32_t i = 0; i < ARRAY_SIZE(nrf5_data.rx_frames); i++) { in nrf_802154_received_timestamp_raw()
1108 if (nrf5_data.rx_frames[i].psdu != NULL) { in nrf_802154_received_timestamp_raw()
1112 nrf5_data.rx_frames[i].psdu = data; in nrf_802154_received_timestamp_raw()
1113 nrf5_data.rx_frames[i].rssi = power; in nrf_802154_received_timestamp_raw()
1114 nrf5_data.rx_frames[i].lqi = lqi; in nrf_802154_received_timestamp_raw()
1117 nrf5_data.rx_frames[i].time = in nrf_802154_received_timestamp_raw()
1121 nrf5_data.rx_frames[i].ack_fpb = nrf5_data.last_frame_ack_fpb; in nrf_802154_received_timestamp_raw()
1122 nrf5_data.rx_frames[i].ack_seb = nrf5_data.last_frame_ack_seb; in nrf_802154_received_timestamp_raw()
1126 k_fifo_put(&nrf5_data.rx_fifo, &nrf5_data.rx_frames[i]); in nrf_802154_received_timestamp_raw()
/Zephyr-latest/drivers/spi/
Dspi_ll_stm32.c760 int rx_frames = spi_stm32_count_bufset_frames(config, rx_bufs); in spi_stm32_count_total_frames() local
762 if (rx_frames < 0) { in spi_stm32_count_total_frames()
763 return rx_frames; in spi_stm32_count_total_frames()
766 if (tx_frames > UINT16_MAX || rx_frames > UINT16_MAX) { in spi_stm32_count_total_frames()
770 return MAX(rx_frames, tx_frames); in spi_stm32_count_total_frames()