Page 2 of 2

Re: MicroPython - ESP32 - Is is possible to update files?

Posted: Mon Jul 30, 2018 6:58 am
by pythoncoder
A forum search is your friend ;) It would have turned up this solution.

Re: MicroPython - ESP32 - Is is possible to update files?

Posted: Thu Aug 02, 2018 11:14 am
by guyd
@pythoncoder,
last time I used telnet server you've suggested- everything went OK, even from a linux terminal.
since I needed to flash again my ESP32 board ( and copied exact files again), when I start the exact same telnet ( I see a message that telnet server is running with relevant IP ), but when I try to connect from Linux or Putty - though it connects, but doesn't respond to any key stroke.

Any idea why?

Re: MicroPython - ESP32 - Is is possible to update files?

Posted: Fri Aug 03, 2018 10:13 am
by guyd
and after reflashing again ( other reasons :) ):
got this"

Code: Select all

>>> import utelnetserver
>>> utelnetserver.start()
Telnet server started on 192.168.2.150:23
>>> Telnet connection from: ('192.168.2.101', 36718)
Traceback (most recent call last):
  File "utelnetserver.py", line 81, in accept_telnet_connect
OSError: stream operation not supported

Re: MicroPython - ESP32 - Is is possible to update files?

Posted: Sun Feb 24, 2019 1:37 am
by qanuta
guyd,

I'm struggling with this same error on utelnetserver.py line 81 -- did you ever find a solution?

Re: MicroPython - ESP32 - Is is possible to update files?

Posted: Sun Feb 24, 2019 6:41 am
by Roberthh

Re: MicroPython - ESP32 - Is is possible to update files?

Posted: Wed Feb 27, 2019 1:28 am
by qanuta
That did the trick. Thanks!