Roland Dobai e1dc92b60b Add system example tests %!s(int64=5) %!d(string=hai) anos
..
main 31b2702387 esp_netif, examples: esp_netif_init() moved into ESP_ERROR_CHECK() %!s(int64=6) %!d(string=hai) anos
CMakeLists.txt d9939cedd9 cmake: make main a component again %!s(int64=7) %!d(string=hai) anos
Makefile 9784df1c3a asio: examples renamed to have consistent binary names when build in make and CMake %!s(int64=7) %!d(string=hai) anos
README.md 18e83bcd53 Allow VFS file descriptors in select() %!s(int64=7) %!d(string=hai) anos
example_test.py e1dc92b60b Add system example tests %!s(int64=5) %!d(string=hai) anos

README.md

Synchronous I/O multiplexing example

The example demonstrates the use of synchronous I/O multiplexing by the select() function with UART and socket file descriptors. The example starts three tasks:

  1. The first task writes periodically to the UART1 file descriptor.
  2. The second task writes periodically to the socket descriptor.
  3. Both UART1 and the socket are configured to act as loopbacks. The third task detects by the use of select() whether it is possible to read from UART1 or the socket, and receives the sent messages from the other tasks.

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