Implementation of CRC16 using polynomial 0x8005 - (X^16 X^15 X^2 1). Blu.

Dependents:   APP4

Fork of CRC16 by Emilie Laverge

CRC16.h

Committer:
vinbel93
Date:
2016-02-22
Revision:
1:d5df46e8875d
Parent:
0:585ead300cab

File content as of revision 1:d5df46e8875d:

#ifndef CRC16_H
#define CRC16_H

class CRC16
{
public:
    static unsigned short calculateCRC16(char input[], int lenght);
};
#endif