Skip to content

Latest commit

 

History

History
executable file
·
18 lines (12 loc) · 638 Bytes

FreeRTOScpp.md

File metadata and controls

executable file
·
18 lines (12 loc) · 638 Bytes

@page FreeRTOScpp FreeRTOS C++ Wrappers

FreeRTOScpp is a package that provides a light C++ wrapper for FreeRTOS (http://freertos.org).

It provides wrappers for the Task, Queue, Semaphore, and Mutex (including RecursiveMutex).

I find the big advantage is that these allow me to declare these items as (part of) global objects, and then the items are automatically created and configured, without needing to change the main() function.

They also provide member function style access for most of the basic operations on the items.

See @ref FreeRTOSCpp

@defgroup FreeRTOSCpp FreeRTOS C++ Wrapper @ingroup Library See @ref FreeRTOScpp