ENEL400 / Mbed 2 deprecated Aloha

Dependencies:   SX1276Lib mbed

Fork of SX1276PingPong by Semtech

crc.h

Committer:
rba90
Date:
2016-05-31
Revision:
15:f790f35839db

File content as of revision 15:f790f35839db:

#ifndef CRC_H_
#define CRC_H_

#include "stdint.h"

/**
 * Return CRC-8 of the data, using x^8 + x^2 + x + 1 polynomial.
 * Reference: https://chromium.googlesource.com/chromiumos/platform/vboot_reference/+/master/firmware/lib/crc8.c 
 */
uint8_t crc8(const uint8_t *data, int len);

#endif