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: DOGS102 GpsParser ISL29011 MMA845x MPL3115A2 MTS-Serial NCP5623B libmDot-dev-mbed5-deprecated
Fork of MTDOT-BOX-EVB-Factory-Firmware by
CommandTerminal/CmdSendContinuous.cpp
- Committer:
- ScottHoppeMultitech
- Date:
- 2017-12-28
- Revision:
- 12:671b15182260
- Parent:
- 7:a31236c2e75c
File content as of revision 12:671b15182260:
#include "CmdSendContinuous.h"
CmdSendContinuous::CmdSendContinuous(mDot* dot)
: Command(dot, "Send Continuous", "AT+SENDC", "Send un-modulated data continuously") {
}
uint32_t CmdSendContinuous::action(std::vector<std::string> args) {
_dot->sendContinuous(true);
return 0;
}
