firm newest
Dependencies: MTS-Serial libmDot-dev-mbed5-deprecated
CommandTerminal/CmdDisableDutyCycle.cpp
- Committer:
- nguyenhoang9x5555
- Date:
- 2018-10-22
- Revision:
- 1:c1c6549b9333
- Parent:
- 0:3c869a8cb8f8
File content as of revision 1:c1c6549b9333:
#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; }