Framework for reading and writing variables in real time on any MBED platform.

DistantIO

This is the C implementation of the DistantIO slave framework.

Library is working but slight API breaks may occur in the future. C++ version is also in development.

To get the master-side implementation, see https://github.com/Overdrivr/DistantIO

Revision:
0:c4676d32d381
Child:
1:aaffeb93f99b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/crc.h	Tue Sep 15 15:27:55 2015 +0000
@@ -0,0 +1,10 @@
+#ifndef CRC_H_
+#define CRC_H_
+
+#include <stdint.h>
+
+//unsigned crc8(unsigned char *data, uint16_t len);
+uint16_t crc16(uint8_t *data, uint16_t len);
+
+#endif
+