Lines Matching refs:rx_buf
234 static uint8_t rx_buf[_NRF_MAX_PACKET_SIZE]; // " variable
235 static uint8_t *rx_pkt_buffer_ptr = (uint8_t*)&rx_buf;
254 static void nhw_radio_device_address_match(uint8_t rx_buf[]);
941 rx_status.CI = rx_buf[0] & 0x3; in Rx_handle_CI_reception()
980 NRF_RADIO_regs.RXCRC = nhwra_get_rx_crc_value(rx_buf, rx_status.rx_resp.packet_size); in Rx_handle_end_response()
1004 uint length = nhwra_get_payload_length(rx_buf); in Rx_handle_address_end_response()
1048 ((uint8_t*)NRF_RADIO_regs.PACKETPTR)[0] = rx_buf[0]; in Rx_handle_address_end_response()
1049 ((uint8_t*)NRF_RADIO_regs.PACKETPTR)[1] = rx_buf[1]; in Rx_handle_address_end_response()
1052 &rx_buf[2] , length); in Rx_handle_address_end_response()
1056 ((uint8_t*)NRF_RADIO_regs.PACKETPTR)[0] = rx_buf[0]; in Rx_handle_address_end_response()
1058 &rx_buf[1] , length); in Rx_handle_address_end_response()
1284 nhw_radio_device_address_match(rx_buf); in Rx_Addr_received()
1297 NRF_RADIO_regs.RXCRC = nhwra_get_rx_crc_value(rx_buf, rx_status.rx_resp.packet_size); in Rx_Addr_received()
1316 static void nhw_radio_device_address_match(uint8_t rx_buf[]) { in nhw_radio_device_address_match() argument
1328 if (TxAdd != ((rx_buf[0] >> 6) & 1) ) { in nhw_radio_device_address_match()
1332 nomatch = (*(uint32_t *)(rx_buf + 2) != NRF_RADIO_regs.DAB[i]); in nhw_radio_device_address_match()
1334 nomatch |= (*(uint16_t *)(rx_buf + 6) != DAP); in nhw_radio_device_address_match()