Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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