The ports/freertos/
directory contains a generic platform-independent QP/C++ port to FreeRTOS kernel↑ (version 10). The provided QP port to FreeRTOS has been designed generically to rely exclusively on the existing FreeRTOS API. This means that the port should run without changes on any CPU/compiler platform supported by FreeRTOS.
The QP/C++-FreeRTOS port works as follows:
StaticTask_t
) and requires a private stack space.taskENTER_CRITICAL()
/taskEXIT_CRITICAL()
.taskENTER_CRITICAL_FROM_ISR()
/taskEXIT_CRITICAL_FROM_ISR()
.QACTIVE_POST_FROM_ISR()
, QF_PUBLISH_FROM_ISR()
, etc. These "FromISR" QP/C++ APIs must be used inside ISRs instead of the task-level APIs (QACTIVE_POST()
, QF_PUBLISH()
, etc.) and conversely, they cannot be used inside tasks and active objects. Unfortunately, FreeRTOS provides no generic way to enforce the proper API use via assertions.StaticQueue_t
) for active object event queues.vApplicationTickHook()
to periodically invoke the QP/C++ clock tick QF_TICK_X_FROM_ISR(). (NOTE: the vApplicationTickHook()
executes in the ISR context and therefore mandates the use of the "FromISR" APIs).QP/C++ Source Files Needed in this QP/C++ Port
It is important to note that not all QP/C++ source files should be included in the build process. Specifically, the QP/C++ source file qf_actq.c
must NOT be included in the build, because this functionality is taken from FreeRTOS. Here is the list of QP/C++ source files needed:
The QP/C++ port to FreeRTOS comes with examples located in the directory qpcpp/examples/freertos
. Currently, the examples are provided for the following boards and development toolchains:
Writing ISRs for QP/C++-FreeRTOS
The provided examples show how to write regular "kernel-aware" ISRs as well as "kernel-unaware" ISRs for QP/C++-FreeRTOS. (See also the FreeRTOS documentation for configMAX_SYSCALL_INTERRUPT_PRIORITY.
Here is an example of a regular "kernel-aware" ISR (note the use of the FromISR
suffix in the QP/C++ APIs):
Here is an example of a "kernel-unaware" ISR (See also the FreeRTOS documentation for configMAX_SYSCALL_INTERRUPT_PRIORITY ):
Writing FreeRTOS Hooks Running in ISR Context
FreeRTOS provides "hooks" that are user functions that execute in the ISR context (e.g., vApplicationTickHook()
). Such ISR-level functions are closely related to ISRs and should also use exclusively only the "FromISR" APIs. Here is an example of the vApplicationTickHook()
:
Starting Active Objects in QP/C++-FreeRTOS
As mentioned in the FreeRTOS port summary, the QP/C++ port to FreeRTOS uses the static memory allocation of FreeRTOS. This means that all memory for an active object, including the private queue buffer and the private stack for the the associated FreeRTOS task must be allocated by the user. Here is an example code that starts an active object: