sitara_depot/components/free_rtos/ethernet_ip/eth_checksum.h
algin ae3cac8a7d feat: First commit
Adds sitara_depot/free_rtos

Original one is on server_gorbunov/SmartForce4.0/sitara_depot
2023-05-03 14:01:32 +03:00

24 lines
385 B
C

/*
* eth_checksum.h
*
* Created on: 13 ìàð. 2023 ã.
* Author: sychev
*/
#ifndef FREE_RTOS_ETHERNET_ETH_CHECKSUM_H_
#define FREE_RTOS_ETHERNET_ETH_CHECKSUM_H_
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
uint16_t eth_calcChksum(uint32_t sum, uint8_t * const data, uint16_t len);
#ifdef __cplusplus
}
#endif
#endif /* FREE_RTOS_ETHERNET_ETH_CHECKSUM_H_ */