25 lines
721 B
C
25 lines
721 B
C
![]() |
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/* Includes ----------------------------------------------------------------- */
|
||
|
#include <stdbool.h>
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "bsp/bsp.h"
|
||
|
|
||
|
/* Exported constants ------------------------------------------------------- */
|
||
|
/* Exported macro ----------------------------------------------------------- */
|
||
|
/* Exported types ----------------------------------------------------------- */
|
||
|
/* Exported functions prototypes -------------------------------------------- */
|
||
|
uint32_t BSP_CRC32_Calc(uint8_t *buf, size_t len);
|
||
|
bool BSP_CRC32_Verify(uint8_t *buf, size_t len);
|
||
|
bool BSP_CRC32_Append(uint8_t *buf, size_t len);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|