-
Notifications
You must be signed in to change notification settings - Fork 1
/
enet.h
28 lines (24 loc) · 938 Bytes
/
enet.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* \file demoEnet.h
*
* \brief Function prototypes for the Ethernet
*/
/*
* Copyright (C) 2005-2010 Texas Instruments Incorporated. - http://www.ti.com/
* All rights reserved.
*/
#ifndef _DEMOENET_H_
#define _DEMOENET_H_
/******************************************************************************
** EXTERNAL VARIABLE DECLARATIONS
*******************************************************************************/
/******************************************************************************
** EXTERNAL FUNCTION PROTOTYPES
*******************************************************************************/
extern void EnetIntRegister(void);
extern void EnetHttpServerInit( unsigned int ip );
extern void IpAddrDisplay(void);
extern unsigned int EnetIfIsUp(void);
extern unsigned int EnetLinkIsUp(void);
extern void EnetErrStatsticsGet(unsigned int *tx, unsigned int *rx);
#endif