Bind
C++ UI toolkit for Arduino
 
Loading...
Searching...
No Matches
crc16.h
1#ifndef __CRC16_H
2#define __CRC16_H
3#include <stdint.h>
4#include <stddef.h>
5
6#define CRC16_INIT 0x1D0F
7uint16_t crc16(uint8_t const *buffer, size_t len);
8
9#endif /* __CRC16_H */