1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-17 22:23:10 +03:00

rename EspClass::eraseESPconfig to eraseConfig

This commit is contained in:
Ivan Grokhotkov
2015-06-05 08:19:47 +03:00
parent 1b8cbe7fc5
commit 4e3455b216
2 changed files with 2 additions and 2 deletions

View File

@ -295,7 +295,7 @@ struct rst_info * EspClass::getResetInfoPtr(void) {
return &resetInfo;
}
bool EspClass::eraseESPconfig(void) {
bool EspClass::eraseConfig(void) {
bool ret = true;
size_t cfgAddr = (ESP.getFlashChipSize() - 0x4000);
size_t cfgSize = (8*1024);

View File

@ -101,7 +101,7 @@ class EspClass {
String getResetInfo(void);
struct rst_info * getResetInfoPtr(void);
bool eraseESPconfig(void);
bool eraseConfig(void);
inline uint32_t getCycleCount(void);
};