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

CmdDownlinkCounter.h

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