with 36errors

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

Fork of Dot-AT-Firmware by MultiTech

CommandTerminal/CmdLBTRSSI.cpp

Committer:
faendder
Date:
2017-07-09
Revision:
18:75cd82d6298c
Parent:
17:95c9eb69329a

File content as of revision 18:75cd82d6298c:

#include "CmdLBTRSSI.h"

CmdLBTRSSI::CmdLBTRSSI()
:
  Command("LBT RSSI", "AT+LBTRSSI", "READ LBT RSSI", "(-128-0)")
{
    _queryable = true;
}

uint32_t CmdLBTRSSI::action(std::vector<std::string> args)
{
#ifdef DEBUG_MAC
    CommandTerminal::Serial()->writef("%d\r\n", CommandTerminal::Dot()->lbtRssi());
#endif
    return 0;
}

bool CmdLBTRSSI::verify(std::vector<std::string> args)
{

    return true;
}