jonshouse wrote:
I am using the Beta1 AT interpreter, I tried flashing beta2 but the board just sits with the blue LED on and does not work.
How do I UDP receive ?
The AT+CIPSERVER commands seems to ignore UDP data. My product requires on UDP receive as it is a core part of the protocol.
you need no 'server' for UDP, udp works without response from a 'server'
try this:
AT+CIPSTART="UDP","0",0,1025,2
now - the esp is listening at port 1025 at the ip
( AP or Station or AP + Station - exactly what you start with AT+CWMODE..
send a UDP message to the ip of the esp8266
example with delphi & udp client from indy
IdUDPClient1.send('28.0.0.0', 1025, hello world');
or with an other esp that connect with AT command the listening esp.
desination is: IP of the esp, Port of esp ( in this example 1025 )
best wishes
rudi 
best example in own src, try this:
'listening'
viewtopic.php?f=31&t=230
'sending'
viewtopic.php?f=31&t=440Statistics: Posted by rudi — Mon Aug 10, 2015 7:33 pm
]]>