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

crc.h

Committer:
Overdrivr
Date:
2015-09-15
Revision:
0:c4676d32d381
Child:
1:aaffeb93f99b

File content as of revision 0:c4676d32d381:

#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