Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: MTS-Serial libmDot-mbed5
Fork of Dot-AT-Firmware by
CmdLogLevel.cpp
00001 #include "CmdLogLevel.h" 00002 00003 CmdLogLevel::CmdLogLevel() : 00004 Command("Debug Log Level", "AT+LOG", "Enable/disable debug logging. (0: off, 1:Fatal - 6:Trace)", "(0-6)") 00005 { 00006 _queryable = true; 00007 } 00008 00009 uint32_t CmdLogLevel::action(std::vector<std::string> args) 00010 { 00011 if (args.size() == 1) 00012 { 00013 CommandTerminal::Serial()->writef("%u\r\n", CommandTerminal::Dot()->getLogLevel()); 00014 } 00015 else if (args.size() == 2) 00016 { 00017 int level; 00018 sscanf(args[1].c_str(), "%d", &level); 00019 00020 if (CommandTerminal::Dot()->setLogLevel(level) != mDot::MDOT_OK) 00021 { 00022 CommandTerminal::setErrorMessage(CommandTerminal::Dot()->getLastError());; 00023 return 1; 00024 } 00025 } 00026 00027 return 0; 00028 } 00029 00030 bool CmdLogLevel::verify(std::vector<std::string> args) 00031 { 00032 if (args.size() == 1) 00033 return true; 00034 00035 if (args.size() == 2) 00036 { 00037 int level; 00038 if (sscanf(args[1].c_str(), "%d", &level) != 1) { 00039 CommandTerminal::setErrorMessage("Invalid argument"); 00040 return false; 00041 } 00042 00043 if (level < 0 || level > 6) { 00044 CommandTerminal::setErrorMessage("Invalid level, expects (0-6)"); 00045 return false; 00046 } 00047 00048 return true; 00049 } 00050 00051 CommandTerminal::setErrorMessage("Invalid arguments"); 00052 return false; 00053 }
Generated on Tue Jul 12 2022 20:40:04 by
