firm newest
Dependencies: MTS-Serial libmDot-dev-mbed5-deprecated
Diff: CommandTerminal/CmdDisableDutyCycle.cpp
- Revision:
- 0:3c869a8cb8f8
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/CommandTerminal/CmdDisableDutyCycle.cpp Thu Oct 18 04:18:48 2018 +0000 @@ -0,0 +1,38 @@ +#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; +}