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/CmdTimeOnAir.cpp
- Revision:
- 1:e52ae6584f1c
- Child:
- 9:ff62b20f7000
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/CommandTerminal/CmdTimeOnAir.cpp Thu Jun 25 10:23:41 2015 -0500
@@ -0,0 +1,43 @@
+#include "CmdTimeOnAir.h"
+
+CmdTimeOnAir::CmdTimeOnAir(mDot* dot, mts::MTSSerial& serial)
+:
+ Command(dot, "Time on air", "AT+TOA", "Get time in ms of packet tx with current datarate"),
+ _serial(serial) {
+ _help = std::string(text()) + ": " + std::string(desc());
+ _usage = "(0-242)";
+ _queryable = true;
+}
+
+uint32_t CmdTimeOnAir::action(std::vector<std::string> args) {
+
+ if (_dot->getVerbose())
+ _serial.writef("Time on air: ");
+
+ uint16_t bytes;
+
+ sscanf(args[1].c_str(), "%hu", &bytes);
+
+ _serial.writef("%lu\r\n", _dot->getTimeOnAir(bytes + 13));
+
+ return 0;
+}
+
+bool CmdTimeOnAir::verify(std::vector<std::string> args) {
+
+ if (args.size() < 2) {
+ setErrorMessage("Invalid parameter, expects (0-242)");
+ return false;
+ }
+
+ uint16_t bytes;
+
+ sscanf(args[1].c_str(), "%hu", &bytes);
+
+ if (bytes > 242) {
+ setErrorMessage("Invalid parameter, expects (0-242)");
+ return false;
+ }
+
+ return true;
+}
