OVMS3-idf/examples/protocols/asio/tcp_echo_server
2018-09-11 09:44:12 +08:00
..
components cmake: make main a component again 2018-09-11 09:44:12 +08:00
main cmake: make main a component again 2018-09-11 09:44:12 +08:00
asio_tcp_server_test.py asio: added socket timeout for example tests 2018-08-06 22:05:15 +02:00
CMakeLists.txt cmake: make main a component again 2018-09-11 09:44:12 +08:00
Makefile asio: initial idf port of asio library without ssl 2018-07-30 06:28:43 +00:00
README.md asio: initial idf port of asio library without ssl 2018-07-30 06:28:43 +00:00
sdkconfig.defaults asio: initial idf port of asio library without ssl 2018-07-30 06:28:43 +00:00

ASIO tcp echo server example

Simple asio echo server using WiFi STA

Example workflow

  • WiFi STA is started and trying to connect to the access point defined through make menuconfig
  • Once connected and acquired IP address, ASIO tcp 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 the access point's SSID and Password and port number
  • Run make flash monitor to build and upload the example to your board and connect to it's serial terminal
  • Wait for WiFi to connect to your access point (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.