Yes.
Later I posted it also for esp8266.
Search found 38 matches
- Mon Jul 17, 2017 10:17 am
- Forum: AT+ Commands
- Topic: Set connections available for server
- Replies: 2
- Views: 2873
- Fri Jul 14, 2017 6:27 am
- Forum: AT+ Commands
- Topic: Set connections available for server
- Replies: 2
- Views: 2873
Set connections available for server
So far, when we are doing client mode from MCU via AT, we are master and we control the flow (connect, etc). What we don't have control is when device has enabled server mode. I believe, current implementation is that server mode works as follow: 1. enable one connection to listen on desired port 2....
- Wed Nov 23, 2016 6:21 pm
- Forum: AT+ Commands
- Topic: Certain AT commands output ERROR
- Replies: 2
- Views: 6991
Re: Certain AT commands output ERROR
You don't have official AT commands from espressif flashed.
https://majerle.eu/documentation/esp826 ... ocess.html
https://majerle.eu/documentation/esp826 ... ocess.html
- Mon Nov 21, 2016 9:54 pm
- Forum: AT+ Commands
- Topic: AT+ command for HTTP GET: Download file from http server
- Replies: 4
- Views: 13701
- Thu Nov 03, 2016 3:09 pm
- Forum: AT+ Commands
- Topic: AT+CIUPDATE status
- Replies: 0
- Views: 5031
AT+CIUPDATE status
What is now the actual status of update over the air functionality for official AT commands? I understand if you have custom firmware, you have to implement yourself URL and other stuff, but for official AT it is now more than year that "has changed a bit and might not work". When it will ...
- Wed Nov 02, 2016 1:51 pm
- Forum: AT+ Commands
- Topic: SPI support for AT commands?
- Replies: 12
- Views: 19178
Re: SPI support for AT commands?
Having interrupt is something which is important and required capability. When working with SDIO, I'm sure you need that capability of interrupt too, because host MCU is your master. Anyway, if you will publish SPI based AT command communication (or not AT, maybe something else) with official softwa...
- Mon Oct 31, 2016 5:58 pm
- Forum: AT+ Commands
- Topic: Request AT commands
- Replies: 5
- Views: 8185
Re: Request AT commands
This is something it could work for me. 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 b...
- Sun Oct 30, 2016 3:24 am
- Forum: AT+ Commands
- Topic: SPI support for AT commands?
- Replies: 12
- Views: 19178
Re: SPI support for AT commands?
Where is the actual datasheet regarding SPI/SDIO communication for AT commands? UART is async between TX and RX, where SPI is not and master always makes transmission. How does ESP notify user about new data to read via SPI? How do we know how many bytes is ready to be read from ESP? These are impor...
- Tue Oct 25, 2016 5:56 am
- Forum: AT+ Commands
- Topic: Request AT commands
- Replies: 5
- Views: 8185
Re: Request AT commands
Hello pratik, 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...
- Sun Oct 23, 2016 12:47 am
- Forum: AT+ Commands
- Topic: Request AT commands
- Replies: 5
- Views: 8185
Request AT commands
To make AT software really good (which this has potential), we would need also these commands, especially for low-RAM devices. 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,c...