This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
Lab-Project-FreeRTOS-POSIX/README.md

16 lines
1.5 KiB
Markdown
Raw Normal View History

2019-11-21 03:45:10 +08:00
## FreeRTOS+POSIX: Portable Operating System Interface (POSIX threading wrapper) for FreeRTOS
2021-08-21 13:30:05 +08:00
The Portable Operating System Interface (POSIX) is a family of standards specified by the IEEE Computer Society for maintaining compatibility between operating systems. FreeRTOS+POSIX implements *a subset* of the [POSIX threading](https://pubs.opengroup.org/onlinepubs/7908799/xsh/threads.html) API. This subset allows application developers familiar with POSIX API to develop a FreeRTOS application using POSIX like threading premitives.
2019-11-21 03:45:10 +08:00
2021-08-21 13:30:05 +08:00
With FreeRTOS+POSIX, an existing POSIX threading compliant application can not be ported to run on the FreeRTOS kernel, because FreeRTOS+POSIX does not implement more than 80% of the POSIX API. Additionally, a library designed for use with POSIX threading compatible operating systems can not be ported to FreeRTOS kernel based applications using this wrapper.
2019-11-21 03:45:10 +08:00
For more on FreeRTOS+POSIX, please visit [freertos.org](https://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_POSIX/index.html)
2020-02-22 03:51:40 +08:00
This repository only contains source code. For demo applications, please visit https://github.com/FreeRTOS/FreeRTOS-Labs.
2020-02-22 03:51:40 +08:00
## To consume FreeRTOS+POSIX
It is recommended to use this repository as a submodule. Please refer to [Git Tools — Submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules).
2020-02-22 03:51:40 +08:00
## Notes
This project is undergoing optimizations or refactorization to improve memory usage, modularity, documentation, demo usability, or test coverage.