Page 1 of 1

UDP reception using AT-COMMANDS

Posted: Wed Jun 03, 2020 2:44 pm
by iw2lsi
Hi All,

anyone has successfully configured an ESP32 for UDP reception using AT-COMMANDS ?

So far, I can send a 6-bytes (broadcast) frame using:

AT+CIPSTART="UDP","192.168.1.255",1235

followed by a

AT+CIPSEND=6

and it works as expected.... but any attempt to receive an UDP frames didn't work...

Is it possible ?

Best Regards

Giampaolo

Re: UDP reception using AT-COMMANDS

Posted: Thu Jun 04, 2020 10:10 am
by iw2lsi
problem solved...

AT+CIPSTART="UDP","0.0.0.0",1235,1235,2

Giampaolo