Skip to content

Commit becc1d3

Browse files
committed
rename EspClass::eraseESPconfig to eraseConfig
1 parent 73740d6 commit becc1d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cores/esp8266/Esp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ struct rst_info * EspClass::getResetInfoPtr(void) {
295295
return &resetInfo;
296296
}
297297

298-
bool EspClass::eraseESPconfig(void) {
298+
bool EspClass::eraseConfig(void) {
299299
bool ret = true;
300300
size_t cfgAddr = (ESP.getFlashChipSize() - 0x4000);
301301
size_t cfgSize = (8*1024);

cores/esp8266/Esp.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class EspClass {
101101
String getResetInfo(void);
102102
struct rst_info * getResetInfoPtr(void);
103103

104-
bool eraseESPconfig(void);
104+
bool eraseConfig(void);
105105

106106
inline uint32_t getCycleCount(void);
107107
};

0 commit comments

Comments
 (0)