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-10-16
Revision:
6:72d46dbdbe7a
Parent:
1:aaffeb93f99b

File content as of revision 6:72d46dbdbe7a:

//From : https://en.wikipedia.org/wiki/Computation_of_cyclic_redundancy_checks

#ifndef CRC_H_
#define CRC_H_

#include <stdint.h>

uint16_t crc16(uint8_t *data, uint16_t len);

#endif