From 5106b959109a90b7808479e7d22a134d1b0a0e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20M=C3=BAdry?= Date: Wed, 18 Jun 2025 15:57:35 +0200 Subject: [PATCH] fix(storage): Fix storage examples readmes mentioning espotool --- examples/storage/sd_card/sdmmc/README.md | 2 +- examples/storage/sd_card/sdspi/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/storage/sd_card/sdmmc/README.md b/examples/storage/sd_card/sdmmc/README.md index 8f665f208e..ca074a7d18 100644 --- a/examples/storage/sd_card/sdmmc/README.md +++ b/examples/storage/sd_card/sdmmc/README.md @@ -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. diff --git a/examples/storage/sd_card/sdspi/README.md b/examples/storage/sd_card/sdspi/README.md index 52dba04b62..bb5ba7dcb8 100644 --- a/examples/storage/sd_card/sdspi/README.md +++ b/examples/storage/sd_card/sdspi/README.md @@ -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.