WIZ820io(W5200) network interface、EthernetNetIf compatible.
example
#include "WIZ820ioNetIf.h" #include "HTTPClient.h" #include "HTTPServer.h" #if defined(TARGET_KL25Z) WIZ820ioNetIf eth(PTD2,PTD3,PTD1,PTD0,PTD5); #endif HTTPClient http; HTTPStream stream; void callback(HTTPResult r){ printf("callback %d %s\n", r, HTTPClient::ResultStr(r)); } int main() { int err = eth.setup(); if (err < 0) { printf("setup error %d\n", err); exit(-1); } HTTPServer svr; svr.addHandler<SimpleHandler>("/"); svr.bind(80); const char* uri = "http://va009039-mbed.appspot.com/kl25z/"; http.get(uri, &stream, callback); uint8_t buf[256]; int total = 0; stream.readNext(buf, sizeof(buf)); while(1) { if(stream.readable()) { int len = stream.readLen(); total += len; printf("%d %d\n", total, len); stream.readNext(buf, sizeof(buf)); } Net::poll(); } }
Files at revision 1:22b9052d864d
Name | Size | Actions |
---|---|---|
[up] | ||
NetServices | ||
DHCPClient.cpp | 5223 | Revisions Annotate |
DHCPClient.h | 907 | Revisions Annotate |
MyNetDnsRequest.cpp | 5723 | Revisions Annotate |
MyNetDnsRequest.h | 958 | Revisions Annotate |
MyNetIf.cpp | 1625 | Revisions Annotate |
MyNetIf.h | 524 | Revisions Annotate |
MyNetTcpSocket.cpp | 7217 | Revisions Annotate |
MyNetTcpSocket.h | 885 | Revisions Annotate |
MyNetUdpSocket.cpp | 4661 | Revisions Annotate |
MyNetUdpSocket.h | 666 | Revisions Annotate |
WIZ820ioNetIf.cpp | 3296 | Revisions Annotate |
WIZ820ioNetIf.h | 1522 | Revisions Annotate |
dnsname.h | 1262 | Revisions Annotate |
w5200.cpp | 4720 | Revisions Annotate |
w5200.h | 12294 | Revisions Annotate |
w5200debug.cpp | 1039 | Revisions Annotate |
w5200debug.h | 1036 | Revisions Annotate |