I find that the module stops listening to the socket at random.
For example the following linux script I use to send data to all station on the wireless LAN
#!/bin/bash
while :
do
D=`date`
echo $D
echo $D |socat - UDP4-DATAGRAM:255.255.255.255:2081,broadcast
sleep 1
done
I then set the ESP to socket listen
AT+CWJAP="bla","blabla"
AT+CIPMUX=1
AT+CIPSERVER=1,2081
AT+CIPSTO=0
Data starts to appear, so far so good. But after a min or two data stops appearing, it will sometimes start to re-appear, sometimes not
Sending UDP data to the module fast sometimes causes the module to reset itself.
I have tried every firmware image I can get my hands on, does anyone have a firmware binary that works for UDP receive ?
Thanks,
Jon