dev

Dependencies:   MTS-Serial libmDot-mbed5

Fork of Dot-AT-Firmware by MultiTech

Committer:
alphaemmeo
Date:
Tue Oct 10 09:33:43 2017 +0000
Revision:
18:44972ed0654d
Parent:
14:f9a77400b622
testInit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Mike Fiore 9:ff62b20f7000 1 #ifndef __CMDUPLINKCOUNTER_H_
Mike Fiore 9:ff62b20f7000 2 #define __CMDUPLINKCOUNTER_H_
Mike Fiore 9:ff62b20f7000 3
Mike Fiore 9:ff62b20f7000 4 #include "Command.h"
Mike Fiore 9:ff62b20f7000 5
Mike Fiore 9:ff62b20f7000 6 class CmdUplinkCounter : public Command {
Mike Fiore 9:ff62b20f7000 7
Mike Fiore 9:ff62b20f7000 8 public:
Mike Fiore 9:ff62b20f7000 9
Mike Fiore 14:f9a77400b622 10 CmdUplinkCounter();
Mike Fiore 14:f9a77400b622 11 static uint32_t action(std::vector<std::string> args);
Mike Fiore 14:f9a77400b622 12 static bool verify(std::vector<std::string> args);
Mike Fiore 9:ff62b20f7000 13
Mike Fiore 9:ff62b20f7000 14 private:
Mike Fiore 14:f9a77400b622 15
Mike Fiore 9:ff62b20f7000 16 };
Mike Fiore 9:ff62b20f7000 17
Mike Fiore 9:ff62b20f7000 18 #endif // __CMDUPLINKCOUNTER_H_