1234567891011121314151617181920 |
- /**
- * @file
- * @author chipsea
- * @brief
- * @version 0.1
- * @date 2020-11-30
- * @copyright Copyright (c) 2020, CHIPSEA Co., Ltd.
- * @note
- */
- #ifndef _CRC16_H__
- #define _CRC16_H__
- #include <stdint.h>
- uint16_t crc16(uint16_t seed, const volatile void * p_data, uint32_t size);
- #endif // _CRC16_H__
|