Files
UtilitechAS.amsreader-firmware/lib/AmsDecoder/include/crc.h
2026-04-09 09:40:09 +02:00

17 lines
245 B
C

/**
* @copyright Utilitech AS 2023-2026
* 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