Multitech xDot AT Firmware

Dependencies:   MTS-Serial libxDot-mbed5

CommandTerminal/CmdEraseFlash.cpp

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

File content as of revision 18:72b6b49d363d:

#include "CmdEraseFlash.h"

CmdEraseFlash::CmdEraseFlash() :
        Command("Erase Entire Flash ", "AT+ERASE", "Erase all configurations saved in flash memory", "1")
{
}

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

bool CmdEraseFlash::verify(std::vector<std::string> args)
{
    if (args.size() == 2 && args[1] == "1")
        return true;

    CommandTerminal::setErrorMessage("Entire flash will be erased, please provide parameter of '1'");
    return false;
}