ASCII Serial Com
Serial communication library between computers, microcontrollers, FPGAs, etc. Uses only ASCII. Not the most efficient protocol, but meant to be easy to read
Loading...
Searching...
No Matches
crc_16_dnp_crcmod.h
Go to the documentation of this file.
1#ifndef COMPUTE_CRC_H
2#define COMPUTE_CRC_H
3
4/** \file */
5
6#include <stdint.h>
7#include <stdlib.h>
8
9// Automatically generated CRC function
10// polynomial: 0x13D65, bit reverse algorithm
11// From crcmod predefined CRC-16-DNP
12uint16_t computeCRC_16_DNP(uint8_t *data, size_t len, uint16_t crc);
13
14#endif