24 lines
745 B
C
24 lines
745 B
C
//************************************************************
|
||
// Copyright (c) 深圳市赛元微电子有限公司
|
||
// 文件名称 : sc92F_CRC.h
|
||
// 作者 :
|
||
// 模块功能 : CRC固件库函数头文件
|
||
// 最后更正日期: 2020/8/14
|
||
// 版本 : V1.0
|
||
// 说明 :该文件仅适用于SC92F系列芯片
|
||
//*************************************************************
|
||
|
||
#ifndef _sc92f_CRC_H_
|
||
#define _sc92f_CRC_H_
|
||
|
||
#include "sc92f.h"
|
||
|
||
#if defined (SC92L853x) || defined (SC92L753x)
|
||
uint32_t CRC_All(void); //根据IAP Range选项,硬件CRC运算CODE内容,返回CRC结果
|
||
uint32_t CRC_Frame(uint8_t *buff,
|
||
uint8_t Length); //软件CRC,将buff指向的数组进行CRC运算,返回CRC结果
|
||
#endif
|
||
|
||
#endif
|
||
|
||
/******************* (C) COPYRIGHT 2020 SinOne Microelectronics *****END OF FILE****/ |