sitara_depot/components/free_rtos/ethernet_ip/eth_prots_id.h

20 lines
451 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* eth_prot.h
*
* Created on: 13 мар. 2023 г.
* Author: sychev
* Идентификаторы протоколов Ethernet
*/
#ifndef FREE_RTOS_ETHERNET_ETH_PROTS_ID_H_
#define FREE_RTOS_ETHERNET_ETH_PROTS_ID_H_
#define ETH_PROT_ARP_LE 0x0806 /// ARP
#define ETH_PROT_ARP_BE 0x0608 /// ARP
#define ETH_PROT_IP_LE 0x0800 /// IPv4
#define ETH_PROT_IP_BE 0x0008 /// IPv4
#endif /* FREE_RTOS_ETHERNET_ETH_PROTS_ID_H_ */