version 1.9, 2024/10/12 16:08:18
|
version 1.10, 2024/10/28 09:58:51
|
Line 107 unsigned short crc16_xy(unsigned char * __restrict buf
|
Line 107 unsigned short crc16_xy(unsigned char * __restrict buf
|
* crcIP() - Checksum in IP communication |
* crcIP() - Checksum in IP communication |
* |
* |
* @buf = Data for calculation |
* @buf = Data for calculation |
* @bufLen = Length of data | * @len = Length of data in bytes |
* return: Checksum |
* return: Checksum |
*/ |
*/ |
unsigned short crcIP(unsigned char * __restrict buf, int bufLen); | unsigned short crcIP(unsigned short* __restrict buf, int len); |
/* |
/* |
* crcTCP() - Checksum for TCP v4 communication |
* crcTCP() - Checksum for TCP v4 communication |
* |
* |