8 // Visual Studio versions before 2010 don't have stdint.h, so we just error out.
9 #if (defined _MSC_VER) && (_MSC_VER < 1600)
10 #error "The C-MAVLink implementation requires Visual Studio 2010 or greater"
17 * CALCULATE THE CHECKSUM
21 #define X25_INIT_CRC 0xffff
22 #define X25_VALIDATE_CRC 0xf0b8
24 #ifndef HAVE_CRC_ACCUMULATE
26 * @brief Accumulate the X.25 CRC by adding one char at a time.
28 * The checksum function adds the hash of one char at a time to the
29 * 16 bit checksum (uint16_t).
31 * @param data new char to hash
32 * @param crcAccum the already accumulated checksum
34 static inline void crc_accumulate(uint8_t data
, uint16_t *crcAccum
)
36 /*Accumulate one byte of data into the CRC*/
39 tmp
= data
^ (uint8_t)(*crcAccum
&0xff);
41 *crcAccum
= (*crcAccum
>>8) ^ (tmp
<<8) ^ (tmp
<<3) ^ (tmp
>>4);
47 * @brief Initiliaze the buffer for the X.25 CRC
49 * @param crcAccum the 16 bit X.25 CRC
51 static inline void crc_init(uint16_t* crcAccum
)
53 *crcAccum
= X25_INIT_CRC
;
58 * @brief Calculates the X.25 checksum on a byte buffer
60 * @param pBuffer buffer containing the byte array to hash
61 * @param length length of the byte array
62 * @return the checksum over the buffer bytes
64 static inline uint16_t crc_calculate(const uint8_t* pBuffer
, uint16_t length
)
69 crc_accumulate(*pBuffer
++, &crcTmp
);
76 * @brief Accumulate the X.25 CRC by adding an array of bytes
78 * The checksum function adds the hash of one char at a time to the
79 * 16 bit checksum (uint16_t).
81 * @param data new bytes to hash
82 * @param crcAccum the already accumulated checksum
84 static inline void crc_accumulate_buffer(uint16_t *crcAccum
, const char *pBuffer
, uint16_t length
)
86 const uint8_t *p
= (const uint8_t *)pBuffer
;
88 crc_accumulate(*p
++, crcAccum
);
92 #endif /* _CHECKSUM_H_ */