Home
last modified time | relevance | path

Searched refs:payload_len (Results 1 – 2 of 2) sorted by relevance

/nrf_hw_models-3.7.0/src/HW_models/
DNHW_RADIO_utils.c631 uint payload_len = 0; in nhwra_get_payload_length() local
638 payload_len += buf[S0Len+i] << i*8; in nhwra_get_payload_length()
643 if (payload_len >= crc_len) { in nhwra_get_payload_length()
644 payload_len -= crc_len; in nhwra_get_payload_length()
648 payload_len, crc_len); in nhwra_get_payload_length()
651 return payload_len; in nhwra_get_payload_length()
669 uint payload_len = nrfra_get_capped_payload_length(rx_buf); in nhwra_get_rx_crc_value() local
674 memcpy((void*)&crc, &rx_buf[2 + payload_len], crc_len); in nhwra_get_rx_crc_value()
677 memcpy((void*)&crc, &rx_buf[1 + payload_len], crc_len); in nhwra_get_rx_crc_value()
699 uint payload_len; in nhwra_tx_copy_payload() local
[all …]
DNHW_RADIO.c830 uint payload_len = 0; in start_Tx() local
868 payload_len = nhwra_tx_copy_payload(tx_buf); in start_Tx()
875 append_crc_ble(tx_buf, header_len + payload_len, crc_init); in start_Tx()
878 append_crc_154(&tx_buf[header_len], payload_len, crc_init); in start_Tx()
889 packet_duration += header_len*8 + payload_len*8 + crc_len*8; in start_Tx()
891 main_packet_size = header_len + payload_len + crc_len; in start_Tx()
911 …tx_status.PAYLOAD_end_time = payload_start_time + (bs_time_t)(8*(header_len + payload_len)/bits_pe… in start_Tx()