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:
jreiss
Date:
Mon Jul 11 14:06:36 2016 +0000
Parent:
4:13fa673bb966
Child:
6:cc61867b45ce
Commit message:
Skip join if set to MANUAL join mode

Changed in this revision

Mode/ModeJoin.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/Mode/ModeJoin.cpp	Tue May 31 13:12:21 2016 -0500
+++ b/Mode/ModeJoin.cpp	Mon Jul 11 14:06:36 2016 +0000
@@ -34,6 +34,11 @@
     // clear any stale signals
     osSignalClear(_main_id, buttonSignal | loraSignal);
 
+    if (_dot->getJoinMode() == mDot::MANUAL) {
+        // already joined
+        return true;
+    }
+
     _initial_data_rate = _dot->getTxDataRate();
     _initial_power = _dot->getTxPower();