KissTncAX25/Arduino/hdlcCrcTable.h

16 lines
219 B
C
Raw Permalink Normal View History

2022-08-24 07:32:07 +02:00
#ifndef HDLC_CRC_TABLE_H
#define HDLC_CRC_TABLE_H
#include "Arduino.h"
#define CRC_RESET_VAL 0xFFFF
class HdlcCrcTable {
public:
HdlcCrcTable();
uint16_t getValue(byte crcTableIndex);
private:
};
#endif