Inertial commit

This commit is contained in:
2020-04-02 18:32:37 +02:00
commit 93a02c8db2
16 changed files with 1593 additions and 0 deletions

9
helper/crc_ccitt.h Normal file
View File

@@ -0,0 +1,9 @@
#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_ */