Custom Channel Plan version of MTDOT Box firmware

Dependencies:   DOGS102 GpsParser ISL29011 MMA845x MPL3115A2 MTS-Serial NCP5623B libmDot-Custom mDot_Channel_Plans

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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CmdSendContinuous.cpp Source File

CmdSendContinuous.cpp

00001 #include "CmdSendContinuous.h"
00002 
00003 CmdSendContinuous::CmdSendContinuous(mDot* dot)
00004 : Command(dot, "Send Continuous", "AT+SENDC", "Send un-modulated data continuously") {
00005 }
00006 
00007 uint32_t CmdSendContinuous::action(std::vector<std::string> args) {
00008 
00009     _dot->sendContinuous(true);
00010 
00011     return 0;
00012 }
00013