KonstantinKondrashov ec4de4fe5c example_tests: CI uses ECO0 for esp32c3 tests 4 жил өмнө
..
main 66fb5a29bb Whitespace: Automated whitespace fixes (large commit) 5 жил өмнө
CMakeLists.txt d9939cedd9 cmake: make main a component again 7 жил өмнө
Makefile 66fb5a29bb Whitespace: Automated whitespace fixes (large commit) 5 жил өмнө
README.md 18e83bcd53 Allow VFS file descriptors in select() 7 жил өмнө
example_test.py c85d949c1f ci: run Example_GENERIC for C3 4 жил өмнө
sdkconfig.ci ec4de4fe5c example_tests: CI uses ECO0 for esp32c3 tests 4 жил өмнө

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.