Page 1 of 1

esp32 does not connect via putty

Posted: Wed Aug 30, 2017 5:06 pm
by laz7591
I'm new at esp32.
Following http://esp-idf.readthedocs.io/en/latest ... ndex.html# successfully installed Toolchain and ESP_IDF, connected ESP32 to PC (win7), port is USB-SERIAL CH340 (COM5), but running Putty and opening serial line nothing happens. Putty parameters are set up as win device mgr com port is set.
Can you help me why?

The dev board is Geekcreit® ESP32-DevKit ESP32.

Running MSYS/Mingw32 ls -l /dev/tty* comes:
crw-rw-rw- 1 Hp None 117, 5 Aug 30 18:28 /dev/ttyS5

Re: esp32 does not connect via putty

Posted: Fri Sep 01, 2017 7:50 am
by kurtzweber
Hi

try to compile an example and upload on the board...

Re: esp32 does not connect via putty

Posted: Fri Sep 01, 2017 3:28 pm
by laz7591
Thanks,
after recomliping and quitting PUTTY everything went ok. :D

Re: esp32 does not connect via putty

Posted: Fri Sep 01, 2017 5:05 pm
by rudi ;-)
laz7591 wrote:I'm new at esp32.
Following http://esp-idf.readthedocs.io/en/latest ... ndex.html# successfully installed Toolchain and ESP_IDF, connected ESP32 to PC (win7), port is USB-SERIAL CH340 (COM5), but running Putty and opening serial line nothing happens. Putty parameters are set up as win device mgr com port is set.
Can you help me why?

The dev board is Geekcreit® ESP32-DevKit ESP32.

Running MSYS/Mingw32 ls -l /dev/tty* comes:
crw-rw-rw- 1 Hp None 117, 5 Aug 30 18:28 /dev/ttyS5
windows com port start with COM1... COM2...COM3 and so on
/dev/tty* start with /dev/ttyS0 ... /dev/ttyS1 ... /dev/ttyS2 and so on

if you runs:
Running MSYS/Mingw32 ls -l /dev/tty* comes:
crw-rw-rw- 1 Hp None 117, 5 Aug 30 18:28 /dev/ttyS5
CH340 then is on /dev/ttyS5 right?
but you use COM5 - think this is wrong if there is CH340 from your board is on /dev/ttyS5

try putty with COM6
or try putty with /dev/ttyS5
( cygwin, mingw msys )

and you are done

best wishes
rudi ;-)

Re: esp32 does not connect via putty

Posted: Sat Sep 02, 2017 6:33 pm
by laz7591
Thanks,
putty and serial comms is ok.
First stumblings... :lol: