Home
last modified time | relevance | path

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

/nrf_hw_models-3.6.0/src/HW_models/
DNHW_RADIO_utils.h26 uint nhwra_tx_copy_payload(uint8_t *tx_buf);
DNHW_RADIO_utils.c492 uint nhwra_tx_copy_payload(uint8_t *tx_buf){ in nhwra_tx_copy_payload() argument
511 tx_buf[0] = ((uint8_t*)NRF_RADIO_regs.PACKETPTR)[0]; in nhwra_tx_copy_payload()
515 tx_buf[i] = ((uint8_t*)NRF_RADIO_regs.PACKETPTR)[i]; in nhwra_tx_copy_payload()
530 payload_len = nhwra_get_payload_length(tx_buf); in nhwra_tx_copy_payload()
547 memcpy(&tx_buf[i], &((uint8_t*)NRF_RADIO_regs.PACKETPTR)[i + S1Off], copy_len); in nhwra_tx_copy_payload()
DNHW_RADIO.c195 static uint8_t tx_buf[_NRF_MAX_PACKET_SIZE]; //starting from the header, and including CRC variable
752 payload_len = nhwra_tx_copy_payload(tx_buf); in start_Tx()
760 append_crc_ble(tx_buf, header_len + payload_len, crc_init); in start_Tx()
763 append_crc_154(&tx_buf[header_len], payload_len, crc_init); in start_Tx()
777 int ret = p2G4_dev_req_txv2_nc_b(&tx_status.tx_req, tx_buf, &tx_status.tx_resp); in start_Tx()