FreeRTOS-Cpp icon indicating copy to clipboard operation
FreeRTOS-Cpp copied to clipboard

C++17 header-only interface to the FreeRTOS kernel API.

Results 2 FreeRTOS-Cpp issues
Sort by recently updated
recently updated
newest added

This C++ wrapper looks excellent - a simple wrapper that does exactly that without ruining FreeRTOS or doing more than I ask for. Do you support `taskENTER_CRITICAL` https://www.freertos.org/taskENTER_CRITICAL_taskEXIT_CRITICAL.html ? I...

It would be nice if there were RAII wrappers for mutex and ciritical section. Using them could look like: ``` { CiriticalSection cs; // Do things inside critical section }...