few changes for RTS/CTS control
Dependencies: MTS-Serial libmDot mbed-rtos mbed
Fork of mDot_AT_firmware by
CommandTerminal/CmdAttention.cpp
- Committer:
- serg838
- Date:
- 2016-10-25
- Revision:
- 11:77b7911263da
- Parent:
- 1:e52ae6584f1c
File content as of revision 11:77b7911263da:
#include "CmdAttention.h" CmdAttention::CmdAttention(mDot* dot) : Command(dot, "Attention", "AT", "Attention") { _help = std::string(text()) + ": " + std::string(desc()); } CmdAttention::CmdAttention(mDot* dot, const char* name, const char* text, const char* desc) : Command(dot, name, text, desc) { } uint32_t CmdAttention::action(std::vector<std::string> args) { return 0; }