Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of lwip by
trunk/Core/device.h@0:5e1631496985, 2012-05-08 (annotated)
- Committer:
- root@mbed.org
- Date:
- Tue May 08 15:32:10 2012 +0100
- Revision:
- 0:5e1631496985
initial commit
Who changed what in which revision?
User | Revision | Line number | New 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 |