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:
0:8e83b9448758
--- a/Response/WIFIStatusResponse.cpp	Mon Feb 15 15:17:50 2016 +0000
+++ b/Response/WIFIStatusResponse.cpp	Wed Mar 16 15:04:46 2016 +0000
@@ -19,11 +19,11 @@
     return GetData() + 3;
 }
 
-string WIFIStatusResponse::GetSSID()
+const char * WIFIStatusResponse::GetSSID()
 {
     WIFIStatusCode code = GetWiFiStatusCode();
     if (code == STA_JOINED || code == AP_STARTED)
-        return string(GetData() + 9);
+        return GetData() + 9;
 
-    return string();
+    return NULL;
 }
\ No newline at end of file