firm newest

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

Committer:
nguyenhoang9x5555
Date:
Mon Oct 22 01:56:09 2018 +0000
Revision:
1:c1c6549b9333
Parent:
0:3c869a8cb8f8
hey

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nguyenhoang9x5555 0:3c869a8cb8f8 1 #include "CmdRxOutput.h"
nguyenhoang9x5555 0:3c869a8cb8f8 2
nguyenhoang9x5555 0:3c869a8cb8f8 3 CmdRxOutput::CmdRxOutput() :
nguyenhoang9x5555 0:3c869a8cb8f8 4 Command("Rx Output", "AT+RXO", "Set the Rx output type (0:hexadecimal, 1:raw)", "(0,1)")
nguyenhoang9x5555 0:3c869a8cb8f8 5 {
nguyenhoang9x5555 0:3c869a8cb8f8 6 _queryable = true;
nguyenhoang9x5555 0:3c869a8cb8f8 7 }
nguyenhoang9x5555 0:3c869a8cb8f8 8
nguyenhoang9x5555 0:3c869a8cb8f8 9 uint32_t CmdRxOutput::action(std::vector<std::string> args)
nguyenhoang9x5555 0:3c869a8cb8f8 10 {
nguyenhoang9x5555 0:3c869a8cb8f8 11 if (args.size() == 1)
nguyenhoang9x5555 0:3c869a8cb8f8 12 {
nguyenhoang9x5555 0:3c869a8cb8f8 13 CommandTerminal::Serial()->writef("%u\r\n", CommandTerminal::Dot()->getRxOutput());
nguyenhoang9x5555 0:3c869a8cb8f8 14 }
nguyenhoang9x5555 0:3c869a8cb8f8 15 else if (args.size() == 2)
nguyenhoang9x5555 0:3c869a8cb8f8 16 {
nguyenhoang9x5555 0:3c869a8cb8f8 17
nguyenhoang9x5555 0:3c869a8cb8f8 18 uint8_t output = args[1] == "0" ? 0 : 1;
nguyenhoang9x5555 0:3c869a8cb8f8 19 if (CommandTerminal::Dot()->setRxOutput(output) != mDot::MDOT_OK)
nguyenhoang9x5555 0:3c869a8cb8f8 20 {
nguyenhoang9x5555 0:3c869a8cb8f8 21
nguyenhoang9x5555 0:3c869a8cb8f8 22 CommandTerminal::setErrorMessage(CommandTerminal::Dot()->getLastError());;
nguyenhoang9x5555 0:3c869a8cb8f8 23 return 1;
nguyenhoang9x5555 0:3c869a8cb8f8 24 }
nguyenhoang9x5555 0:3c869a8cb8f8 25 }
nguyenhoang9x5555 0:3c869a8cb8f8 26
nguyenhoang9x5555 0:3c869a8cb8f8 27 return 0;
nguyenhoang9x5555 0:3c869a8cb8f8 28 }
nguyenhoang9x5555 0:3c869a8cb8f8 29
nguyenhoang9x5555 0:3c869a8cb8f8 30 bool CmdRxOutput::verify(std::vector<std::string> args)
nguyenhoang9x5555 0:3c869a8cb8f8 31 {
nguyenhoang9x5555 0:3c869a8cb8f8 32 if (args.size() == 1)
nguyenhoang9x5555 0:3c869a8cb8f8 33 return true;
nguyenhoang9x5555 0:3c869a8cb8f8 34
nguyenhoang9x5555 0:3c869a8cb8f8 35 if (args.size() == 2)
nguyenhoang9x5555 0:3c869a8cb8f8 36 {
nguyenhoang9x5555 0:3c869a8cb8f8 37 if (!(args[1] == "0" || args[1] == "1")) {
nguyenhoang9x5555 0:3c869a8cb8f8 38 CommandTerminal::setErrorMessage("Invalid type, expects (0:hexadecimal, 1:raw)");
nguyenhoang9x5555 0:3c869a8cb8f8 39 return false;
nguyenhoang9x5555 0:3c869a8cb8f8 40 }
nguyenhoang9x5555 0:3c869a8cb8f8 41
nguyenhoang9x5555 0:3c869a8cb8f8 42 return true;
nguyenhoang9x5555 0:3c869a8cb8f8 43 }
nguyenhoang9x5555 0:3c869a8cb8f8 44
nguyenhoang9x5555 0:3c869a8cb8f8 45 CommandTerminal::setErrorMessage("Invalid arguments");
nguyenhoang9x5555 0:3c869a8cb8f8 46 return false;
nguyenhoang9x5555 0:3c869a8cb8f8 47 }