Files
FreeRTOS_LoRa_Environment_A…/STM32/Environment_Node/System/CRC32.h

10 lines
191 B
C

#ifndef __CRC_H__
#define __CRC_H__
#include "stm32f10x.h" // Device header
void vCrcInit(void);
uint32_t vCalculateCrc32bit(uint32_t *pulData, uint32_t ulLength);
#endif