diff --git a/doc/AI_Thinker-ESP32-cam/README.md b/doc/AI_Thinker-ESP32-cam/README.md index 5d13319..ef3979a 100644 --- a/doc/AI_Thinker-ESP32-cam/README.md +++ b/doc/AI_Thinker-ESP32-cam/README.md @@ -117,7 +117,7 @@ And command for FLASH FW is here, where **/dev/ttya0** is your serial interface ./esptool -p /dev/ttya0 -b 460800 --before default_reset --after hard_reset --chip esp32 write_flash --erase-all --flash_mode dio --flash_size 4MB --flash_freq 80m 0x1000 ESP32_PrusaConnectCam.ino.bootloader.bin 0x8000 ESP32_PrusaConnectCam.ino.partitions.bin 0x10000 ESP32_PrusaConnectCam.ino.bin ``` -This command contains the parameter **--eras-all**, which erases the entire flash in the MCU. So, for just updating the firmware, it is necessary to remove the parameter **--eras-all**; otherwise, the MCU configuration will also be deleted. The basic command list can be found [here](https://docs.espressif.com/projects/esptool/en/latest/esp32s3/esptool/basic-commands.html) +This command contains the parameter **--erase-all**, which erases the entire flash in the MCU. So, for just updating the firmware, it is necessary to remove the parameter **--erase-all**; otherwise, the MCU configuration will also be deleted. The basic command list can be found [here](https://docs.espressif.com/projects/esptool/en/latest/esp32s3/esptool/basic-commands.html) Here is the command for updating the firmware in the MCU without erasing the MCU configuration diff --git a/doc/ESP32-S3-CAM/README.md b/doc/ESP32-S3-CAM/README.md index 98a3d0b..d450ea2 100644 --- a/doc/ESP32-S3-CAM/README.md +++ b/doc/ESP32-S3-CAM/README.md @@ -70,7 +70,7 @@ And command for FLASH FW is here, where **/dev/ttya0** is your serial interface ./esptool --chip esp32s3 -p /dev/ttya0 -b 921600 --before default_reset --after hard_reset write_flash --erase-all --flash_mode dio --flash_size 16MB --flash_freq 80m 0x0 ESP32_PrusaConnectCam.ino.bootloader.bin 0x8000 ESP32_PrusaConnectCam.ino.partitions.bin 0x10000 ESP32_PrusaConnectCam.ino.bin ``` -This command contains the parameter **--eras-all**, which erases the entire flash in the MCU. So, for just updating the firmware, it is necessary to remove the parameter **--eras-all**; otherwise, the MCU configuration will also be deleted. The basic command list can be found [here](https://docs.espressif.com/projects/esptool/en/latest/esp32s3/esptool/basic-commands.html) +This command contains the parameter **--erase-all**, which erases the entire flash in the MCU. So, for just updating the firmware, it is necessary to remove the parameter **--erase-all**; otherwise, the MCU configuration will also be deleted. The basic command list can be found [here](https://docs.espressif.com/projects/esptool/en/latest/esp32s3/esptool/basic-commands.html) Here is the command for updating the firmware in the MCU without erasing the MCU configuration diff --git a/doc/ESP32-S3-EYE-22/README.md b/doc/ESP32-S3-EYE-22/README.md index 16ca4ff..1b9638d 100644 --- a/doc/ESP32-S3-EYE-22/README.md +++ b/doc/ESP32-S3-EYE-22/README.md @@ -71,7 +71,7 @@ And command for FLASH FW is here, where **/dev/ttya0** is your serial interface ./esptool --chip esp32s3 -p /dev/ttya0 -b 921600 --before default_reset --after hard_reset write_flash --erase-all --flash_mode dio --flash_size 8MB --flash_freq 80m 0x0 ESP32_PrusaConnectCam.ino.bootloader.bin 0x8000 ESP32_PrusaConnectCam.ino.partitions.bin 0x10000 ESP32_PrusaConnectCam.ino.bin ``` -This command contains the parameter **--eras-all**, which erases the entire flash in the MCU. So, for just updating the firmware, it is necessary to remove the parameter **--eras-all**; otherwise, the MCU configuration will also be deleted. The basic command list can be found [here](https://docs.espressif.com/projects/esptool/en/latest/esp32s3/esptool/basic-commands.html) +This command contains the parameter **--erase-all**, which erases the entire flash in the MCU. So, for just updating the firmware, it is necessary to remove the parameter **--erase-all**; otherwise, the MCU configuration will also be deleted. The basic command list can be found [here](https://docs.espressif.com/projects/esptool/en/latest/esp32s3/esptool/basic-commands.html) Here is the command for updating the firmware in the MCU without erasing the MCU configuration diff --git a/doc/ESP32-Wrover-dev/README.md b/doc/ESP32-Wrover-dev/README.md index bec4916..c610b03 100644 --- a/doc/ESP32-Wrover-dev/README.md +++ b/doc/ESP32-Wrover-dev/README.md @@ -90,7 +90,7 @@ And command for FLASH FW is here, where **/dev/ttya0** is your serial interface ./esptool -p /dev/ttya0 -b 460800 --before default_reset --after hard_reset --chip esp32 write_flash --erase-all --flash_mode dio --flash_size 4MB --flash_freq 80m 0x1000 ESP32_PrusaConnectCam.ino.bootloader.bin 0x8000 ESP32_PrusaConnectCam.ino.partitions.bin 0x10000 ESP32_PrusaConnectCam.ino.bin ``` -This command contains the parameter **--eras-all**, which erases the entire flash in the MCU. So, for just updating the firmware, it is necessary to remove the parameter **--eras-all**; otherwise, the MCU configuration will also be deleted. The basic command list can be found [here](https://docs.espressif.com/projects/esptool/en/latest/esp32s3/esptool/basic-commands.html) +This command contains the parameter **--erase-all**, which erases the entire flash in the MCU. So, for just updating the firmware, it is necessary to remove the parameter **--erase-all**; otherwise, the MCU configuration will also be deleted. The basic command list can be found [here](https://docs.espressif.com/projects/esptool/en/latest/esp32s3/esptool/basic-commands.html) Here is the command for updating the firmware in the MCU without erasing the MCU configuration diff --git a/doc/XIAO_ESP32S3/README.md b/doc/XIAO_ESP32S3/README.md index 6bb9047..ef2322a 100644 --- a/doc/XIAO_ESP32S3/README.md +++ b/doc/XIAO_ESP32S3/README.md @@ -74,7 +74,7 @@ And command for FLASH FW is here, where **/dev/ttya0** is your serial interface ./esptool --chip esp32s3 -p /dev/ttya0 -b 921600 --before default_reset --after hard_reset write_flash --erase-all --flash_mode qio --flash_size 8MB --flash_freq 80m 0x0 ESP32_PrusaConnectCam.ino.bootloader.bin 0x8000 ESP32_PrusaConnectCam.ino.partitions.bin 0x10000 ESP32_PrusaConnectCam.ino.bin ``` -This command contains the parameter **--eras-all**, which erases the entire flash in the MCU. So, for just updating the firmware, it is necessary to remove the parameter **--eras-all**; otherwise, the MCU configuration will also be deleted. The basic command list can be found [here](https://docs.espressif.com/projects/esptool/en/latest/esp32s3/esptool/basic-commands.html) +This command contains the parameter **--erase-all**, which erases the entire flash in the MCU. So, for just updating the firmware, it is necessary to remove the parameter **--erase-all**; otherwise, the MCU configuration will also be deleted. The basic command list can be found [here](https://docs.espressif.com/projects/esptool/en/latest/esp32s3/esptool/basic-commands.html) Here is the command for updating the firmware in the MCU without erasing the MCU configuration