mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-13 15:37:03 +00:00
17 lines
240 B
C
17 lines
240 B
C
/**
|
|
* @copyright Utilitech AS 2023
|
|
* License: Fair Source
|
|
*
|
|
*/
|
|
|
|
#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
|