Multitech xDot AT Firmware

Dependencies:   MTS-Serial libxDot-mbed5

CommandTerminal/CmdWriteProtectedConfig.cpp

Committer:
jreiss
Date:
2019-01-16
Revision:
18:72b6b49d363d
Parent:
14:f9a77400b622

File content as of revision 18:72b6b49d363d:

#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;
}