firm newest

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

CommandTerminal/CmdWriteProtectedConfig.cpp

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

File content as of revision 0:3c869a8cb8f8:

#include "CmdWriteProtectedConfig.h"

CmdWriteProtectedConfig::CmdWriteProtectedConfig() :
    Command("Write Protected Config", "AT&WP", "Write protected config to flash (DeviceId and Frequency Band)", "NONE")
{
}

uint32_t CmdWriteProtectedConfig::action(std::vector<std::string> args)
{
    if (!CommandTerminal::Dot()->saveProtectedConfig()) {
      CommandTerminal::setErrorMessage("Failed to save to flash");
      return 1;
    }

    return 0;
}