From 4ea46cbfee73c43579ea657cabc7f1fc7de97874 Mon Sep 17 00:00:00 2001 From: Leon Lindenfelser Date: Fri, 20 Nov 2015 16:21:44 -0600 Subject: 1. Merged CommandTerminal into ModeConfig and deleted CommandTerminal. 2. Fixed AT&V output. 3. Cleaned up some unused code. 4. Added +FREQ back in. 5. Removed CmdExit and put the +EXIT command right in the command parsing code. --- CommandTerminal/CmdFrequencyBand.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 CommandTerminal/CmdFrequencyBand.h (limited to 'CommandTerminal/CmdFrequencyBand.h') diff --git a/CommandTerminal/CmdFrequencyBand.h b/CommandTerminal/CmdFrequencyBand.h new file mode 100644 index 0000000..a7fe156 --- /dev/null +++ b/CommandTerminal/CmdFrequencyBand.h @@ -0,0 +1,21 @@ +#ifndef __CMDFREQUENCYBAND_H__ +#define __CMDFREQUENCYBAND_H__ + +#include "Command.h" + +class CommandTerminal; + +class CmdFrequencyBand : public Command { + +public: + + CmdFrequencyBand(mDot* dot, mts::MTSSerial& serial); + virtual uint32_t action(std::vector args); + virtual bool verify(std::vector args); + +private: + + mts::MTSSerial& _serial; +}; + +#endif // __CMDFREQUENCYBAND_H__ -- cgit v1.2.3