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 libmDot-mbed5
Fork of Dot-AT-Firmware by
Diff: CommandTerminal/CmdErrorCorrection.cpp
- Revision:
- 14:f9a77400b622
- Parent:
- 9:ff62b20f7000
diff -r b0f5ae12dc05 -r f9a77400b622 CommandTerminal/CmdErrorCorrection.cpp
--- a/CommandTerminal/CmdErrorCorrection.cpp Fri Nov 04 19:10:24 2016 +0000
+++ b/CommandTerminal/CmdErrorCorrection.cpp Fri Nov 04 14:25:43 2016 -0500
@@ -1,10 +1,8 @@
#include "CmdErrorCorrection.h"
-CmdErrorCorrection::CmdErrorCorrection(mDot* dot, mts::MTSSerial& serial) :
- Command(dot, "Error Correction", "AT+FEC", "Configure Forward Error Correction bytes (1 to 4)"), _serial(serial)
+CmdErrorCorrection::CmdErrorCorrection() :
+ Command("Error Correction", "AT+FEC", "Configure Forward Error Correction bytes (1 to 4)", "(1-4)")
{
- _help = std::string(text()) + ": " + std::string(desc());
- _usage = "(1-4)";
_queryable = true;
}
@@ -12,21 +10,16 @@
{
if (args.size() == 1)
{
- if (_dot->getVerbose())
- _serial.writef("Error Correction Bytes: ");
-
- _serial.writef("%u\r\n", _dot->getFec());
+ CommandTerminal::Serial()->writef("%u\r\n", CommandTerminal::Dot()->getFec());
}
else if (args.size() == 2)
{
- int32_t code;
uint32_t bytes;
sscanf(args[1].c_str(), "%lu", &bytes);
- if ((code = _dot->setFec(bytes)) != mDot::MDOT_OK)
+ if (CommandTerminal::Dot()->setFec(bytes) != mDot::MDOT_OK)
{
-
- setErrorMessage(_dot->getLastError());;
+ CommandTerminal::setErrorMessage(CommandTerminal::Dot()->getLastError());;
return 1;
}
}
@@ -43,19 +36,19 @@
{
int retries;
if (sscanf(args[1].c_str(), "%d", &retries) != 1) {
- setErrorMessage("Invalid argument");
+ CommandTerminal::setErrorMessage("Invalid argument");
return false;
}
if (retries < 1 || retries > 4)
{
- setErrorMessage("Invalid bytes, expects (1-4)");
+ CommandTerminal::setErrorMessage("Invalid bytes, expects (1-4)");
return false;
}
return true;
}
- setErrorMessage("Invalid arguments");
+ CommandTerminal::setErrorMessage("Invalid arguments");
return false;
}
