Adds sitara_depot/free_rtos Original one is on server_gorbunov/SmartForce4.0/sitara_depot
20 lines
423 B
C
20 lines
423 B
C
/*
|
|
* 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_ */
|