From 692b74778f6b95cf0c668dfdb85f39035e113baa Mon Sep 17 00:00:00 2001 From: Jason Reiss Date: Wed, 14 Sep 2016 11:02:19 -0500 Subject: Add AT+TXF and AT+SENDC debug commands --- CommandTerminal/CmdTxFrequency.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 CommandTerminal/CmdTxFrequency.h (limited to 'CommandTerminal/CmdTxFrequency.h') diff --git a/CommandTerminal/CmdTxFrequency.h b/CommandTerminal/CmdTxFrequency.h new file mode 100644 index 0000000..22eb777 --- /dev/null +++ b/CommandTerminal/CmdTxFrequency.h @@ -0,0 +1,20 @@ +#ifndef __CMDTXFREQUENCY_H__ +#define __CMDTXFREQUENCY_H__ + +#include "Command.h" + +class CommandTerminal; + +class CmdTxFrequency : public Command { + +public: + + CmdTxFrequency(mDot* dot); + uint32_t action(std::vector args); + bool verify(std::vector args); + +private: + +}; + +#endif // __CMDTXFREQUENCY_H__ -- cgit v1.2.3