few changes for RTS/CTS control
Dependencies: MTS-Serial libmDot mbed-rtos mbed
Fork of mDot_AT_firmware by
CommandTerminal/CmdFactoryDefault.cpp
- Committer:
- serg838
- Date:
- 2016-10-25
- Revision:
- 11:77b7911263da
- Parent:
- 1:e52ae6584f1c
File content as of revision 11:77b7911263da:
#include "CmdFactoryDefault.h" CmdFactoryDefault::CmdFactoryDefault(mDot* dot) : Command(dot, "Reset Factory Defaults", "AT&F", "Reset current configuration to factory defaults") { _help = std::string(text()) + ": " + std::string(desc()); } uint32_t CmdFactoryDefault::action(std::vector<std::string> args) { _dot->resetConfig(); _dot->resetNetworkSession(); return 0; }