Renz Christian Bagaporo 6771eead80 examples: use new component registration api пре 6 година
..
main 6771eead80 examples: use new component registration api пре 6 година
CMakeLists.txt aa4a7804ec examples/protocols/asio: use common network component пре 6 година
Makefile aa4a7804ec examples/protocols/asio: use common network component пре 6 година
README.md aa4a7804ec examples/protocols/asio: use common network component пре 6 година
asio_udp_server_test.py aa4a7804ec examples/protocols/asio: use common network component пре 6 година
sdkconfig.defaults 0ae53691ba Rename Kconfig options (components/esp32) пре 6 година

README.md

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 make menuconfig
  • Server receives and echoes back messages transmitted from client

Running the example

  • Run make 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 make 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.