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

Dependencies:   mbed FXOS8700CQ mbed-rtos WNCInterface M2XStreamClient-JMF jsonlite

Revision:
12:0dfd0129f75d
Parent:
5:8099493f2c35
--- a/sensors.h	Thu Oct 26 04:29:26 2017 +0000
+++ b/sensors.h	Thu Apr 18 21:30:09 2019 +0000
@@ -14,7 +14,7 @@
 language governing permissions and limitations under the License.
 
 ======================================================================== */
-
+#include <string>
 #ifndef __SENSORS_H_
 #define __SENSORS_H_
 
@@ -43,6 +43,9 @@
     int     Proximity;
     float   Temperature_Si7020;
     float   Humidity_Si7020;
+    int16_t   Signal_Strength;
+    int16_t   Error;
+    string *  Neighbor;
 } K64F_Sensors_t ;
 
 extern K64F_Sensors_t  SENSOR_DATA;