MultiTech / Mbed OS MTDOT-BOX-EVB-Factory-Firmware

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

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