AT terminal for the mDot using the USB debug port instead of the serial port.

Dependencies:   MTS-Serial libmDot-mbed5

Fork of Dot-AT-Firmware by MultiTech

CommandTerminal/CmdJoinRetries.cpp

Committer:
Mike Fiore
Date:
2016-04-04
Revision:
9:ff62b20f7000
Parent:
1:e52ae6584f1c
Child:
14:f9a77400b622

File content as of revision 9:ff62b20f7000:

#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;
}