Custom "Installer Assistant" software. Modified Single Sweep Mode. Goes right into single sweep mode upon power-up and displays signal strength. Works with mbed-os 5.1.2 and mdot lib 5.1.5

Dependencies:   DOGS102 GpsParser ISL29011 MMA845x MPL3115A2 MTS-Serial NCP5623B libmDot-dev-mbed5-deprecated

Fork of MTDOT-BOX-EVB-Factory-Firmware by MultiTech

Files at this revision

API Documentation at this revision

Comitter:
Mike Fiore
Date:
Tue May 31 13:11:26 2016 -0500
Parent:
1:71125aa00e33
Child:
4:13fa673bb966
Commit message:
bug fix - explicitly initialize variables so AT+GSDF functions correctly

Changed in this revision

CommandTerminal/CmdGetSurveyDataFile.cpp Show annotated file Show diff for this revision Revisions of this file
version.h Show annotated file Show diff for this revision Revisions of this file
--- a/CommandTerminal/CmdGetSurveyDataFile.cpp	Thu Feb 04 12:36:36 2016 -0600
+++ b/CommandTerminal/CmdGetSurveyDataFile.cpp	Tue May 31 13:11:26 2016 -0500
@@ -31,8 +31,8 @@
     mDot::mdot_file file;
     int buf_size = 512;
     char buf[buf_size];
-    int read;
-    int read_size;
+    int read = 0;
+    int read_size = 0;
 
     file = _dot->openUserFile(file_name, mDot::FM_RDONLY);
     if (file.fd < 0) {
--- a/version.h	Thu Feb 04 12:36:36 2016 -0600
+++ b/version.h	Tue May 31 13:11:26 2016 -0500
@@ -1,6 +1,6 @@
-#ifndef __VERSION_H__
-#define __VERSION_H__
-
-#define MTDOT_BOX_VERSION "2.0.0"
-
+#ifndef __VERSION_H__
+#define __VERSION_H__
+
+#define MTDOT_BOX_VERSION "2.1.1"
+
 #endif