X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/21a24f90c5aaaaf13f91716208b32cde163c5918..7e24905c2e22a136d5730c4d6f7ca39842952ad3:/include/crc.h diff --git a/include/crc.h b/include/crc.h index c38bae4..927b5ff 100644 --- a/include/crc.h +++ b/include/crc.h @@ -1,12 +1,14 @@ #ifndef CRC_H #define CRC_H +#ifdef __AVR__ #include - static inline uint16_t crc16(uint16_t crc, uint8_t data) { return _crc_ccitt_update(crc, data); } +#else /* !__AVR__ */ +#endif /* __AVR__ */ #endif /* CRC_H */