mDot AT-Firmware for testing
Dependencies: MTS-Serial libmDot-mbed5
Fork of Dot-AT-Firmware by
Diff: CommandTerminal/CmdDeviceId.cpp
- Revision:
- 9:ff62b20f7000
- Parent:
- 1:e52ae6584f1c
- Child:
- 14:f9a77400b622
--- a/CommandTerminal/CmdDeviceId.cpp Mon Apr 04 13:17:44 2016 +0000 +++ b/CommandTerminal/CmdDeviceId.cpp Mon Apr 04 09:00:31 2016 -0500 @@ -2,7 +2,7 @@ #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) + Command(dot, "Device ID", "AT+DI", "Device EUI-64 (MSB) (unique, set at factory) (8 bytes)"), _serial(serial) { _help = std::string(text()) + ": " + std::string(desc()); _usage = "(hex:8)"; @@ -15,7 +15,7 @@ { if (_dot->getVerbose()) _serial.writef("%s: ", name()); - _serial.writef("%s\r\n", mts::Text::bin2hexString(_dot->getDeviceId(), ":").c_str()); + _serial.writef("%s\r\n", mts::Text::bin2hexString(_dot->getDeviceId(), "-").c_str()); } return 0;