few changes for RTS/CTS control
Dependencies: MTS-Serial libmDot mbed-rtos mbed
Fork of mDot_AT_firmware by
Diff: CommandTerminal/CmdDummy.cpp
- Revision:
- 1:e52ae6584f1c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/CommandTerminal/CmdDummy.cpp Thu Jun 25 10:23:41 2015 -0500 @@ -0,0 +1,13 @@ +#include "CmdDummy.h" + +CmdDummy::CmdDummy(mDot* dot, const char* name, const char* txt, const char* dsc) : Command(dot, name, txt, dsc) +{ + _help = std::string(text()) + ": " + std::string(desc()); +} + + +uint32_t CmdDummy::action(std::vector<std::string> args) +{ + return 0; +} +