Skip to content

Commit c33ca1b

Browse files
authored
Update README.md
1 parent 8c0119d commit c33ca1b

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,6 @@ python -m esptool --chip esp32 --port COM4 --baud 115200 --after hard_reset eras
7171

7272
## 4. Project Commands
7373

74-
You can find the esptool at the following location on your system:
75-
76-
```plaintext
77-
C:\Users\RnD08\AppData\Local\Arduino15\packages\esp32\tools\esptool_py\4.6
78-
```
79-
8074
Here’s a summary of commands used in this project:
8175

8276
- **Read Flash Memory**:
@@ -85,14 +79,14 @@ Here’s a summary of commands used in this project:
8579
esptool --port COM4 --baud 921600 read_flash 0 0x400000 fileread.bin
8680
```
8781

88-
- **Read BIN File and Write to Flash**:
82+
- **Direct BIN File Upload**:
8983
```bash
90-
esptool.exe --chip esp32 --port COM4 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x0 H:\Blink.ino.bin
84+
esptool -p COM4 write_flash 0x1000 filename.bin
9185
```
9286

93-
- **Direct BIN File Upload**:
87+
- **Read BIN File and Write to Flash**:
9488
```bash
95-
esptool -p COM4 write_flash 0x1000 filename.bin
89+
esptool.exe --chip esp32 --port COM4 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x0 H:\Blink.ino.bin
9690
```
9791

9892
- **Erase Memory**:

0 commit comments

Comments
 (0)