few changes for RTS/CTS control
Dependencies: MTS-Serial libmDot mbed-rtos mbed
Fork of mDot_AT_firmware by
CommandTerminal/CmdJoinRetries.cpp
- Committer:
- serg838
- Date:
- 2016-10-25
- Revision:
- 11:77b7911263da
- Parent:
- 9:ff62b20f7000
File content as of revision 11:77b7911263da:
#include "CmdJoinRetries.h" CmdJoinRetries::CmdJoinRetries(mDot* dot, mts::MTSSerial& serial) : Command(dot, "Join Retries", "AT+JR", "US915 AUTO_OTA Frequency sub-band search retries (0:disable,1-255:attempts)"), _serial(serial) { _help = std::string(text()) + ": " + std::string(desc()); _usage = "(0-255)"; _queryable = true; } uint32_t CmdJoinRetries::action(std::vector<std::string> args) { if (args.size() == 1) { if (_dot->getVerbose()) _serial.writef("Join Retries: "); _serial.writef("%u\r\n", _dot->getJoinRetries()); } else if (args.size() == 2) { int32_t code; int retries; sscanf(args[1].c_str(), "%d", &retries); if ((code = _dot->setJoinRetries(retries)) != mDot::MDOT_OK) { setErrorMessage(_dot->getLastError());; return 1; } } return 0; } bool CmdJoinRetries::verify(std::vector<std::string> args) { if (args.size() == 1) return true; if (args.size() == 2) { int retries; if (sscanf(args[1].c_str(), "%d", &retries) == 1) { if (retries < 0 || retries > 255) { setErrorMessage("Invalid retries, expects (0-255)"); return false; } return true; } } setErrorMessage("Invalid arguments"); return false; }