esp-idf/examples/cxx/experimental/esp_event_async_cxx
Jakob Hasse 5b15f37458 fix[cxx]: improve experimental cxx examples
* use std::this_thread::sleep_for instead of
  FreeRTOS sleep functions
* adjusted/added lincense headers in examples
2020-12-16 10:10:20 +08:00
..
main fix[cxx]: improve experimental cxx examples 2020-12-16 10:10:20 +08:00
CMakeLists.txt
Makefile
README.md
sdkconfig.defaults

README.md

ESP-Event asynchronous example

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

How to use example

Configure the project

idf.py menuconfig
  • Set serial port under Serial Flasher Options.

Build and Flash

Build the project and flash it to the board, then run monitor tool to view serial output:

idf.py -p PORT flash monitor

(To exit the serial monitor, type Ctrl-].)

See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.

Example Output

The object is created twice, hence the started Eventloop and finished destruction lines appear twice.

NORMAL TESTING...
received event: test/0; data: 47
received event: test/1

TIMEOUT TESTING...
received event: test/0

TIMEOUT for event: test/0
I (10419) ESP Event C++ Async: Finished example