23 lines
630 B
C
Raw 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.

/*
*********************************************************************************************************
*
* 模块名称 : CRC32算法STM32硬件专用
* 文件名称 : crc32_stm32.h
* 说 明 : 头文件
*
* Copyright (C), 2019-2030, 安富莱电子 www.armfly.com
*
*********************************************************************************************************
*/
#ifndef CRC32_STM32_H
#define CRC32_STM32_H
uint32_t STM32_CRC32_LE(uint8_t *_pBuf, uint32_t _Len, uint32_t _InitValue);
void CRC32_Init(void);
void CRC32_Update(char *_pBuf, uint32_t _Len);
uint32_t CRC32_Final(void);
#endif