aboutsummaryrefslogtreecommitdiff
path: root/example-fs-bb48/crc32.h
diff options
context:
space:
mode:
authorNIIBE Yutaka <gniibe@fsij.org>2016-04-19 15:58:26 +0900
committerNIIBE Yutaka <gniibe@fsij.org>2016-04-19 15:58:26 +0900
commit7c2cdaa6e40999d1194cc7188742f0c21acfa0da (patch)
tree0b70c3be9d96745a4b4b3571e813cf807f81a23b /example-fs-bb48/crc32.h
parent0bbb43dd3a943285ffb5462db468f7af29c4bbfb (diff)
Example for FS-BB48 to compute CRC32.
Diffstat (limited to 'example-fs-bb48/crc32.h')
-rw-r--r--example-fs-bb48/crc32.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/example-fs-bb48/crc32.h b/example-fs-bb48/crc32.h
new file mode 100644
index 0000000..c31ba0f
--- /dev/null
+++ b/example-fs-bb48/crc32.h
@@ -0,0 +1,5 @@
+void crc32_init (void);
+void crc32_u8 (unsigned char);
+void crc32_u32 (unsigned int);
+
+unsigned int crc32_value (void);