12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #ifndef CRC_H__
- #define CRC_H__
- #include <stdint.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- uint16_t crc_crc16_update(uint16_t current_crc, const volatile void * p_data, uint32_t size);
- #ifdef __cplusplus
- }
- #endif
- #endif
|