We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b8cbe7 commit 4e3455bCopy full SHA for 4e3455b
hardware/esp8266com/esp8266/cores/esp8266/Esp.cpp
@@ -295,7 +295,7 @@ struct rst_info * EspClass::getResetInfoPtr(void) {
295
return &resetInfo;
296
}
297
298
-bool EspClass::eraseESPconfig(void) {
+bool EspClass::eraseConfig(void) {
299
bool ret = true;
300
size_t cfgAddr = (ESP.getFlashChipSize() - 0x4000);
301
size_t cfgSize = (8*1024);
hardware/esp8266com/esp8266/cores/esp8266/Esp.h
@@ -101,7 +101,7 @@ class EspClass {
101
String getResetInfo(void);
102
struct rst_info * getResetInfoPtr(void);
103
104
- bool eraseESPconfig(void);
+ bool eraseConfig(void);
105
106
inline uint32_t getCycleCount(void);
107
};
0 commit comments