Xavier Bélanger / Mbed 2 deprecated APP4_Manchester

Dependencies:   mbed

CRC16.h

Committer:
IC_Blood
Date:
2016-02-23
Revision:
0:c7df736f11c4

File content as of revision 0:c7df736f11c4:

#ifndef CRC16_H
#define CRC16_H



class CRC16
{
    private:
        unsigned short crc16table[256];
        const unsigned int SHIFTER = 0x00FF;
        
    public:
        unsigned short calculateCRC16(char input[], int lenght);
        CRC16();
        ~CRC16();
};
#endif