firm newest

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

CommandTerminal/CmdSaveSession.cpp

Committer:
nguyenhoang9x5555
Date:
2018-10-22
Revision:
1:c1c6549b9333
Parent:
0:3c869a8cb8f8

File content as of revision 1:c1c6549b9333:

#include "CmdSaveSession.h"

CmdSaveSession::CmdSaveSession() :
    Command("Save Network Session", "AT+SS", "Save network session info to flash", "NONE")
{
}

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