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 EthernetInterfaceW5500 by
WIZnet/wiznet.h@10:cadac6bcd169, 2014-07-17 (annotated)
- Committer:
- Bongjun
- Date:
- Thu Jul 17 07:10:36 2014 +0000
- Revision:
- 10:cadac6bcd169
Some update & code clean for W5500 only refer from WIZ550ioInterface, WIZnetLibrary and WiflyInterface.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Bongjun | 10:cadac6bcd169 | 1 | |
Bongjun | 10:cadac6bcd169 | 2 | #pragma once |
Bongjun | 10:cadac6bcd169 | 3 | |
Bongjun | 10:cadac6bcd169 | 4 | //#include "mbed.h" |
Bongjun | 10:cadac6bcd169 | 5 | //#include "mbed_debug.h" |
Bongjun | 10:cadac6bcd169 | 6 | |
Bongjun | 10:cadac6bcd169 | 7 | #define USE_W5500 |
Bongjun | 10:cadac6bcd169 | 8 | //#define USE_W5200 // don't use this library |
Bongjun | 10:cadac6bcd169 | 9 | //#define USE_W5100 // don't use this library |
Bongjun | 10:cadac6bcd169 | 10 | |
Bongjun | 10:cadac6bcd169 | 11 | #if defined(USE_W5500) |
Bongjun | 10:cadac6bcd169 | 12 | #include "W5500.h" |
Bongjun | 10:cadac6bcd169 | 13 | //#define USE_WIZ550IO_MAC // want to use the default MAC address stored in the WIZ550io |
Bongjun | 10:cadac6bcd169 | 14 | #endif |
Bongjun | 10:cadac6bcd169 | 15 | |
Bongjun | 10:cadac6bcd169 | 16 | /* |
Bongjun | 10:cadac6bcd169 | 17 | // current library don't want to support old chips. |
Bongjun | 10:cadac6bcd169 | 18 | #if defined(USE_W5200) |
Bongjun | 10:cadac6bcd169 | 19 | #include "W5200.h" |
Bongjun | 10:cadac6bcd169 | 20 | #endif |
Bongjun | 10:cadac6bcd169 | 21 | |
Bongjun | 10:cadac6bcd169 | 22 | #if defined(USE_W5100) |
Bongjun | 10:cadac6bcd169 | 23 | #include "W5100.h" |
Bongjun | 10:cadac6bcd169 | 24 | #endif |
Bongjun | 10:cadac6bcd169 | 25 | */ |