ESP8266 Developer Zone The Official ESP8266 Forum 2016-11-21T21:54:43+08:00 https://bbs.espressif.com:443/feed.php?f=16&t=626 2016-11-21T21:54:43+08:00 2016-11-21T21:54:43+08:00 https://bbs.espressif.com:443/viewtopic.php?t=626&p=10602#p10602 <![CDATA[Re: AT+ command for HTTP GET: Download file from http server]]>
https://majerle.eu/documentation/gsm/html/index.html

Statistics: Posted by tilz0R — Mon Nov 21, 2016 9:54 pm


]]>
2016-11-07T23:55:42+08:00 2016-11-07T23:55:42+08:00 https://bbs.espressif.com:443/viewtopic.php?t=626&p=10443#p10443 <![CDATA[Re: AT+ command for HTTP GET: Download file from http server]]>
sidekick wrote:
My apologies for late response. Yes, I posted this issue assuming that ESP8266 also supports this command but as you've mentioned and also from the ESP8266, AT+ instruction set manual v0.25, it is clear that ESP8266 firmware does not support this command. OTOH. I was able to successfully download the firmware binary file (It was for OTA purposes) over GSM using SIMCOM's AT+ command sets. Since the file to be downloaded is bigger than the maximum stack size of my target MCU, I had to implement a buffering mechanism and primitive flow control (Glad that AT+ command set of SIMCOM's SIM800H allows one to specify offset and length in AT+HTTPREAD=<offset>,<len> while trying to download over HTTP)


Hello !
I'm trying to do exactly what you have done with the SIMCOM's SIM800 (download a bin file trough the HTTP Application, and flash my MCU -ESP8266- by the way).
If you have the time, could you share some of your works here or by mail : raphael@42factory.com ?
It would be really nice of you

Statistics: Posted by Raphiki — Mon Nov 07, 2016 11:55 pm


]]>
2016-05-12T05:32:43+08:00 2016-05-12T05:32:43+08:00 https://bbs.espressif.com:443/viewtopic.php?t=626&p=6834#p6834 <![CDATA[Re: AT+ command for HTTP GET: Download file from http server]]> Statistics: Posted by sidekick — Thu May 12, 2016 5:32 am


]]>
2015-06-23T11:57:05+08:00 2015-06-23T11:57:05+08:00 https://bbs.espressif.com:443/viewtopic.php?t=626&p=2353#p2353 <![CDATA[Re: AT+ command for HTTP GET: Download file from http server]]>
It seems that you are not using the AT firmware provided from Espressif System. Our AT firmware didn't have the command "AT+HTTPXXX"

Our AT firmware is on BBS http://bbs.espressif.com/viewtopic.php?f=5&t=554

Here is an example of sending HTTP packet http://bbs.espressif.com/viewtopic.php?f=10&t=560

I'm not sure if it can help or not. sorry for the inconvenience.

Statistics: Posted by ESP_Faye — Tue Jun 23, 2015 11:57 am


]]>
2015-06-19T15:40:42+08:00 2015-06-19T15:40:42+08:00 https://bbs.espressif.com:443/viewtopic.php?t=626&p=2318#p2318 <![CDATA[AT+ command for HTTP GET: Download file from http server]]> http://abc.com/xyz.hex). I've a custom board with SIM800H GSM/GPRS module on it. I wish to download the file and store it on on-board memory. I'm issuing following set of command:

Code:

AT+HTTPINIT
AT+HTTPPARA=\"URL\",\"http://abc.com/xyz.hex"
AT+HTTPPARA=\"CID\",1
AT+HTTPACTION=0

wait for +HTTPACTION" response

After the last command, i'm assuming that I would get +HTTPACTION as the resposne, and the download should happen, bunt instead, i get error in connection. Please note that after every command, i'm waiting for about 500ms for 'OK' response

Statistics: Posted by sidekick — Fri Jun 19, 2015 3:40 pm


]]>