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-mbed5
CommandTerminal/CmdFrequencySubBand.cpp
- Committer:
- Mike Fiore
- Date:
- 2016-11-04
- Revision:
- 14:f9a77400b622
- Parent:
- 9:ff62b20f7000
File content as of revision 14:f9a77400b622:
#include "CmdFrequencySubBand.h"
CmdFrequencySubBand::CmdFrequencySubBand() :
Command("Frequency Sub-band", "AT+FSB", "Set the frequency sub-band for US915 and AU915, (0:ALL, 1-8)", "(0-8)")
{
_queryable = true;
}
uint32_t CmdFrequencySubBand::action(std::vector<std::string> args)
{
if (args.size() == 1)
{
CommandTerminal::Serial()->writef("%u\r\n", CommandTerminal::Dot()->getFrequencySubBand());
}
else if (args.size() == 2)
{
uint32_t band;
sscanf(args[1].c_str(), "%lu", &band);
if (CommandTerminal::Dot()->setFrequencySubBand(band) != mDot::MDOT_OK) {
CommandTerminal::setErrorMessage(CommandTerminal::Dot()->getLastError());;
return 1;
}
}
return 0;
}
bool CmdFrequencySubBand::verify(std::vector<std::string> args)
{
if (args.size() == 1)
return true;
if (args.size() == 2)
{
int band;
if (sscanf(args[1].c_str(), "%d", &band) != 1) {
CommandTerminal::setErrorMessage("Invalid arguments");
return false;
}
if (band < mDot::FSB_ALL || band > mDot::FSB_8) {
CommandTerminal::setErrorMessage("Invalid channel band, expects (0-8)");
return false;
}
return true;
}
CommandTerminal::setErrorMessage("Invalid arguments");
return false;
}