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

Committer:
ScottHoppeMultitech
Date:
Thu Dec 28 21:35:48 2017 +0000
Revision:
12:671b15182260
Parent:
7:a31236c2e75c
Custom mDotBox software -modified single sweep mode - goes straight into a single sweep mode and display signal strength. Works With mbed-os 5.1.2 and mdot lib 5.1.5

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Mike Fiore 7:a31236c2e75c 1 #include "CmdSendContinuous.h"
Mike Fiore 7:a31236c2e75c 2
Mike Fiore 7:a31236c2e75c 3 CmdSendContinuous::CmdSendContinuous(mDot* dot)
Mike Fiore 7:a31236c2e75c 4 : Command(dot, "Send Continuous", "AT+SENDC", "Send un-modulated data continuously") {
Mike Fiore 7:a31236c2e75c 5 }
Mike Fiore 7:a31236c2e75c 6
Mike Fiore 7:a31236c2e75c 7 uint32_t CmdSendContinuous::action(std::vector<std::string> args) {
Mike Fiore 7:a31236c2e75c 8
Mike Fiore 7:a31236c2e75c 9 _dot->sendContinuous(true);
Mike Fiore 7:a31236c2e75c 10
Mike Fiore 7:a31236c2e75c 11 return 0;
Mike Fiore 7:a31236c2e75c 12 }
Mike Fiore 7:a31236c2e75c 13