Chen Yudong 94a54d574b CI: fix connection failures in asio example tests %!s(int64=4) %!d(string=hai) anos
..
main 94a54d574b CI: fix connection failures in asio example tests %!s(int64=4) %!d(string=hai) anos
CMakeLists.txt 845003a1c3 ASIO: fixed undefined ref to atomic functions and enabled examples for CI (esp32s2beta) %!s(int64=6) %!d(string=hai) anos
Makefile aa4a7804ec examples/protocols/asio: use common network component %!s(int64=6) %!d(string=hai) anos
README.md 47bbb107a8 build system: Use CMake-based build system as default when describing commands %!s(int64=6) %!d(string=hai) anos
asio_tcp_server_test.py 94a54d574b CI: fix connection failures in asio example tests %!s(int64=4) %!d(string=hai) anos
sdkconfig.defaults 0ae53691ba Rename Kconfig options (components/esp32) %!s(int64=6) %!d(string=hai) anos

README.md

Asio TCP echo server example

Simple Asio TCP echo server using WiFi STA or Ethernet.

Example workflow

  • Wi-Fi or Ethernet connection is established, and IP address is obtained.
  • Asio TCP 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 TCP message and check it is repeated, for example using netcat nc IP PORT.

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