I want to send the 25bytes data constantly per 10ms.
But esp8266 sends the data when the buffer is filled with 2048bytes data.
I tried adding 0x0d(CR) and 0x0a(LF) at the end of the buffer.
Also I tried AT command as "AT+CIPSEND=25". (25 means buffer size)
What can I do for this situation?
I attach the code for configuration.
--------------------------------------------------------------------------------------------------
AT+CIPSTART="TCP","192.168.0.7",1490
AT+CIPMODE=1
AT+CIPSEND
--------------------------------------------------------------------------------------------------