fix(storage): Fix storage examples readmes mentioning espotool

This commit is contained in:
Adam Múdry
2025-06-18 15:57:35 +02:00
parent e326d533de
commit 5106b95910
2 changed files with 2 additions and 2 deletions

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.