File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -71,12 +71,6 @@ python -m esptool --chip esp32 --port COM4 --baud 115200 --after hard_reset eras
71
71
72
72
## 4. Project Commands
73
73
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
-
80
74
Here’s a summary of commands used in this project:
81
75
82
76
- ** Read Flash Memory** :
@@ -85,14 +79,14 @@ Here’s a summary of commands used in this project:
85
79
esptool --port COM4 --baud 921600 read_flash 0 0x400000 fileread.bin
86
80
```
87
81
88
- - ** Read BIN File and Write to Flash ** :
82
+ - ** Direct BIN File Upload ** :
89
83
``` 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: \B link.ino .bin
84
+ esptool -p COM4 write_flash 0x1000 filename .bin
91
85
```
92
86
93
- - ** Direct BIN File Upload ** :
87
+ - ** Read BIN File and Write to Flash ** :
94
88
``` 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: \B link.ino .bin
96
90
```
97
91
98
92
- ** Erase Memory** :
You can’t perform that action at this time.
0 commit comments