summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdTxFrequency.h
diff options
context:
space:
mode:
Diffstat (limited to 'CommandTerminal/CmdTxFrequency.h')
-rw-r--r--CommandTerminal/CmdTxFrequency.h20
1 files changed, 20 insertions, 0 deletions
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<std::string> args);
+ bool verify(std::vector<std::string> args);
+
+private:
+
+};
+
+#endif // __CMDTXFREQUENCY_H__