Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: MTS-Serial libmDot mbed-rtos mbed
Fork of mDot_USB_AT_firmware by
CmdSendContinuous.cpp
00001 #include "CmdSendContinuous.h" 00002 #include "CommandTerminal.h" 00003 00004 CmdSendContinuous::CmdSendContinuous(mDot* dot, mts::MTSSerial& serial) 00005 : 00006 Command(dot, "Send Continuous", "AT+SENDC", "Send un-modulated data continuously"), 00007 _serial(serial) { 00008 _help = std::string(text()) + ": " + std::string(desc()); 00009 _usage = "(string:242)"; 00010 } 00011 00012 uint32_t CmdSendContinuous::action(std::vector<std::string> args) { 00013 00014 _dot->sendContinuous(); 00015 return 0; 00016 } 00017 00018 bool CmdSendContinuous::verify(std::vector<std::string> args) { 00019 00020 return true; 00021 }
Generated on Tue Jul 12 2022 20:37:29 by
1.7.2
