I added functionality to get the RSSI, BER, and Cell Neighbor for reporting connection issues to M2X

Revision:
38:8c51632da81f
Parent:
35:7c9d0f29ff7a
--- a/WncController.cpp	Thu Mar 09 00:58:50 2017 +0000
+++ b/WncController.cpp	Thu Apr 18 21:28:05 2019 +0000
@@ -1473,6 +1473,13 @@
     return (at_send_wnc_cmd("AT+CMGL", log, m_sCmdTimeoutMs) == WNC_AT_CMD_OK);
 }
 
+string * WncController::at_readCellNeighbor_wnc()
+{
+    string * pRespStr;
+    at_send_wnc_cmd("$QCRSRP?", &pRespStr, m_sCmdTimeoutMs);
+    return pRespStr;
+}
+
 size_t WncController::at_readSMStext_wnc(const char n, const char ** log)
 {
     static string smsReadTxtStr;