MultiTech / Mbed OS mDot_AT_firmware_CUSTOM

Dependencies:   libmDot-Custom MTS-Serial

Fork of mDot_AT_firmware_CUSTOM by Jason Reiss

To change channel plans replace AS923 with AU915, EU868, KR920 or US915 on line 15

#define CHANNEL_PLAN CP_AS923

See Supported Channel Plans

Committer:
jreiss
Date:
Thu Mar 23 20:40:54 2017 +0000
Revision:
29:15b59b827ac7
Parent:
14:e80ace5a6834
update libmDot-Custom

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
Jason Reiss 14:e80ace5a6834 10 CmdDownlinkCounter();
Jason Reiss 14:e80ace5a6834 11 static uint32_t action(std::vector<std::string> args);
Jason Reiss 14:e80ace5a6834 12 static bool verify(std::vector<std::string> args);
Mike Fiore 9:ff62b20f7000 13
Mike Fiore 9:ff62b20f7000 14 private:
Jason Reiss 14:e80ace5a6834 15
Mike Fiore 9:ff62b20f7000 16 };
Mike Fiore 9:ff62b20f7000 17
Mike Fiore 9:ff62b20f7000 18 #endif // __CMDDOWNLINKCOUNTER_H_