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/WIFIInfo.h	Mon Feb 15 15:17:50 2016 +0000
+++ b/Type/WIFIInfo.h	Wed Mar 16 15:04:46 2016 +0000
@@ -11,8 +11,13 @@
 class WIFIInfo
 {
 private :
+    /**
+    * must be none 0 value, when used ad AP control.
+    */
     char channel;
-    string ssid;
+    
+    char * ssid;
+    
     SecurityMode mode;
 
 public:
@@ -25,8 +30,8 @@
     WIFIInfo();
 
     WIFIInfo(const char * SSID, const SecurityMode securityMode);
-    
-    //~WIFIInfo();
+
+    virtual ~WIFIInfo();
 
     virtual WIFIInfo * SetSSID(const char * SSID);
 
@@ -34,7 +39,7 @@
 
     virtual WIFIInfo * SetChannel(const char channel);
 
-    string & ToString();
+    const char * ToString();
 };
 }