ct_test/Keil_C/FWLib/SC92F_Lib/inc/sc92f_crc.h

24 lines
745 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//************************************************************
// 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****/