esp-idf/examples/system/rt_mqueue
2024-07-16 16:06:19 +08:00
..
main feat(rt/posix): Added FreeRTOS-Plus-POSIX message queues implementation 2024-07-11 21:08:01 +02:00
CMakeLists.txt feat(rt/posix): Added FreeRTOS-Plus-POSIX message queues implementation 2024-07-11 21:08:01 +02:00
pytest_rt_mqueue.py feat(rt/posix): Added FreeRTOS-Plus-POSIX message queues implementation 2024-07-11 21:08:01 +02:00
README.md feat(esp32c61): disable unsupported build test 2024-07-16 16:06:19 +08:00

Supported Targets ESP32 ESP32-C2 ESP32-C3 ESP32-C5 ESP32-C6 ESP32-C61 ESP32-H2 ESP32-P4 ESP32-S2 ESP32-S3

POSIX Message Queue Example

A simple example using a POSIX message queue. Two tasks are reading from and writing to a POSIX message queue.

How to use example

Hardware Required

This example should be able to run on any supported Espressif SoC development board.

Build and Flash

Enter idf.py -p PORT flash monitor to build, flash and monitor the project.

(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

If you see the following infinite console output, your example should be running correctly:

sending: 0
received: 0
sending: 1
received: 1
sending: 2
received: 2
sending: 3
received: 3
...