1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
70
71
72
80
81
82
90
91
92
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
/* ... */
/* ... */
uint32_t esp_rom_crc32_le(uint32_t crc, uint8_t const *buf, uint32_t len);
/* ... */
uint32_t esp_rom_crc32_be(uint32_t crc, uint8_t const *buf, uint32_t len);
/* ... */
uint16_t esp_rom_crc16_le(uint16_t crc, uint8_t const *buf, uint32_t len);
/* ... */
uint16_t esp_rom_crc16_be(uint16_t crc, uint8_t const *buf, uint32_t len);
/* ... */
uint8_t esp_rom_crc8_le(uint8_t crc, uint8_t const *buf, uint32_t len);
/* ... */
uint8_t esp_rom_crc8_be(uint8_t crc, uint8_t const *buf, uint32_t len);
#ifdef __cplusplus
}{...}
#endif