esp_rom_crc32_be() function
CRC32 value in big endian.
Syntax
uint32_t esp_rom_crc32_be(uint32_t crc,
uint8_t const *buf,
uint32_t len);
Arguments
crc
Initial CRC value (result of last calculation or 0 for the first time)
buf
Data buffer that used to calculate the CRC value
len
Length of the data buffer
Return value
CRC32 value
![]()
uint32_t esp_rom_crc32_be(uint32_t crc, uint8_t const *buf, uint32_t len);
esp_rom_crc32_be() is called by 1 function:
![]()
esp_rom_crc32_be()