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 libxDot-dev-mbed5-deprecated
Fork of Dot-AT-Firmware by
CommandTerminal/CmdTxPower.cpp
- Committer:
- jenkins@jenkinsdm1
- Date:
- 2017-06-19
- Revision:
- 16:d5cf2af81a6d
- Parent:
- 14:f9a77400b622
File content as of revision 16:d5cf2af81a6d:
#include "CmdTxPower.h"
CmdTxPower::CmdTxPower() :
Command("Tx Power", "AT+TXP", "Set the radio TX power before antenna gain in dBm", "(2-36, Depends on Channel Plan)") {
_queryable = true;
}
uint32_t CmdTxPower::action(std::vector<std::string> args)
{
if (args.size() == 1)
{
CommandTerminal::Serial()->writef("%lu\r\n", CommandTerminal::Dot()->getTxPower());
}
else if (args.size() == 2)
{
int power = 0;
sscanf(args[1].c_str(), "%d", &power);
if (CommandTerminal::Dot()->setTxPower(power) != mDot::MDOT_OK)
{
CommandTerminal::setErrorMessage(CommandTerminal::Dot()->getLastError());;
return 1;
}
}
return 0;
}
bool CmdTxPower::verify(std::vector<std::string> args)
{
if (args.size() == 1)
return true;
if (args.size() == 2)
{
int power = 0;
if (sscanf(args[1].c_str(), "%d", &power) != 1) {
CommandTerminal::setErrorMessage("Invalid argument");
return false;
}
if (power < CommandTerminal::Dot()->getMinTxPower() || power > CommandTerminal::Dot()->getMaxTxPower())
{
char buf[8];
std::string error = "Invalid power, expects ";
snprintf(buf, sizeof(buf), "(%d-%d)", CommandTerminal::Dot()->getMinTxPower(), CommandTerminal::Dot()->getMaxTxPower());
error.append(buf);
CommandTerminal::setErrorMessage(error);
return false;
}
return true;
}
CommandTerminal::setErrorMessage("Invalid arguments");
return false;
}
