Multitech xDot AT Firmware

Dependencies:   MTS-Serial libxDot-mbed5

Committer:
jreiss
Date:
Wed Jan 16 14:20:49 2019 +0000
Revision:
18:72b6b49d363d
Parent:
14:f9a77400b622
Update libxDot to latest and mbed-os to 5.7.7; Update PacketRx for new library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Mike Fiore 9:ff62b20f7000 1 #ifndef __CMDDOWNLINKCOUNTER_H_
Mike Fiore 9:ff62b20f7000 2 #define __CMDDOWNLINKCOUNTER_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 CmdDownlinkCounter : public Command {
Mike Fiore 9:ff62b20f7000 7
Mike Fiore 9:ff62b20f7000 8 public:
Mike Fiore 9:ff62b20f7000 9
Mike Fiore 14:f9a77400b622 10 CmdDownlinkCounter();
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 // __CMDDOWNLINKCOUNTER_H_