Skip to content

Commit ddaf3b1

Browse files
sandeepmistryigrr
authored andcommitted
remove the need to set programmer, by setting upload tool
1 parent d9eaefb commit ddaf3b1

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Libraries that don't rely on low-level access to AVR registers should work well.
124124

125125

126126
#### Upload via serial port ####
127-
Select "esptool" as a programmer, and pick the correct serial port.
127+
Pick the correct serial port.
128128
You need to put ESP8266 into bootloader mode before uploading code (pull GPIO0 low and
129129
toggle power).
130130

boards.txt

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ esp01.menu.UploadSpeed.256000.upload.speed=256000
2626
esp01.menu.UploadSpeed.921600=921600
2727
esp01.menu.UploadSpeed.921600.upload.speed=921600
2828

29+
esp01.upload.tool=esptool
2930

3031
##############################################################
3132
wifio.name=WIFIO
@@ -42,3 +43,4 @@ wifio.build.board=ESP8266_WIFIO
4243
wifio.build.core=esp8266
4344
wifio.build.variant=wifio
4445

46+
wifio.upload.tool=esptool

platform.txt

+4-3
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ tools.esptool.cmd=esptool
8888
tools.esptool.cmd.windows=esptool.exe
8989
tools.esptool.path={runtime.ide.path}/hardware/tools/esp8266
9090

91-
tools.esptool.program.params.verbose=-vv
92-
tools.esptool.program.params.quiet=
93-
tools.esptool.program.pattern="{path}/{cmd}" {program.verbose} -cd {upload.resetmethod} -cb {upload.speed} -cp {serial.port} -ca 0x00000 -cf "{build.path}/{build.project_name}_00000.bin" -ca 0x40000 -cf "{build.path}/{build.project_name}_40000.bin"
91+
tools.esptool.upload.protocol=esp
92+
tools.esptool.upload.params.verbose=-vv
93+
tools.esptool.upload.params.quiet=
94+
tools.esptool.upload.pattern="{path}/{cmd}" {upload.verbose} -cd {upload.resetmethod} -cb {upload.speed} -cp {serial.port} -ca 0x00000 -cf "{build.path}/{build.project_name}_00000.bin" -ca 0x40000 -cf "{build.path}/{build.project_name}_40000.bin"
9495

programmers.txt

-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +0,0 @@
1-
esptool.name=esptool
2-
esptool.communication=serial
3-
esptool.protocol=esp
4-
esptool.program.protocol=esp
5-
esptool.program.tool=esptool
6-
esptool.program.extra_params=

0 commit comments

Comments
 (0)