Search found 5 matches
- Mon May 11, 2020 1:06 am
- Forum: General Discussion
- Topic: Delayed ping response
- Replies: 1
- Views: 2990
Delayed ping response
Hi. I'm looking into the response of the ESP32's WIFI. Using the example in esp-idf/examples/wifi/getting_started/station, I connected the ESP32 Devkit4 to the AP. I ran ping -i 0.2 192.168.0.160 from an Ubuntu machine (18.04LTS) connected to the AP, and here's the result. The average is about 1-4ms...
- Thu Apr 02, 2020 12:20 am
- Forum: General Discussion
- Topic: Where is the official AT Firmware ?
- Replies: 1
- Views: 3709
Re: Where is the official AT Firmware ?
Google Translate. Hi. According to my research, at the time of purchase ESP32 has an interpreter for the SSC command written into it. This is the factory test firmware, so rewriting it should be fine. If you want to use AT commands on the ESP32, you can write AT firmware to the "ESP32-WROOM-32 AT Bi...
- Wed Apr 01, 2020 11:32 pm
- Forum: General Discussion
- Topic: How to wait UART untill timeout or data readed delimiter
- Replies: 3
- Views: 6308
Re: How to wait UART untill timeout or data readed delimiter
I hope you find this example helpful.
https://github.com/espressif/esp-idf/tr ... _rxtxtasks
https://github.com/espressif/esp-idf/tr ... _rxtxtasks
- Tue Feb 25, 2020 12:52 am
- Forum: General Discussion
- Topic: Receive multicast packets with AT + CIPSTART
- Replies: 4
- Views: 7024
Re: Receive multicast packets with AT + CIPSTART
Thanks Helen L and xcguang.
I understand that ESP-AT does not support multicast.
Using the given bin file, the AT + CIPSTART command definitely received the multicast.
I understand that ESP-AT does not support multicast.
Using the given bin file, the AT + CIPSTART command definitely received the multicast.
- Thu Feb 13, 2020 6:20 am
- Forum: General Discussion
- Topic: Receive multicast packets with AT + CIPSTART
- Replies: 4
- Views: 7024
Receive multicast packets with AT + CIPSTART
I have a question about UDP multicast. Execute AT + CIPSTART = "UDP", "192.168.0.2", 0, 12345, 2 and OK will be displayed on the serial monitor. When I send UDP packets with PacketSender, + IPD, 5, hello is displayed. When AT + CIPSTART = "UDP", "239.192.1.2", 0, 12345, 2 is executed, the serial mon...