A version of LWIP, provided for backwards compatibility.

Dependents:   AA_DemoBoard DemoBoard HelloServerDemo DemoBoard_RangeIndicator ... more

Committer:
root@mbed.org
Date:
Tue May 08 15:32:10 2012 +0100
Revision:
0:5e1631496985
initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
root@mbed.org 0:5e1631496985 1 #ifndef ETHNETIF_H
root@mbed.org 0:5e1631496985 2 #define ETHNETIF_H
root@mbed.org 0:5e1631496985 3
root@mbed.org 0:5e1631496985 4 #ifdef __cplusplus
root@mbed.org 0:5e1631496985 5 extern "C" {
root@mbed.org 0:5e1631496985 6 #endif
root@mbed.org 0:5e1631496985 7
root@mbed.org 0:5e1631496985 8 void device_poll();
root@mbed.org 0:5e1631496985 9 err_t device_init(struct netif *netif);
root@mbed.org 0:5e1631496985 10 void device_address(char *mac);
root@mbed.org 0:5e1631496985 11
root@mbed.org 0:5e1631496985 12
root@mbed.org 0:5e1631496985 13 #ifdef __cplusplus
root@mbed.org 0:5e1631496985 14 };
root@mbed.org 0:5e1631496985 15 #endif
root@mbed.org 0:5e1631496985 16
root@mbed.org 0:5e1631496985 17 #endif