with 36errors

Dependencies:   MTS-Serial libxDot-dev-mbed5-deprecated

Fork of Dot-AT-Firmware by MultiTech

Committer:
Mike Fiore
Date:
Tue Aug 18 11:21:43 2015 -0500
Revision:
4:666017851052
Parent:
1:e52ae6584f1c
Child:
9:ff62b20f7000
update mdot-firmware to 0.1.2

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Mike Fiore 1:e52ae6584f1c 1 #include "CmdDisplayConfig.h"
Mike Fiore 1:e52ae6584f1c 2
Mike Fiore 1:e52ae6584f1c 3 CmdDisplayConfig::CmdDisplayConfig(mDot* dot, mts::MTSSerial& serial)
Mike Fiore 1:e52ae6584f1c 4 :
Mike Fiore 1:e52ae6584f1c 5 Command(dot, "Display Settings", "AT&V", "Displays current settings and status"),
Mike Fiore 1:e52ae6584f1c 6 _serial(serial) {
Mike Fiore 1:e52ae6584f1c 7 _help = std::string(text()) + ": " + std::string(desc());
Mike Fiore 1:e52ae6584f1c 8 _usage = "TABLE";
Mike Fiore 1:e52ae6584f1c 9 }
Mike Fiore 1:e52ae6584f1c 10
Mike Fiore 1:e52ae6584f1c 11 uint32_t CmdDisplayConfig::action(std::vector<std::string> args) {
Mike Fiore 1:e52ae6584f1c 12 _serial.writef("Device ID:\t\t");
Mike Fiore 1:e52ae6584f1c 13 _serial.writef("%s\r\n", mts::Text::bin2hexString(_dot->getDeviceId(), ":").c_str());
Mike Fiore 1:e52ae6584f1c 14
Mike Fiore 1:e52ae6584f1c 15 _serial.writef("Frequency Band:\t\t%s\r\n", mDot::FrequencyBandStr(_dot->getFrequencyBand()).c_str());
Mike Fiore 1:e52ae6584f1c 16 _serial.writef("Frequency Sub Band:\t%u\r\n", _dot->getFrequencySubBand());
Mike Fiore 1:e52ae6584f1c 17
Mike Fiore 1:e52ae6584f1c 18 _serial.writef("Public Network:\t\t%s\r\n", _dot->getPublicNetwork() ? "on" : "off");
Mike Fiore 1:e52ae6584f1c 19 _serial.writef("Start Up Mode:\t\t%s\r\n", mDot::ModeStr(_dot->getStartUpMode()).c_str());
Mike Fiore 1:e52ae6584f1c 20
Mike Fiore 1:e52ae6584f1c 21 _serial.writef("Network Address:\t%s\r\n", mts::Text::bin2hexString(_dot->getNetworkAddress()).c_str());
Mike Fiore 1:e52ae6584f1c 22
Mike Fiore 1:e52ae6584f1c 23 _serial.writef("Network ID:\t\t");
Mike Fiore 1:e52ae6584f1c 24 _serial.writef("%s\r\n", mts::Text::bin2hexString(_dot->getNetworkId(), ":").c_str());
Mike Fiore 1:e52ae6584f1c 25
Mike Fiore 1:e52ae6584f1c 26 _serial.writef("Network ID Passphrase:\t%s\r\n", _dot->getNetworkName().c_str());
Mike Fiore 1:e52ae6584f1c 27
Mike Fiore 1:e52ae6584f1c 28 _serial.writef("Network Key:\t\t");
Mike Fiore 1:e52ae6584f1c 29 _serial.writef("%s\r\n", mts::Text::bin2hexString(_dot->getNetworkKey(), ".").c_str());
Mike Fiore 1:e52ae6584f1c 30
Mike Fiore 1:e52ae6584f1c 31 _serial.writef("Network Key Passphrase:\t%s\r\n", _dot->getNetworkPassphrase().c_str());
Mike Fiore 1:e52ae6584f1c 32
Mike Fiore 1:e52ae6584f1c 33 _serial.writef("Network Session Key:\t");
Mike Fiore 1:e52ae6584f1c 34 _serial.writef("%s\r\n", mts::Text::bin2hexString(_dot->getNetworkSessionKey(), ".").c_str());
Mike Fiore 1:e52ae6584f1c 35
Mike Fiore 1:e52ae6584f1c 36 _serial.writef("Data Session Key:\t");
Mike Fiore 1:e52ae6584f1c 37 _serial.writef("%s\r\n", mts::Text::bin2hexString(_dot->getDataSessionKey(), ".").c_str());
Mike Fiore 1:e52ae6584f1c 38
Mike Fiore 1:e52ae6584f1c 39 _serial.writef("Network Join Mode:\t%s\r\n", mDot::JoinModeStr(_dot->getJoinMode()).c_str());
Mike Fiore 1:e52ae6584f1c 40
Mike Fiore 1:e52ae6584f1c 41 _serial.writef("Network Join Retries:\t%u\r\n", _dot->getJoinRetries());
Mike Fiore 1:e52ae6584f1c 42
Mike Fiore 4:666017851052 43 _serial.writef("Join Byte Order:\t%s\r\n", _dot->getJoinByteOrder() ? "MSB" : "LSB");
Mike Fiore 4:666017851052 44
Mike Fiore 1:e52ae6584f1c 45 _serial.writef("Link Check Threshold:\t");
Mike Fiore 1:e52ae6584f1c 46 if (_dot->getLinkCheckThreshold() == 0) {
Mike Fiore 1:e52ae6584f1c 47 _serial.writef("off\r\n");
Mike Fiore 1:e52ae6584f1c 48 } else {
Mike Fiore 1:e52ae6584f1c 49 _serial.writef("%lu\r\n", _dot->getLinkCheckThreshold());
Mike Fiore 1:e52ae6584f1c 50 }
Mike Fiore 1:e52ae6584f1c 51
Mike Fiore 1:e52ae6584f1c 52 _serial.writef("Link Check Count:\t");
Mike Fiore 1:e52ae6584f1c 53 if (_dot->getLinkCheckCount() == 0) {
Mike Fiore 1:e52ae6584f1c 54 _serial.writef("off\r\n");
Mike Fiore 1:e52ae6584f1c 55 } else {
Mike Fiore 1:e52ae6584f1c 56 _serial.writef("%lu packets\r\n", _dot->getLinkCheckCount());
Mike Fiore 1:e52ae6584f1c 57 }
Mike Fiore 1:e52ae6584f1c 58
Mike Fiore 1:e52ae6584f1c 59 _serial.writef("Error Correction:\t");
Mike Fiore 1:e52ae6584f1c 60 if (_dot->getFec() == 0) {
Mike Fiore 1:e52ae6584f1c 61 _serial.writef("off\r\n");
Mike Fiore 1:e52ae6584f1c 62 } else {
Mike Fiore 1:e52ae6584f1c 63 _serial.writef("%u bytes\r\n", _dot->getFec());
Mike Fiore 1:e52ae6584f1c 64 }
Mike Fiore 1:e52ae6584f1c 65
Mike Fiore 1:e52ae6584f1c 66 _serial.writef("ACK Retries:\t\t");
Mike Fiore 1:e52ae6584f1c 67 if (_dot->getAck() == 0) {
Mike Fiore 1:e52ae6584f1c 68 _serial.writef("off\r\n");
Mike Fiore 1:e52ae6584f1c 69 } else {
Mike Fiore 1:e52ae6584f1c 70 _serial.writef("%u\r\n", _dot->getAck());
Mike Fiore 1:e52ae6584f1c 71 }
Mike Fiore 1:e52ae6584f1c 72
Mike Fiore 1:e52ae6584f1c 73 _serial.writef("Encryption:\t\t%s\r\n", _dot->getAesEncryption() ? "on" : "off");
Mike Fiore 1:e52ae6584f1c 74 _serial.writef("CRC:\t\t\t%s\r\n", _dot->getCrc() ? "on" : "off");
Mike Fiore 1:e52ae6584f1c 75 _serial.writef("Adaptive Data Rate:\t%s\r\n", _dot->getAdr() ? "on" : "off");
Mike Fiore 1:e52ae6584f1c 76 _serial.writef("Command Echo:\t\t%s\r\n", _dot->getEcho() ? "on" : "off");
Mike Fiore 1:e52ae6584f1c 77 _serial.writef("Verbose Response:\t%s\r\n", _dot->getVerbose() ? "on" : "off");
Mike Fiore 1:e52ae6584f1c 78
Mike Fiore 1:e52ae6584f1c 79 _serial.writef("Tx Frequency:\t\t%lu\r\n", _dot->getTxFrequency());
Mike Fiore 1:e52ae6584f1c 80 _serial.writef("Tx Data Rate:\t\t%s\r\n", mDot::DataRateStr(_dot->getTxDataRate()).c_str());
Mike Fiore 1:e52ae6584f1c 81 _serial.writef("Tx Power:\t\t%u\r\n", _dot->getTxPower());
Mike Fiore 1:e52ae6584f1c 82 _serial.writef("Tx Wait:\t\t%s\r\n", _dot->getTxWait() ? "on" : "off");
Mike Fiore 1:e52ae6584f1c 83
Mike Fiore 1:e52ae6584f1c 84 _serial.writef("Tx Inverted Signal:\t%s\r\n", _dot->getTxInverted() ? "on" : "off");
Mike Fiore 1:e52ae6584f1c 85
Mike Fiore 1:e52ae6584f1c 86 _serial.writef("Rx Frequency:\t\t%lu\r\n", _dot->getRxFrequency());
Mike Fiore 1:e52ae6584f1c 87 _serial.writef("Rx Data Rate:\t\t%s\r\n", mDot::DataRateStr(_dot->getRxDataRate()).c_str());
Mike Fiore 1:e52ae6584f1c 88 _serial.writef("Rx Inverted Signal:\t%s\r\n", _dot->getRxInverted() ? "on" : "off");
Mike Fiore 1:e52ae6584f1c 89
Mike Fiore 1:e52ae6584f1c 90 _serial.writef("Rx Output Style:\t%s\r\n", mDot::RxOutputStr(_dot->getRxOutput()).c_str());
Mike Fiore 1:e52ae6584f1c 91
Mike Fiore 1:e52ae6584f1c 92 _serial.writef("Debug Baud Rate:\t%lu\r\n", _dot->getDebugBaud());
Mike Fiore 1:e52ae6584f1c 93 _serial.writef("Serial Baud Rate:\t%lu\r\n", _dot->getBaud());
Mike Fiore 1:e52ae6584f1c 94
Mike Fiore 4:666017851052 95 _serial.writef("Wake Mode:\t\t%s\r\n", _dot->getWakeMode() == 0 ? "INTERVAL" : "INTERRUPT");
Mike Fiore 4:666017851052 96 _serial.writef("Wake Interval:\t\t%lu s\r\n", _dot->getWakeInterval());
Mike Fiore 4:666017851052 97 _serial.writef("Wake Delay:\t\t%lu ms\r\n", _dot->getWakeDelay());
Mike Fiore 4:666017851052 98 _serial.writef("Wake Timeout:\t\t%u ms\r\n", _dot->getWakeTimeout());
Mike Fiore 4:666017851052 99
Mike Fiore 4:666017851052 100 //_serial.writef("Wake Pin:\t\t%s\r\n", mDot::pinName2Str(_dot->getWakePin()).c_str());
Mike Fiore 1:e52ae6584f1c 101
Mike Fiore 1:e52ae6584f1c 102 _serial.writef("Log Level:\t\t%ld\r\n", _dot->getLogLevel());
Mike Fiore 1:e52ae6584f1c 103
Mike Fiore 1:e52ae6584f1c 104 return 0;
Mike Fiore 1:e52ae6584f1c 105 }
Mike Fiore 1:e52ae6584f1c 106