Files
WeActStudio.EpaperModule/Example/EpaperModuleTest_CH32V103/Peripheral/inc/ch32v10x_crc.h
T
2022-08-06 13:35:32 +08:00

32 lines
943 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.
* Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd.
* SPDX-License-Identifier: Apache-2.0
*******************************************************************************/
#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 */