few changes for RTS/CTS control

Dependencies:   MTS-Serial libmDot mbed-rtos mbed

Fork of mDot_AT_firmware by MultiTech

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CmdDummy.cpp Source File

CmdDummy.cpp

00001 #include "CmdDummy.h"
00002 
00003 CmdDummy::CmdDummy(mDot* dot, const char* name, const char* txt, const char* dsc) : Command(dot, name, txt, dsc)
00004 {
00005     _help = std::string(text()) + ": " + std::string(desc());
00006 }
00007 
00008 
00009 uint32_t CmdDummy::action(std::vector<std::string> args)
00010 {
00011     return 0;
00012 }
00013