Select one of the symbols to view example projects that use it.
 
Outline
#include "crc32.h"
#include "esp_rom_crc.h"
crc32::crc32_le(unsigned int, const unsigned char *, unsigned int)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wear_levelling/crc32.cpp
 
1
2
3
4
5
6
7
8
9
10
11
12
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include "crc32.h" #include "esp_rom_crc.h" unsigned int crc32::crc32_le(unsigned int crc, unsigned char const *buf, unsigned int len) { return ::esp_rom_crc32_le(crc, buf, len); }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.