Murata RF modules are designed to simplify wireless development and certification by minimizing the amount of RF expertise you need to wirelessly enable a wide range of applications.

Revision:
9:0ce800923eda
Parent:
1:fd19bd683e90
--- a/Type/IPAddress.h	Mon Feb 15 15:17:50 2016 +0000
+++ b/Type/IPAddress.h	Wed Mar 16 15:04:46 2016 +0000
@@ -14,11 +14,13 @@
 {
 private:
     char address[4];
+    
+    char ip[16];
 
 public :
     IPAddress();
 
-    IPAddress(const string & ip);
+    IPAddress(const char * ipString);
 
     void SetValue(const char * data, int offset = 0);
 
@@ -26,7 +28,7 @@
 
     virtual int GetValueLength();
     
-    void ToString(string * ipString);
+    const char * ToString();
 };
 }