Merge branch 'feat/bump_littlefs_to_1.20.0' into 'master'

feat(storage): Bump LittleFS to 1.20.0 and fix storage readmes mentioning esptool

Closes IDF-13395

See merge request espressif/esp-idf!39905
This commit is contained in:
Martin Vychodil
2025-06-19 15:25:08 +08:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
## IDF Component Manager Manifest File
dependencies:
joltwallet/littlefs: "~=1.16.0"
joltwallet/littlefs: "~=1.20.0"

View File

@@ -113,7 +113,7 @@ GPIO12 is used as a bootstrapping pin to select output voltage of an internal re
The following command can be used to program flash voltage selection efuses **to 3.3V**:
```sh
components/esptool_py/esptool/espefuse.py set_flash_voltage 3.3V
espefuse.py set_flash_voltage 3.3V
```
This command will burn the `XPD_SDIO_TIEH`, `XPD_SDIO_FORCE`, and `XPD_SDIO_REG` efuses. With all three burned to value 1, the internal VDD_SDIO flash voltage regulator is permanently enabled at 3.3V. See the technical reference manual for more details.

View File

@@ -160,7 +160,7 @@ Check you board documentation/schematics for appropriate procedure.
An attempt to download a new firmware under this conditions may also result in the board's serial port disappearing from your PC device list - rebooting your computer should fix the issue. After your device is back, use
`esptool --port PORT --before no_reset --baud 115200 --chip esp32 erase_flash`
`esptool.py --port PORT --before no_reset --baud 115200 --chip esp32 erase_flash`
to erase your board's flash, then flash the firmware again.