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 CmdDisplayConfig.h Source File

CmdDisplayConfig.h

00001 #ifndef __CMDDISPLAYCONFIG_H__
00002 #define __CMDDISPLAYCONFIG_H__
00003 
00004 #if MTS_CMD_TERM_VERBOSE
00005 #include "Command.h"
00006 
00007 class CmdDisplayConfig : public Command {
00008 
00009 public:
00010 
00011     CmdDisplayConfig();
00012     virtual uint32_t action(const std::vector<std::string>& args);
00013 
00014 private:
00015 
00016 };
00017 
00018 #endif // MTS_CMD_TERM_VERBOSE
00019 
00020 #endif // __CMDDISPLAYCONFIG_H__