mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-16 00:43:00 +03:00
Switch default FW to "2.2.2-dev(38a443e)" (menu:2.2.1+100) (#6272)
* enable by default latest 2.2.x firmware, including fixed espnow * LittleFS: avoid crash when FS size is 0 * flash size defaults: 1M for generic board, not empty FS for all
This commit is contained in:
@ -251,9 +251,12 @@ bool FS::setConfig(const FSConfig &cfg) {
|
||||
|
||||
bool FS::begin() {
|
||||
if (!_impl) {
|
||||
DEBUGV("#error: FS: no implementation");
|
||||
return false;
|
||||
}
|
||||
return _impl->begin();
|
||||
bool ret = _impl->begin();
|
||||
DEBUGV("%s\n", ret? "": "#error: FS could not start");
|
||||
return ret;
|
||||
}
|
||||
|
||||
void FS::end() {
|
||||
|
Reference in New Issue
Block a user