Skip to content

Commit

Permalink
Update to pyserial 3.5, esptool 3.0 (esp8266#7737)
Browse files Browse the repository at this point in the history
Recent releases may work better with some newer MacOS releases
according to their commit logs.

Ensure esptool detects the flash size and doesn't use the one hardcoded
in the bootloader.  Thanks to @d-a-v for noticing the esptool change.
  • Loading branch information
earlephilhower authored Dec 2, 2020
1 parent 11519dd commit 8565ac8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/esptool
Submodule esptool updated 117 files
2 changes: 1 addition & 1 deletion tools/pyserial
Submodule pyserial updated 45 files
+4 −0 .gitignore
+0 −2 .travis.yml
+89 −0 CHANGES.rst
+1 −1 LICENSE.txt
+9 −1 README.rst
+7 −1 documentation/appendix.rst
+1 −1 documentation/conf.py
+1 −0 documentation/index.rst
+16 −1 documentation/pyserial.rst
+37 −8 documentation/pyserial_api.rst
+1 −1 documentation/shortintro.rst
+3 −2 documentation/tools.rst
+18 −2 documentation/url_handlers.rst
+7 −3 examples/port_publisher.py
+17 −1 examples/tcp_serial_redirect.py
+3 −3 examples/wxSerialConfigDialog.py
+15 −20 examples/wxTerminal.py
+4 −2 serial/__init__.py
+3 −0 serial/__main__.py
+23 −17 serial/rfc2217.py
+2 −0 serial/rs485.py
+15 −13 serial/serialcli.py
+15 −13 serial/serialjava.py
+154 −65 serial/serialposix.py
+13 −9 serial/serialutil.py
+18 −16 serial/serialwin32.py
+4 −2 serial/threaded/__init__.py
+2 −0 serial/tools/hexlify_codec.py
+2 −0 serial/tools/list_ports.py
+17 −4 serial/tools/list_ports_common.py
+6 −4 serial/tools/list_ports_linux.py
+67 −28 serial/tools/list_ports_osx.py
+2 −0 serial/tools/list_ports_posix.py
+132 −10 serial/tools/list_ports_windows.py
+129 −63 serial/tools/miniterm.py
+2 −0 serial/urlhandler/protocol_alt.py
+258 −0 serial/urlhandler/protocol_cp2110.py
+2 −0 serial/urlhandler/protocol_hwgrep.py
+24 −11 serial/urlhandler/protocol_loop.py
+3 −1 serial/urlhandler/protocol_rfc2217.py
+18 −15 serial/urlhandler/protocol_socket.py
+4 −0 serial/urlhandler/protocol_spy.py
+12 −0 serial/win32.py
+12 −4 setup.py
+13 −13 test/handlers/protocol_test.py
1 change: 1 addition & 0 deletions tools/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
cmdline = cmdline + ['write_flash']
if len(write_option):
cmdline = cmdline + [write_option]
cmdline = cmdline + ['--flash_size', 'detect']
cmdline = cmdline + [write_addr, binary]

erase_file = ''
Expand Down

0 comments on commit 8565ac8

Please sign in to comment.