ESP8266 Developer Zone The Official ESP8266 Forum 2016-10-31T17:58:47+08:00 https://bbs.espressif.com:443/feed.php?f=16&t=2906 2016-10-31T17:58:47+08:00 2016-10-31T17:58:47+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2906&p=10366#p10366 <![CDATA[Re: Request AT commands]]> My question now is how do I know from host MCU when data are available?

Something like +IPDREADY or similar should be received from ESP to notify host MCU about new data.

Will this go in official AT software? Since I'm making new AT parser library this would be very great feature.

Statistics: Posted by tilz0R — Mon Oct 31, 2016 5:58 pm


]]>
2016-10-31T15:49:40+08:00 2016-10-31T15:49:40+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2906&p=10363#p10363 <![CDATA[Re: Request AT commands]]> You can download(file: esp8266_nonos_v1.5.3.zip) from below.
FTP server: download.espressif.com port: 21
Account:esp_res_download
Password:YrzP5xeMF

Please try it!~~ :D

Statistics: Posted by Guest — Mon Oct 31, 2016 3:49 pm


]]>
2016-10-26T10:26:14+08:00 2016-10-26T10:26:14+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2906&p=10271#p10271 <![CDATA[Re: Request AT commands]]>

Let me know who I can contact for more informations regarding this features in core AT software provided from your side.

Contact who? People at Espressif? For that you may use the Contact page. Your request will be routed to the relevant people :) :
http://www.espressif.com/en/company/con ... -questions

Statistics: Posted by Guest — Wed Oct 26, 2016 10:26 am


]]>
2016-10-25T05:56:09+08:00 2016-10-25T05:56:09+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2906&p=10255#p10255 <![CDATA[Re: Request AT commands]]>
this is definetelly what I did for myelf, except I can't modify current AT software since it is precompiled.

But according to question I got regarding my AT parser library, this features would definetelly be usable by users.

Let me know who I can contact for more informations regarding this features in core AT software provided from your side.
Very useful features.

Statistics: Posted by tilz0R — Tue Oct 25, 2016 5:56 am


]]>
2016-10-24T19:59:30+08:00 2016-10-24T19:59:30+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2906&p=10248#p10248 <![CDATA[Re: Request AT commands]]> By the way, it is possible for anyone who writes programs for the ESP8266 to add custom AT commands. If you really need this done, you may contact ESP8266 developers on the forum to do it for you!
Officially rolling this out may take time. Thanks for using the ESP8266!

Statistics: Posted by Guest — Mon Oct 24, 2016 7:59 pm


]]>
2016-10-23T00:47:54+08:00 2016-10-23T00:47:54+08:00 https://bbs.espressif.com:443/viewtopic.php?t=2906&p=10229#p10229 <![CDATA[Request AT commands]]>
These are:
- Get data manually. Instead of auto +IPD, user should call AT+IPD command:
AT+IPD=n,x\r\n

where:
n..connection number
x..number of bytes to read

Response:
+IPD,conn_number,bytes_in_response,bytes_still_in_esp_memory\r\n
actual data here.

This feature could be activated or disabled using AT+CIPRXGET command.
This feature is also on GSM modules, where this is not primary feature. So I think it can be implemented easily here.

Another thing would be to limit +IPD data at a time.
If there is limit set to 100 bytes and there is 1460 bytes of network data, send 15 times +IPD statement.
Easier to work with when working with small RAM embedded systems.

Next command would be for set HOST name
AT+SETHOSTNAME="host_name"\r\n

Statistics: Posted by tilz0R — Sun Oct 23, 2016 12:47 am


]]>