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/CmdNetworkId.cpp
- Committer:
- Mike Fiore
- Date:
- 2016-04-04
- Revision:
- 9:ff62b20f7000
- Parent:
- 1:e52ae6584f1c
- Child:
- 14:e80ace5a6834
File content as of revision 9:ff62b20f7000:
#include "CmdNetworkId.h"
CmdNetworkId::CmdNetworkId(mDot* dot, mts::MTSSerial& serial) :
Command(dot, "Network ID", "AT+NI", "Configured Network Name/EUI (MSB, App EUI in LoRaWAN) AT+NI=0,hex AT+NI=1,network_name (Net ID = crc64(network_name)) (8 bytes)"),
_serial(serial)
{
_help = std::string(text()) + ": " + std::string(desc());
_usage = "(0,(hex:8)),(1,(string:128))";
_queryable = true;
}
uint32_t CmdNetworkId::action(std::vector<std::string> args)
{
if (args.size() == 1)
{
if (_dot->getVerbose())
_serial.writef("Network ID: ");
_serial.writef("%s\r\n", mts::Text::bin2hexString(_dot->getNetworkId(), "-").c_str());
if (!_dot->getNetworkName().empty())
_serial.writef("Passphrase: '%s'\r\n", _dot->getNetworkName().c_str());
}
else
{
int32_t code;
if (args[1].find("1") == 0 && args[1].size() == 1)
{
std::string text;
if (args.size() > 3)
{
// passphrase was split on commas
for (size_t i = 2; i < args.size(); i++)
{
text.append(args[i]);
if (i < args.size() - 1)
text.append(",");
}
}
else
{
text = args[2];
}
if ((code = _dot->setNetworkName(text)) == mDot::MDOT_OK)
{
_serial.writef("Set Network Name: ");
_serial.writef("%s\r\n", text.c_str());
}
else
{
setErrorMessage(_dot->getLastError());;
return 1;
}
}
else
{
std::vector<uint8_t> NewKey;
readByteArray(args[2], NewKey, EUI_LENGTH);
if ((code = _dot->setNetworkId(NewKey)) == mDot::MDOT_OK)
{
_serial.writef("Set Network ID: ");
_serial.writef("%s\r\n", mts::Text::bin2hexString(NewKey, "-").c_str());
}
else
{
setErrorMessage(_dot->getLastError());;
return 1;
}
}
}
return 0;
}
bool CmdNetworkId::verify(std::vector<std::string> args)
{
if (args.size() == 1)
return true;
if (args.size() == 3) {
if (args[1] != "0" && args[1] != "1") {
setErrorMessage("Invalid type, expects (0,1)");
return false;
}
if (args[1] == "0" && !isHexString(args[2], 8)) {
setErrorMessage("Invalid ID, expects (hex:8");
return false;
}
if (args[1] == "1" && args[2].size() < 8) {
setErrorMessage("Invalid name, expects minimum 8 characters");
return false;
}
if (args[1] == "1" && args[2].size() > 128) {
setErrorMessage("Invalid name, expects (string:128)");
return false;
}
return true;
}
setErrorMessage("Invalid arguments");
return false;
}
