fsfw/globalfunctions/crc_ccitt.h
2016-06-15 23:48:49 +02:00

17 lines
220 B
C

/*
* crc.h
*
* Created on: 03.04.2012
* Author: bucher
*/
#ifndef CRC_CCITT_H_
#define CRC_CCITT_H_
#include <stdint.h>
uint16_t Calculate_CRC(uint8_t const input[], uint32_t length);
#endif /* CRC_H_ */