Example for FS-BB48 to compute CRC32.

This commit is contained in:
NIIBE Yutaka
2016-04-19 15:58:26 +09:00
parent 0bbb43dd3a
commit 7c2cdaa6e4
6 changed files with 134 additions and 4 deletions

5
example-fs-bb48/crc32.h Normal file
View File

@@ -0,0 +1,5 @@
void crc32_init (void);
void crc32_u8 (unsigned char);
void crc32_u32 (unsigned int);
unsigned int crc32_value (void);