-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rt/posix): Added FreeRTOS-Plus-POSIX message queues implementation
Note: The current mq_open() implementation is changed to match the POSIX standard.
- Loading branch information
Showing
30 changed files
with
2,760 additions
and
4 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
idf_build_get_property(target IDF_TARGET) | ||
if(${target} STREQUAL "linux") | ||
idf_component_register() | ||
if(NOT CMAKE_HOST_SYSTEM_NAME STREQUAL "Darwin") | ||
find_library(LIBRT rt) | ||
target_link_libraries(${COMPONENT_LIB} INTERFACE ${LIBRT}) | ||
endif() | ||
return() | ||
endif() | ||
|
||
idf_component_register(SRCS "FreeRTOS_POSIX_mqueue.c" "FreeRTOS_POSIX_utils.c" | ||
PRIV_INCLUDE_DIRS "private_include" | ||
INCLUDE_DIRS "include") |
Oops, something went wrong.