From 47bae4d28e56223bd85abb2b6374a6ff24fcb5af Mon Sep 17 00:00:00 2001 From: Magnus Persson Date: Tue, 18 Oct 2022 19:51:58 +0200 Subject: [PATCH] Update install method for ESP32c3 --- src_docs/source/installation.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src_docs/source/installation.rst b/src_docs/source/installation.rst index 7cad484..134aa46 100644 --- a/src_docs/source/installation.rst +++ b/src_docs/source/installation.rst @@ -53,10 +53,14 @@ here; `esptool home page Serial automatically when you connect a esp8266. -The basic command for flashing on Windows is; +The basic command for flashing an ESP8266 on Windows is; ``esptool.py --port COM4 write_flash 0x0 firmware.bin`` +The basic command for flashing an ESP32C3 on Windows is; + +``esptool.py --port COM6 write_flash --flash_mode dio 0x8000 .\partitions32c3.bin 0x10000 .\firmware32c3.bin`` + If there are issues you can try do erase the flash first using this command; ``esptool.py --port COM4 erase_flash``