Searched refs:crc_init (Results 1 – 3 of 3) sorted by relevance
/nrf_hw_models-latest/src/HW_models/ |
D | crc.h | 16 void append_crc_ble(uint8_t* buf, unsigned int len, uint32_t crc_init); 17 void append_crc_154(uint8_t* buf, unsigned int len, uint16_t crc_init);
|
D | crc.c | 104 void append_crc_ble(uint8_t* buf, unsigned int len, uint32_t crc_init) in append_crc_ble() argument 107 crc = crc_update_ble( rev_24(crc_init), buf, len ); in append_crc_ble() 179 void append_crc_154(uint8_t* buf, unsigned int len, uint16_t crc_init) in append_crc_154() argument 182 crc = crc_update_154( rev_16(crc_init), buf, len ); in append_crc_154()
|
D | NHW_RADIO.c | 933 uint32_t crc_init = NRF_RADIO_regs.CRCINIT & RADIO_CRCINIT_CRCINIT_Msk; in start_Tx() local 935 append_crc_ble(tx_buf, header_len + payload_len, crc_init); in start_Tx() 938 append_crc_154(&tx_buf[header_len], payload_len, crc_init); in start_Tx()
|