PER Firmware
Loading...
Searching...
No Matches
pec.h
Go to the documentation of this file.
1
10#ifndef PEC_H
11#define PEC_H
12
13#include <stdbool.h>
14#include <stdint.h>
15
16uint16_t adbms_pec_get_pec15(uint8_t len, const uint8_t *data);
17uint16_t adbms_pec_get_pec10(bool bIsRxCmd, uint8_t nLength, const uint8_t *pDataBuf);
18
19#endif // PEC_H
uint16_t adbms_pec_get_pec15(uint8_t len, const uint8_t *data)
CRC15 Pec Calculation Function.
Definition pec.c:77