I have a ESP-12f module that I am going to use to download a few hundred small files from our comapnies server. Unfortunately every time I download a single file, the connection is closed and I have to re-establish a new TCP connection. I have tried this on multiple servers and always get the same result. For example, when I issue these commands on Google:
AT+CIPSTART="TCP","google.com",80
AT+CIPSEND=29
GET http://www.google.com
Google sends me the webpage data that finishes with: "CLOSE" . And then I cannot issue any new CIPSEND commands unless I re-establish the connection using AT+CIPSTART="TCP","google.com",80 .
Since a TCP connection takes about 1 second to establish and I need to repeat this hundreds of times, I lose a lot of time when downloading multiple files. I also used the "TCP keep alive" parameter from the datasheet that is explained like this:
[<TCP keep alive>] optional, detection time interval when TCP is kept alive,
this function is closed by default.
0 : disable TCP keep-alive
1 ~ 7200 : detection time interval, unit: second
I used 1 and 1000 like this:
AT+CIPSTART="TCP","google.com",80,1
AT+CIPSTART="TCP","google.com",80,1000
But none of the above seem to be working and the connection is still closed immediately after one file is downloaded.
Is there any way to keep the connection alive until I manually close it myself?Statistics: Posted by harry123 — Sat Jun 02, 2018 2:47 pm
]]>