Пока не рабоатет

This commit is contained in:
2025-08-28 20:59:31 +03:00
commit 2317b904ba
9 changed files with 2273 additions and 0 deletions

14
crc_algs.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef CRC_ALGS_H
#define CRC_ALGS_H
#include <stdint.h>
extern uint32_t CRC_calc;
extern uint32_t CRC_ref;
uint16_t crc16(uint8_t *data, uint32_t data_size);
uint32_t crc32(uint8_t *data, uint32_t data_size);
#endif