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 1:e52ae6584f1c 1 #ifndef __CMDTXPOWER_H__
Mike Fiore 1:e52ae6584f1c 2 #define __CMDTXPOWER_H__
Mike Fiore 1:e52ae6584f1c 3
Mike Fiore 1:e52ae6584f1c 4 #include "Command.h"
Mike Fiore 1:e52ae6584f1c 5
Mike Fiore 1:e52ae6584f1c 6 class CommandTerminal;
Mike Fiore 1:e52ae6584f1c 7
Mike Fiore 1:e52ae6584f1c 8 class CmdTxPower: public Command
Mike Fiore 1:e52ae6584f1c 9 {
Mike Fiore 1:e52ae6584f1c 10
Mike Fiore 1:e52ae6584f1c 11 public:
Mike Fiore 1:e52ae6584f1c 12
Mike Fiore 14:f9a77400b622 13 CmdTxPower();
Mike Fiore 14:f9a77400b622 14 static uint32_t action(std::vector<std::string> args);
Mike Fiore 14:f9a77400b622 15 static bool verify(std::vector<std::string> args);
Mike Fiore 1:e52ae6584f1c 16
Mike Fiore 1:e52ae6584f1c 17 private:
Mike Fiore 14:f9a77400b622 18
Mike Fiore 1:e52ae6584f1c 19 };
Mike Fiore 1:e52ae6584f1c 20
Mike Fiore 1:e52ae6584f1c 21 #endif // __CMDTXPOWER_H__