12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #ifndef __crc_H
- #define __crc_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "main.h"
- extern CRC_HandleTypeDef hcrc;
- void MX_CRC_Init(void);
- extern uint32_t crc32(uint8_t const * p_data, uint8_t size);
- #ifdef __cplusplus
- }
- #endif
- #endif
|