Skip to content

Commit

Permalink
Bump esptool to 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelstoer committed Dec 18, 2017
1 parent a6aae0c commit 1396140
Show file tree
Hide file tree
Showing 2 changed files with 402 additions and 222 deletions.
14 changes: 7 additions & 7 deletions Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from esptool import NotImplementedInROMError
from argparse import Namespace

__version__ = "2.1"
__version__ = "2.2"
__flash_help__ = '''
<p>This setting is highly dependent on your device!<p>
<p>
Expand All @@ -23,9 +23,9 @@
and in the <a style="color: #004CE5;" href="https://github.com/espressif/esptool/#flash-modes">esptool
documentation</a>
<ul>
<li>Most ESP32 and ESP8266 ESP-12 use 'dio'.</li>
<li>Most ESP8266 ESP-01/07 use 'qio'.</li>
<li>ESP8285 requires 'dout'.</li>
<li>Most ESP32 and ESP8266 ESP-12 use DIO.</li>
<li>Most ESP8266 ESP-01/07 use QIO.</li>
<li>ESP8285 requires DOUT.</li>
</ul>
</p>
'''
Expand Down Expand Up @@ -246,9 +246,9 @@ def add_flash_mode_radio_button(sizer, index, mode, label):
sizer.Add(radio_button)
sizer.AddSpacer(10)

add_flash_mode_radio_button(flashmode_boxsizer, 0, "qio", "Quad I/O (qio)")
add_flash_mode_radio_button(flashmode_boxsizer, 1, "dio", "Dual I/O (dio)")
add_flash_mode_radio_button(flashmode_boxsizer, 2, "dout", "Dual Output (dout)")
add_flash_mode_radio_button(flashmode_boxsizer, 0, "qio", "Quad I/O (QIO)")
add_flash_mode_radio_button(flashmode_boxsizer, 1, "dio", "Dual I/O (DIO)")
add_flash_mode_radio_button(flashmode_boxsizer, 2, "dout", "Dual Output (DOUT)")

erase_boxsizer = wx.BoxSizer(wx.HORIZONTAL)

Expand Down
Loading

0 comments on commit 1396140

Please sign in to comment.