File tree 2 files changed +5
-8
lines changed
2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -190,11 +190,11 @@ directory into ESP8266 flash file system.
190
190
191
191
**Warning **: Due to the move from the obsolete esptool-ck.exe to the
192
192
supported esptool.py upload tool, upgraders from pre 2.5.1 will need to
193
- update the ESP8266FS tool referenced below to 0.4 .0 or later. Prior versions
193
+ update the ESP8266FS tool referenced below to 0.5 .0 or later. Prior versions
194
194
will fail with a "esptool not found" error because they don't know how to
195
195
use esptool.py.
196
196
197
- - Download the tool: https://github.com/esp8266/arduino-esp8266fs-plugin/releases/download/0.4 .0/ESP8266FS-0.4 .0.zip
197
+ - Download the tool: https://github.com/esp8266/arduino-esp8266fs-plugin/releases/download/0.5 .0/ESP8266FS-0.5 .0.zip
198
198
- In your Arduino sketchbook directory, create ``tools `` directory if
199
199
it doesn't exist yet.
200
200
- Unpack the tool into ``tools `` directory (the path will look like
@@ -214,7 +214,7 @@ use esptool.py.
214
214
215
215
*ESP8266LittleFS * is the equivalent tool for LittleFS.
216
216
217
- - Download the tool: https://github.com/earlephilhower/arduino-esp8266littlefs-plugin/releases
217
+ - Download the 2.6.0 or later version of the tool: https://github.com/earlephilhower/arduino-esp8266littlefs-plugin/releases
218
218
- Install as above
219
219
- To upload a LittleFS filesystem use Tools > ESP8266 LittleFS Data Upload
220
220
Original file line number Diff line number Diff line change 3
3
# Wrapper for Arduino core / others that can call esptool.py possibly multiple times
4
4
# Adds pyserial to sys.path automatically based on the path of the current file
5
5
6
- # First parameter is pyserial path, second is esptool path, then a series of command arguments separated with --end
7
- # i.e. upload.py tools/pyserial tools/esptool erase_flash --end write_flash file 0x0 --end
6
+ # First parameter is pyserial path, second is esptool path, then a series of command arguments
7
+ # i.e. upload.py tools/pyserial tools/esptool write_flash file 0x0
8
8
9
9
import sys
10
10
import os
42
42
elif thisarg == 'erase_region' :
43
43
erase_addr = sys .argv .pop (0 )
44
44
erase_len = sys .argv .pop (0 )
45
- elif thisarg == '--end' :
46
- # Backwards compatibility with fs upload tools, eat --end
47
- pass
48
45
elif thisarg == 'write_flash' :
49
46
write_addr = sys .argv .pop (0 )
50
47
binary = sys .argv .pop (0 )
You can’t perform that action at this time.
0 commit comments