mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-27 18:02:17 +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:
@ -70,9 +70,9 @@ public:
|
||||
_lfs_cfg.read_size = 64;
|
||||
_lfs_cfg.prog_size = 64;
|
||||
_lfs_cfg.block_size = _blockSize;
|
||||
_lfs_cfg.block_count = _size / _blockSize;
|
||||
_lfs_cfg.block_cycles = 16; // TODO - need better explanation
|
||||
_lfs_cfg.cache_size = 64;
|
||||
_lfs_cfg.block_count =_blockSize? _size / _blockSize: 0;
|
||||
_lfs_cfg.block_cycles = 16; // TODO - need better explanation
|
||||
_lfs_cfg.cache_size = 64;
|
||||
_lfs_cfg.lookahead_size = 64;
|
||||
_lfs_cfg.read_buffer = nullptr;
|
||||
_lfs_cfg.prog_buffer = nullptr;
|
||||
|
Reference in New Issue
Block a user