OVMS3-idf/examples/protocols/asio/udp_echo_server
2020-03-09 13:41:56 +01:00
..
main esp_netif and examples: using wifi driver handle, update examples and tests to pass the CI 2019-11-13 12:36:25 +01:00
asio_udp_server_test.py Add multi-target support for performance tests 2020-03-09 13:41:56 +01:00
CMakeLists.txt ASIO: fixed undefined ref to atomic functions and enabled examples for CI (esp32s2beta) 2019-11-01 11:12:47 +08:00
Makefile examples/protocols/asio: use common network component 2019-04-15 03:32:05 +00:00
README.md build system: Use CMake-based build system as default when describing commands 2019-07-08 17:31:27 +10:00
sdkconfig.defaults Rename Kconfig options (components/esp32) 2019-05-21 09:09:01 +02:00

Asio UDP echo server example

Simple Asio UDP echo server using WiFi STA or Ethernet.

Example workflow

  • Wi-Fi or Ethernet connection is established, and IP address is obtained.
  • Asio UDP server is started on port number defined through the project configuration
  • Server receives and echoes back messages transmitted from client

Running the example

  • Open the project configuration menu (idf.py menuconfig) to configure Wi-Fi or Ethernet. See "Establishing Wi-Fi or Ethernet Connection" section in examples/protocols/README.md for more details.
  • Set server port number in menuconfig, "Example configuration".
  • Run idf.py -p PORT flash monitor to build and upload the example to your board and connect to it's serial terminal.
  • Wait for the board to connect to WiFi or Ethernet (note the IP address).
  • You can now send a UDP message and check it is repeated, for example using netcat nc -u IP PORT.

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