First class data visualization and communication library with embedded devices. Code is maintained at github.com/Overdrivr/Telemetry

Dependents:   telemetry_car_demo telemetry_demo_FRDM-TFC telemetry_example_01 telemetry_indexed_data_demo ... more

Revision:
3:37d2d127bc83
Parent:
0:3a30eba5d8f7
Child:
5:cd94bb58e096
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/c_api/crc16.h	Mon Feb 22 17:17:52 2016 +0000
@@ -0,0 +1,11 @@
+#ifndef CRC16_H_
+#define CRC16_H_
+
+//From : https://en.wikipedia.org/wiki/Computation_of_cyclic_redundancy_checks
+
+#include "stdint.h"
+
+uint16_t crc16(uint8_t * data, uint32_t lenght);
+uint16_t crc16_recursive(uint8_t byte, uint16_t remainder);
+
+#endif
\ No newline at end of file