AT command firmware for MultiTech Dot devices.

Fork of mDot_AT_firmware by MultiTech

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CmdDummy.cpp Source File

CmdDummy.cpp

00001 #include "CmdDummy.h"
00002 
00003 #if MTS_CMD_TERM_VERBOSE
00004 CmdDummy::CmdDummy(const char* name, const char* txt, const char* dsc, const char* usage) :
00005    Command(name, txt, dsc, usage) 
00006 #else
00007 CmdDummy::CmdDummy(const char* txt) :
00008    Command(txt) 
00009 #endif
00010 {
00011 
00012 }
00013 
00014 
00015 uint32_t CmdDummy::action(const std::vector<std::string>& args) {
00016     return 0;
00017 }