mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-14 15:54:47 +00:00
11 lines
171 B
C
11 lines
171 B
C
#ifndef _CRC_H
|
|
#define _CRC_H
|
|
|
|
#include "Arduino.h"
|
|
#include <stdint.h>
|
|
|
|
uint16_t crc16(const uint8_t* p, int len);
|
|
uint16_t crc16_x25(const uint8_t* p, int len);
|
|
|
|
#endif
|