Files
esp-idf/components/wear_levelling/crc32.cpp
T

13 lines
308 B
C++
Raw Normal View History

/*
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
2018-07-05 09:01:03 +10:00
#include "crc32.h"
#include "esp_rom_crc.h"
2018-07-05 09:01:03 +10:00
unsigned int crc32::crc32_le(unsigned int crc, unsigned char const *buf, unsigned int len)
{
return ::esp_rom_crc32_le(crc, buf, len);
2018-07-05 09:01:03 +10:00
}