WIZ820io(W5200) network interface、EthernetNetIf compatible.

/media/uploads/va009039/wiz820ionetif.jpg

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();
    }
}

WIZ820ioNetIf.h

Committer:
va009039
Date:
2013-03-22
Revision:
0:bdeec5f86894
Child:
1:22b9052d864d

File content as of revision 0:bdeec5f86894:

// WIZ820ioNetIf.h 2012/4/23

/** \file
WIZ820io network interface header file
*/
#ifndef WIZ820IO_NETIF_H
#define WIZ820IO_NETIF_H
#include "W5200NetIf.h"

///WIZ820io network interface
class WIZ820ioNetIf : public W5200NetIf {
public:
    void reset(PinName _reset);
    ///Brings the interface up
    /**
    Uses DHCP if necessary
    @param timeout_ms : You can set the timeout parameter in milliseconds, if not it defaults to 15s
    @return : 0 on success or -1 on timeout
    */    
    int setup(int timeout_ms = 15000);
};
#endif //WIZ820IO_NETIF_H