mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
36 lines
834 B
C
36 lines
834 B
C
/********************************** (C) COPYRIGHT *******************************
|
|
* File Name : ch32v10x_crc.h
|
|
* Author : WCH
|
|
* Version : V1.0.0
|
|
* Date : 2020/04/30
|
|
* Description : This file contains all the functions prototypes for the
|
|
* CRC firmware library.
|
|
*******************************************************************************/
|
|
#ifndef __CH32V10x_CRC_H
|
|
#define __CH32V10x_CRC_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "ch32v10x.h"
|
|
|
|
|
|
void CRC_ResetDR(void);
|
|
uint32_t CRC_CalcCRC(uint32_t Data);
|
|
uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength);
|
|
uint32_t CRC_GetCRC(void);
|
|
void CRC_SetIDRegister(uint8_t IDValue);
|
|
uint8_t CRC_GetIDRegister(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __CH32V10x_CRC_H */
|
|
|
|
|
|
|
|
|
|
|