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