Files
UtilitechAS.amsreader-firmware/lib/AmsDecoder/include/crc.h
Gunnar Skjold b07ed075f4 Even more v2.2
2022-12-02 20:38:56 +01:00

10 lines
128 B
C

#ifndef _CRC_H
#define _CRC_H
#include "Arduino.h"
#include <stdint.h>
uint16_t crc16_x25(const uint8_t* p, int len);
#endif