Lines Matching refs:rx_buf
240 static uint8_t rx_buf[_NRF_MAX_PACKET_SIZE]; // " variable
241 static uint8_t *rx_pkt_buffer_ptr = (uint8_t*)&rx_buf;
261 static void nhw_radio_device_address_match(uint8_t rx_buf[]);
1001 rx_status.CI = rx_buf[0] & 0x3; in Rx_handle_CI_reception()
1040 NRF_RADIO_regs.RXCRC = nhwra_get_rx_crc_value(rx_buf, rx_status.rx_resp.packet_size); in Rx_handle_end_response()
1064 uint length = nhwra_get_payload_length(rx_buf); in Rx_handle_address_end_response()
1108 ((uint8_t*)NRF_RADIO_regs.PACKETPTR)[0] = rx_buf[0]; in Rx_handle_address_end_response()
1109 ((uint8_t*)NRF_RADIO_regs.PACKETPTR)[1] = rx_buf[1]; in Rx_handle_address_end_response()
1112 &rx_buf[2] , length); in Rx_handle_address_end_response()
1116 ((uint8_t*)NRF_RADIO_regs.PACKETPTR)[0] = rx_buf[0]; in Rx_handle_address_end_response()
1118 &rx_buf[1] , length); in Rx_handle_address_end_response()
1359 nhw_radio_device_address_match(rx_buf); in Rx_Addr_received()
1372 NRF_RADIO_regs.RXCRC = nhwra_get_rx_crc_value(rx_buf, rx_status.rx_resp.packet_size); in Rx_Addr_received()
1391 static void nhw_radio_device_address_match(uint8_t rx_buf[]) { in nhw_radio_device_address_match() argument
1403 if (TxAdd != ((rx_buf[0] >> 6) & 1) ) { in nhw_radio_device_address_match()
1407 nomatch = (*(uint32_t *)(rx_buf + 2) != NRF_RADIO_regs.DAB[i]); in nhw_radio_device_address_match()
1409 nomatch |= (*(uint16_t *)(rx_buf + 6) != DAP); in nhw_radio_device_address_match()