Files
arduino-examples/crc16_test/crc16.h
2021-08-05 13:24:20 +09:00

9 lines
117 B
C

#ifndef CRC16_h
#define CRC16_h
#include "Arduino.h"
unsigned int crc (byte* nData, unsigned int nLength);
#endif