Fork of KL46Z Wifi version. Moved to KL25Z as umbrella stand now requires 2 SPIs, thus requires 46z.

Dependencies:   WIZnet_Library_ASE mbed nanoservice_client_1_12

Fork of Trenton_Doormat_FRDM-KL25Z_ETH by Eric Gowland

Revision:
23:7304a998959b
Parent:
16:3fb612af0dc5
--- a/main.h	Wed Jul 23 10:04:47 2014 +0000
+++ b/main.h	Tue Aug 26 15:21:11 2014 +0000
@@ -16,7 +16,7 @@
 #ifndef MAIN_H
 #define MAIN_H
 
-#include "WiflyInterface.h"
+#include "WIZnetInterface.h"
 
  // Default SSID Settings
 #define AP_KEY       "asedemo1"
@@ -28,5 +28,10 @@
 extern char endpoint_name[];
 extern uint8_t ep_type[];
 extern uint8_t lifetime_ptr[];
+#define USE_DHCP
+/* Manual IP configurations, if DHCP not defined TODO These may not work!!!*/
+#define IP      "192.168.1.15"
+#define MASK    "255.255.255.0"
+#define GW      "192.168.1.1"
 
 #endif