firm newest

Dependencies:   MTS-Serial libmDot-dev-mbed5-deprecated

CommandTerminal/CmdRestoreSession.cpp

Committer:
nguyenhoang9x5555
Date:
2018-10-18
Revision:
0:3c869a8cb8f8

File content as of revision 0:3c869a8cb8f8:

#include "CmdRestoreSession.h"

CmdRestoreSession::CmdRestoreSession() :
    Command("Restore Network Session", "AT+RS", "Restore network session info from flash", "NONE")
{
}

uint32_t CmdRestoreSession::action(std::vector<std::string> args)
{
    CommandTerminal::Dot()->restoreNetworkSession();
    return 0;
}