DHCP Client example
Dependencies: WIZnetInterface mbed
Revision 0:ae668353b28e, committed 2015-07-06
- Comitter:
- embeddist
- Date:
- Mon Jul 06 04:24:31 2015 +0000
- Commit message:
- DHCPAdressPrinter
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WIZnetInterface.lib Mon Jul 06 04:24:31 2015 +0000 @@ -0,0 +1,1 @@ +https://developer.mbed.org/teams/WIZnet/code/WIZnetInterface/#d8773cd4edc5
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Mon Jul 06 04:24:31 2015 +0000
@@ -0,0 +1,39 @@
+#include "mbed.h"
+#include "EthernetInterface.h"
+
+DigitalOut myled(LED1);
+
+// Initialize the Ethernet client library
+EthernetInterface eth;
+
+int main() {
+ // Enter a MAC address for your controller below.
+ uint8_t mac_addr[6] = {0x00, 0x08, 0xDC, 0x00, 0x01, 0x02};
+
+ // initializing MAC address
+ eth.init(mac_addr);
+
+ // Check Ethenret Link
+ if(eth.link() == true)
+ printf("- Ethernet PHY Link-Done \r\n");
+ else
+ printf("- Ethernet PHY Link- Fail\r\n");
+
+ // Start Ethernet connecting
+ if ( eth.connect() < 0 )
+ printf("Fail - Ethernet Connecing");
+ else
+ {
+ // Print your local IP address:
+ printf("IP=%s\n\r",eth.getIPAddress());
+ printf("MASK=%s\n\r",eth.getNetworkMask());
+ printf("GW=%s\n\r",eth.getGateway());
+ }
+
+ while(1) {
+ myled = 1;
+ wait(0.2);
+ myled = 0;
+ wait(0.2);
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Mon Jul 06 04:24:31 2015 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/7cff1c4259d7 \ No newline at end of file
Soohwan Kim