MQTT client test with W5200 ethernet shield

Dependents:   IBMIoTClientEthernetExample_W5200

Fork of W5500Interface by W5500-Ethernet-Interface Makers

Committer:
Bongjun
Date:
Wed Aug 20 00:28:37 2014 +0000
Revision:
0:e11e8793c3ce
Child:
11:313e091ab3f9
first release.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Bongjun 0:e11e8793c3ce 1
Bongjun 0:e11e8793c3ce 2 #pragma once
Bongjun 0:e11e8793c3ce 3
Bongjun 0:e11e8793c3ce 4 //#include "mbed.h"
Bongjun 0:e11e8793c3ce 5 //#include "mbed_debug.h"
Bongjun 0:e11e8793c3ce 6
Bongjun 0:e11e8793c3ce 7 #define USE_W5500
Bongjun 0:e11e8793c3ce 8 //#define USE_W5200 // don't use this library
Bongjun 0:e11e8793c3ce 9 //#define USE_W5100 // don't use this library
Bongjun 0:e11e8793c3ce 10
Bongjun 0:e11e8793c3ce 11 #if defined(USE_W5500)
Bongjun 0:e11e8793c3ce 12 #include "W5500.h"
Bongjun 0:e11e8793c3ce 13 //#define USE_WIZ550IO_MAC // want to use the default MAC address stored in the WIZ550io
Bongjun 0:e11e8793c3ce 14 #endif
Bongjun 0:e11e8793c3ce 15
Bongjun 0:e11e8793c3ce 16 /*
Bongjun 0:e11e8793c3ce 17 // current library don't want to support old chips.
Bongjun 0:e11e8793c3ce 18 #if defined(USE_W5200)
Bongjun 0:e11e8793c3ce 19 #include "W5200.h"
Bongjun 0:e11e8793c3ce 20 #endif
Bongjun 0:e11e8793c3ce 21
Bongjun 0:e11e8793c3ce 22 #if defined(USE_W5100)
Bongjun 0:e11e8793c3ce 23 #include "W5100.h"
Bongjun 0:e11e8793c3ce 24 #endif
Bongjun 0:e11e8793c3ce 25 */