
This mDot firmware will allow USB to directly utilize AT command without the need the use of RS232 DB9 port.
Dependencies: MTS-Serial libmDot mbed-rtos mbed
Fork of mDot_USB_AT_firmware by
CommandTerminal/CmdRssi.cpp
- Committer:
- ahario
- Date:
- 2016-10-19
- Revision:
- 14:eecf7851d6ff
- Parent:
- 9:ff62b20f7000
File content as of revision 14:eecf7851d6ff:
#include "CmdRssi.h" CmdRssi::CmdRssi(mDot* dot, mts::MTSSerial& serial) : Command(dot, "Signal Strength", "AT+RSSI", "Displays signal strength information for received packets: last, min, max, avg in dB"), _serial(serial) { _help = std::string(text()) + ": " + std::string(desc()); _usage = "(-140-0),(-140-0),(-140-0),(-140-0)"; _queryable = true; } uint32_t CmdRssi::action(std::vector<std::string> args) { mDot::rssi_stats stats = _dot->getRssiStats(); if (_dot->getVerbose()) _serial.writef("RSSI stats: "); _serial.writef("%d, %d, %d, %d\r\n", stats.last, stats.min, stats.max, stats.avg); return 0; }