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.
Dependencies: FreescaleIAP mbed-rtos mbed
Fork of workinQM_5thJan_azad by
Diff: crc.h
- Revision:
- 20:949d13045431
- Parent:
- 19:79e69017c855
diff -r 79e69017c855 -r 949d13045431 crc.h --- a/crc.h Sat Jun 04 11:29:13 2016 +0000 +++ b/crc.h Fri Jul 01 17:55:30 2016 +0000 @@ -9,7 +9,7 @@ namespace CRC { - typedef uint16_t crctype16; + typedef uint16_t crctype16; crctype16 crc16_gen(const unsigned char message[], unsigned int nBytes) { crctype16 remainder = 0xffff; @@ -48,7 +48,8 @@ return remainder; } - + + typedef uint8_t crctype8; crctype8 crc8_gen(const unsigned char message[], unsigned int nBytes) {