summaryrefslogtreecommitdiff
path: root/include/crc.h
blob: 927b5ff726f768bfebfddb1793325da6d7077fe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef CRC_H
#define CRC_H

#ifdef __AVR__
#include <util/crc16.h>
static inline
uint16_t crc16(uint16_t crc, uint8_t data) 
{
	return _crc_ccitt_update(crc, data);
}
#else /* !__AVR__ */
#endif /* __AVR__ */

#endif /* CRC_H */