Skip to content

Commit 1396140

Browse files
committed
Bump esptool to 2.2
1 parent a6aae0c commit 1396140

File tree

2 files changed

+402
-222
lines changed

2 files changed

+402
-222
lines changed

Main.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from esptool import NotImplementedInROMError
1515
from argparse import Namespace
1616

17-
__version__ = "2.1"
17+
__version__ = "2.2"
1818
__flash_help__ = '''
1919
<p>This setting is highly dependent on your device!<p>
2020
<p>
@@ -23,9 +23,9 @@
2323
and in the <a style="color: #004CE5;" href="https://github.com/espressif/esptool/#flash-modes">esptool
2424
documentation</a>
2525
<ul>
26-
<li>Most ESP32 and ESP8266 ESP-12 use 'dio'.</li>
27-
<li>Most ESP8266 ESP-01/07 use 'qio'.</li>
28-
<li>ESP8285 requires 'dout'.</li>
26+
<li>Most ESP32 and ESP8266 ESP-12 use DIO.</li>
27+
<li>Most ESP8266 ESP-01/07 use QIO.</li>
28+
<li>ESP8285 requires DOUT.</li>
2929
</ul>
3030
</p>
3131
'''
@@ -246,9 +246,9 @@ def add_flash_mode_radio_button(sizer, index, mode, label):
246246
sizer.Add(radio_button)
247247
sizer.AddSpacer(10)
248248

249-
add_flash_mode_radio_button(flashmode_boxsizer, 0, "qio", "Quad I/O (qio)")
250-
add_flash_mode_radio_button(flashmode_boxsizer, 1, "dio", "Dual I/O (dio)")
251-
add_flash_mode_radio_button(flashmode_boxsizer, 2, "dout", "Dual Output (dout)")
249+
add_flash_mode_radio_button(flashmode_boxsizer, 0, "qio", "Quad I/O (QIO)")
250+
add_flash_mode_radio_button(flashmode_boxsizer, 1, "dio", "Dual I/O (DIO)")
251+
add_flash_mode_radio_button(flashmode_boxsizer, 2, "dout", "Dual Output (DOUT)")
252252

253253
erase_boxsizer = wx.BoxSizer(wx.HORIZONTAL)
254254

0 commit comments

Comments
 (0)