summaryrefslogtreecommitdiff
path: root/avr/crc.h
diff options
context:
space:
mode:
Diffstat (limited to 'avr/crc.h')
-rw-r--r--avr/crc.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/avr/crc.h b/avr/crc.h
deleted file mode 100644
index c38bae4..0000000
--- a/avr/crc.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef CRC_H
-#define CRC_H
-
-#include <util/crc16.h>
-
-static inline
-uint16_t crc16(uint16_t crc, uint8_t data)
-{
- return _crc_ccitt_update(crc, data);
-}
-
-#endif /* CRC_H */