MicroLabo / Mbed OS mbed-Dot-AT-Firmware

Dependencies:   MTS-Serial libmDot-mbed5

Fork of Dot-AT-Firmware by MultiTech

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CmdWakeTimeout.cpp Source File

CmdWakeTimeout.cpp

00001 #include "CmdWakeTimeout.h"
00002 
00003 CmdWakeTimeout::CmdWakeTimeout() :
00004  Command("Wake Timeout", "AT+WTO", "Read serial data until timeout (milliseconds)", "(0-65000) ms")
00005 {
00006     _queryable = true;
00007 }
00008 
00009 uint32_t CmdWakeTimeout::action(std::vector<std::string> args)
00010 {
00011     if (args.size() == 1)
00012     {
00013         CommandTerminal::Serial()->writef("%lu\r\n", CommandTerminal::Dot()->getWakeTimeout());
00014     }
00015     else if (args.size() == 2)
00016     {
00017         int timeout;
00018         sscanf(args[1].c_str(), "%d", &timeout);
00019 
00020         if (CommandTerminal::Dot()->setWakeTimeout(timeout) != mDot::MDOT_OK) {
00021             
00022             CommandTerminal::setErrorMessage(CommandTerminal::Dot()->getLastError());;
00023             return 1;
00024         }
00025     }
00026 
00027     return 0;
00028 }
00029 
00030 bool CmdWakeTimeout::verify(std::vector<std::string> args)
00031 {
00032     if (args.size() == 1)
00033         return true;
00034 
00035     if (args.size() == 2)
00036     {
00037         int timeout;
00038         if (sscanf(args[1].c_str(), "%d", &timeout) != 1) {
00039             CommandTerminal::setErrorMessage("Invalid argument");
00040             return false;
00041         }
00042 
00043         if (timeout < 0 || timeout > 65000) {
00044             CommandTerminal::setErrorMessage("Invalid timeout, expects (0-65000) ms");
00045             return false;
00046         }
00047 
00048         return true;
00049     }
00050 
00051     CommandTerminal::setErrorMessage("Invalid arguments");
00052     return false;
00053 }