Ivan Grokhotkov
Ivan Grokhotkov
ESP8266 has hardware RTS/CTS, so this should be possible. But i don't know if those pins are broken out on ESP-01 (need to check pinout). Espressif said that they will...
They mentioned some bits in UART configuration registers that correspond to rts and cts [here](http://bbs.espressif.com/viewtopic.php?f=7&t=27&sid=2507a4bdd37b058bdc2680a943499b50). Maybe those signals are not routed to pads. As I said, I need to check...
What is your CPU? How much space do you have in your buffer? If you have less RAM than esp8266, maybe you should consider using esp8266 as your CPU instead....
It is possible, but will require implementing an additional tx buffer on my side, this will take some time. I can add an option to +CIPRD command to read just...
Well this is not a typical problem nowadays because usually hosts are faster than modems and have more RAM. Your case is opposite, more like it used to be long...
I've made some progress on this issue. Transmitted data is now first sent into a circular buffer, and a separate task pulls data from circular buffer whenever CTS goes high....
Hi, yes, it's actually mentioned in the documentation (search for \00). Need to rework things a bit to implement that. On Nov 28, 2014 8:33 PM, "ivanroberto" [email protected] wrote: >...
Hi, First of all, thank you for your updates. I have already cherry-picked the first commit (position-independent makefile) and the two commits related to SDK 0.9.3, on Monday. Thank you...
Could you please update the makefile to enable firmware generation (0x00000.bin, 0x40000.bin, and firmware.bin) with your tool? My comments regarding hard-coded section names and addresses can be taken into account...
It seems that calling espconn_disconnect does not work for server (listening) sockets. Looking at the source of espconn_tcp_server function (lwip/app/espconn_tcp.c), they just create a pcb, set it up the server,...