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
Mike Fiore 7:a31236c2e75c 2 #ifndef __CMDSENDCONTINUOUS_H__
Mike Fiore 7:a31236c2e75c 3 #define __CMDSENDCONTINUOUS_H__
Mike Fiore 7:a31236c2e75c 4
Mike Fiore 7:a31236c2e75c 5 #include "Command.h"
Mike Fiore 7:a31236c2e75c 6
Mike Fiore 7:a31236c2e75c 7 class CmdSendContinuous : public Command {
Mike Fiore 7:a31236c2e75c 8
Mike Fiore 7:a31236c2e75c 9 public:
Mike Fiore 7:a31236c2e75c 10
Mike Fiore 7:a31236c2e75c 11 CmdSendContinuous(mDot* dot);
Mike Fiore 7:a31236c2e75c 12 uint32_t action(std::vector<std::string> args);
Mike Fiore 7:a31236c2e75c 13
Mike Fiore 7:a31236c2e75c 14 private:
Mike Fiore 7:a31236c2e75c 15
Mike Fiore 7:a31236c2e75c 16 };
Mike Fiore 7:a31236c2e75c 17
Mike Fiore 7:a31236c2e75c 18 #endif // __CMDSENDCONTINUOUS_H__