11 lines
153 B
C
11 lines
153 B
C
#ifndef _CRC_H_
|
|
#define _CRC_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
uint32_t calculate_stm_crc(uint32_t *data, size_t len);
|
|
|
|
|
|
#endif /* _CRC_H_ */
|