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-mbed5
Fork of Dot-AT-Firmware by
CommandTerminal/CmdDisableDutyCycle.cpp
- Committer:
- Mike Fiore
- Date:
- 2016-11-04
- Revision:
- 14:f9a77400b622
File content as of revision 14:f9a77400b622:
#include "CmdDisableDutyCycle.h"
CmdDisableDutyCycle::CmdDisableDutyCycle()
: Command("Disable Duty Cycle", "AT+DD", "Disable duty cycle for TESTING PURPOSES ONLY!!! This setting will not be saved to config.", "(0-1)") {
_queryable = true;
}
uint32_t CmdDisableDutyCycle::action(std::vector<std::string> args) {
if (args.size() == 1) {
CommandTerminal::Serial()->writef("%lu\r\n", CommandTerminal::Dot()->getDisableDutyCycle());
} else if (args.size() == 2) {
CommandTerminal::Dot()->setDisableDutyCycle(args[1] == "1");
}
return 0;
}
bool CmdDisableDutyCycle::verify(std::vector<std::string> args) {
if (args.size() > 2) {
CommandTerminal::setErrorMessage("Invalid parameter, expects (0-1)");
return false;
}
if (args.size() == 2) {
int bytes;
sscanf(args[1].c_str(), "%d", &bytes);
if (!(bytes == 0 || bytes == 1)) {
CommandTerminal::setErrorMessage("Invalid parameter, expects (0-1)");
return false;
}
}
return true;
}
