few changes for RTS/CTS control
Dependencies: MTS-Serial libmDot mbed-rtos mbed
Fork of mDot_AT_firmware by
CommandTerminal/CmdRssi.cpp@11:77b7911263da, 2016-10-25 (annotated)
- Committer:
- serg838
- Date:
- Tue Oct 25 05:39:39 2016 +0000
- Revision:
- 11:77b7911263da
- Parent:
- 9:ff62b20f7000
RTS/CTS changes
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Mike Fiore |
1:e52ae6584f1c | 1 | #include "CmdRssi.h" |
Mike Fiore |
1:e52ae6584f1c | 2 | |
Mike Fiore |
1:e52ae6584f1c | 3 | CmdRssi::CmdRssi(mDot* dot, mts::MTSSerial& serial) : |
Mike Fiore |
9:ff62b20f7000 | 4 | Command(dot, "Signal Strength", "AT+RSSI", "Displays signal strength information for received packets: last, min, max, avg in dB"), |
Mike Fiore |
1:e52ae6584f1c | 5 | _serial(serial) |
Mike Fiore |
1:e52ae6584f1c | 6 | { |
Mike Fiore |
1:e52ae6584f1c | 7 | _help = std::string(text()) + ": " + std::string(desc()); |
Mike Fiore |
1:e52ae6584f1c | 8 | _usage = "(-140-0),(-140-0),(-140-0),(-140-0)"; |
Mike Fiore |
1:e52ae6584f1c | 9 | _queryable = true; |
Mike Fiore |
1:e52ae6584f1c | 10 | } |
Mike Fiore |
1:e52ae6584f1c | 11 | |
Mike Fiore |
1:e52ae6584f1c | 12 | uint32_t CmdRssi::action(std::vector<std::string> args) |
Mike Fiore |
1:e52ae6584f1c | 13 | { |
Mike Fiore |
1:e52ae6584f1c | 14 | mDot::rssi_stats stats = _dot->getRssiStats(); |
Mike Fiore |
1:e52ae6584f1c | 15 | |
Mike Fiore |
1:e52ae6584f1c | 16 | if (_dot->getVerbose()) |
Mike Fiore |
1:e52ae6584f1c | 17 | _serial.writef("RSSI stats: "); |
Mike Fiore |
1:e52ae6584f1c | 18 | |
Mike Fiore |
1:e52ae6584f1c | 19 | _serial.writef("%d, %d, %d, %d\r\n", stats.last, stats.min, stats.max, stats.avg); |
Mike Fiore |
1:e52ae6584f1c | 20 | |
Mike Fiore |
1:e52ae6584f1c | 21 | return 0; |
Mike Fiore |
1:e52ae6584f1c | 22 | } |
Mike Fiore |
1:e52ae6584f1c | 23 |