APP4 - S5 H16

Dependencies:   mbed-rtos mbed

Committer:
SonSenpai
Date:
Wed Feb 24 06:32:59 2016 +0000
Revision:
5:6315ad5e8686
Parent:
0:6b5926b50a71
last I guess

Who changed what in which revision?

UserRevisionLine numberNew contents of line
SonSenpai 0:6b5926b50a71 1 #ifndef CRC16_H
SonSenpai 0:6b5926b50a71 2 #define CRC16_H
SonSenpai 0:6b5926b50a71 3
SonSenpai 0:6b5926b50a71 4 class CRC16
SonSenpai 0:6b5926b50a71 5 {
SonSenpai 0:6b5926b50a71 6 public:
SonSenpai 0:6b5926b50a71 7 static unsigned short calculateCRC16(char input[], int lenght);
SonSenpai 0:6b5926b50a71 8 };
SonSenpai 0:6b5926b50a71 9 #endif