firm newest
Dependencies: MTS-Serial libmDot-dev-mbed5-deprecated
Diff: CommandTerminal/CmdEraseFlash.cpp
- Revision:
- 0:3c869a8cb8f8
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/CommandTerminal/CmdEraseFlash.cpp Thu Oct 18 04:18:48 2018 +0000 @@ -0,0 +1,21 @@ +#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; +}