Midnight Sun Firmware
Loading...
Searching...
No Matches
crc.h
1
#pragma once
2
3
/************************************************************************************************
4
* @file crc.h
5
*
6
* @brief CRC Library Header file
7
*
8
* @date 2025-02-04
9
* @author Midnight Sun Team #24 - MSXVI
10
************************************************************************************************/
11
12
/* Standard library Headers */
13
#include <stddef.h>
14
#include <stdint.h>
15
16
/* Inter-component Headers */
17
18
/* Intra-component Headers */
19
#include "status.h"
20
28
typedef
enum
{
29
CRC_LENGTH_8
,
30
CRC_LENGTH_16
,
31
CRC_LENGTH_32
,
32
NUM_CRC_LENGTHS
33
}
CRCLength
;
34
43
StatusCode
crc_init
(
CRCLength
crc_length);
44
54
uint32_t
crc_calculate
(
const
uint32_t *data,
size_t
length);
55
61
void
crc_reset
(
void
);
62
CRCLength
CRCLength
CRC Length.
Definition:
crc.h:28
crc_reset
void crc_reset(void)
Reset the CRC hardware peripheral.
Definition:
crc.c:67
crc_init
StatusCode crc_init(CRCLength crc_length)
Initilize the CRC API with default values.
Definition:
crc.c:23
crc_calculate
uint32_t crc_calculate(const uint32_t *data, size_t length)
Calculate the CRC-32/16/8 checksum for a buffer of 32-bit values.
Definition:
crc.c:59
CRC_LENGTH_16
@ CRC_LENGTH_16
Definition:
crc.h:30
NUM_CRC_LENGTHS
@ NUM_CRC_LENGTHS
Definition:
crc.h:32
CRC_LENGTH_8
@ CRC_LENGTH_8
Definition:
crc.h:29
CRC_LENGTH_32
@ CRC_LENGTH_32
Definition:
crc.h:31
StatusCode
StatusCode
StatusCodes for various errors.
Definition:
status.h:27
libraries
ms-common
inc
crc.h
Generated by
1.9.5