OVMS3-idf/examples/protocols/sockets/udp_server
David Cermak 5f4e2cf391 socket examples: fix random ci failure on reading ipv6 address
dut.expect() returns groups of a matching regex, but could be truncated upon reading/buffering. fixed by forcing expect to acquire exactly 8 octets of IPv6 address, i.e. not supporting short-handed entries such as fe80::0000..
2020-05-15 04:02:33 +00:00
..
main socket examples: add tests for server and client applications 2020-03-23 12:19:38 +00:00
CMakeLists.txt examples/protocols/sockets: use common network component 2019-04-15 03:32:05 +00:00
example_test.py socket examples: fix random ci failure on reading ipv6 address 2020-05-15 04:02:33 +00:00
Makefile examples/protocols/sockets: use common network component 2019-04-15 03:32:05 +00:00
README.md example: Remove duplicate commands and invalid serial port information 2020-04-08 13:17:48 +02:00
sdkconfig.ci socket examples: add tests for server and client applications 2020-03-23 12:19:38 +00:00

UDP Server example

(See the README.md file in the upper level 'examples' directory for more information about examples.)

The application creates UDP socket with the specified port number and waits for the data to be received. Received data are printed as ASCII text and retransmitted back to the client.

How to use example

In order to create UDP client that communicates with UDP server example, choose one of the following options.

There are many host-side tools which can be used to interact with the UDP/TCP server/client. One command line tool is netcat which can send and receive many kinds of packets. Note: please replace 192.168.0.167 3333 with desired IPV4/IPV6 address (displayed in monitor console) and port number in the following commands.

In addition to those tools, simple Python scripts can be found under sockets/scripts directory. Every script is designed to interact with one of the examples.

Send UDP packet via netcat

echo "Hello from PC" | nc -w1 -u 192.168.0.167 3333

Receive UDP packet via netcat

echo "Hello from PC" | nc -w1 -u 192.168.0.167 3333

UDP client using netcat

nc -u 192.168.0.167 3333

Python scripts

Script example_test.py could be used as a counter part to the udp-server application, IP address and the message to be send to the server shall be stated as arguments. Example:

python example_test.py 192.168.0.167 Message

Note that this script is used in automated tests, as well, so the IDF test framework packages need to be imported; please add $IDF_PATH/tools/ci/python_packages to PYTHONPATH.

Hardware Required

This example can be run on any commonly available ESP32 development board.

Configure the project

idf.py menuconfig

Set following parameters under Example Configuration Options:

  • Set IP version of the example to be IPV4 or IPV6.

  • Set Port number that represents remote port the example will create.

Configure Wi-Fi or Ethernet under "Example Connection Configuration" menu. See "Establishing Wi-Fi or Ethernet Connection" section in examples/protocols/README.md for more details.

Build and Flash

Build the project and flash it to the board, then run monitor tool to view serial output:

idf.py -p PORT flash monitor

(To exit the serial monitor, type Ctrl-].)

See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.

Troubleshooting

Start server first, to receive data sent from the client (application).