AT command interface for mdot forced to asia interfaces

Dependencies:   MTS-Serial libmDot-mbed5

Fork of Dot-AT-Firmware by MultiTech

CommandTerminal/CmdWriteProtectedConfig.cpp

Committer:
brettsawyers
Date:
2018-05-01
Revision:
19:79c906b2c53c
Parent:
14:f9a77400b622

File content as of revision 19:79c906b2c53c:

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