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/CmdDeviceId.cpp
- Committer:
- Mike Fiore
- Date:
- 2015-06-25
- Revision:
- 1:e52ae6584f1c
- Child:
- 9:ff62b20f7000
File content as of revision 1:e52ae6584f1c:
#include "CmdDeviceId.h"
#include <algorithm>
CmdDeviceId::CmdDeviceId(mDot* dot, mts::MTSSerial& serial) :
Command(dot, "Device ID", "AT+DI", "Device EUI (unique, set at factory) (8 bytes)"), _serial(serial)
{
_help = std::string(text()) + ": " + std::string(desc());
_usage = "(hex:8)";
_queryable = true;
}
uint32_t CmdDeviceId::action(std::vector<std::string> args)
{
if (args.size() == 1)
{
if (_dot->getVerbose())
_serial.writef("%s: ", name());
_serial.writef("%s\r\n", mts::Text::bin2hexString(_dot->getDeviceId(), ":").c_str());
}
return 0;
}
bool CmdDeviceId::verify(std::vector<std::string> args)
{
if (args.size() == 1)
return true;
setErrorMessage("Invalid arguments");
return false;
}
