feat(rt/posix): Added FreeRTOS-Plus-POSIX message queues implementation

Note: The current mq_open() implementation is changed to match
      the POSIX standard.
This commit is contained in:
Jakob Hasse
2024-02-01 09:19:46 +08:00
parent 5448703663
commit bddc1e95ef
30 changed files with 2760 additions and 4 deletions

View File

@@ -0,0 +1,3 @@
idf_component_register(SRCS "posix_mqueue_example_main.c"
INCLUDE_DIRS "."
PRIV_REQUIRES rt)