We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f1e2c2 commit 28556fbCopy full SHA for 28556fb
esptool/loader.py
@@ -708,6 +708,14 @@ def connect(
708
"Connection may fail if the chip is not in bootloader "
709
"or flasher stub mode.",
710
)
711
+
712
+ if self._port.name.startswith("socket:"):
713
+ mode = "no_reset" # not possible to toggle DTR/RTS over a TCP socket
714
+ print(
715
+ "Note: It's not possible to reset the chip over a TCP socket. "
716
+ "Resetting to bootloader has been disabled."
717
+ )
718
719
print("Connecting...", end="")
720
sys.stdout.flush()
721
last_error = None
0 commit comments