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: libmDot-Custom MTS-Serial
Fork of mDot_AT_firmware_CUSTOM by
To change channel plans replace AS923 with AU915, EU868, KR920 or US915 on line 15
#define CHANNEL_PLAN CP_AS923
CommandTerminal/CmdFrequencySubBand.cpp
- Committer:
- Jason Reiss
- Date:
- 2016-08-29
- Revision:
- 14:e80ace5a6834
- Parent:
- 9:ff62b20f7000
File content as of revision 14:e80ace5a6834:
#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; }