UKSVEP_K1921/Core/Inc/crc16.h
2025-10-17 15:50:34 +03:00

7 lines
173 B
C

#include "stdint.h"
uint16_t get_crc_16(uint8_t *buf, uint16_t size );
uint16_t get_crc16(uint16_t *buf, uint16_t size );
uint16_t get_crc_one(uint16_t crc, uint8_t buf);