additonal doc for freeRTOS semaphores

This commit is contained in:
Robin Müller 2020-08-27 17:24:40 +02:00
parent b9314cffb9
commit 4d1b1ba506
2 changed files with 6 additions and 0 deletions

View File

@ -14,6 +14,9 @@
* @details
* Additional information: https://www.freertos.org/RTOS-task-notifications.html
* and general semaphore documentation.
* This semaphore is bound to the task it is created in!
* Take care of calling this function with the correct executing task,
* (for example in the initializeAfterTaskCreation() function).
*/
class BinarySemaphoreUsingTask: public SemaphoreIF,
public HasReturnvaluesIF {

View File

@ -16,6 +16,9 @@ extern "C" {
* @details
* Additional information: https://www.freertos.org/RTOS-task-notifications.html
* and general semaphore documentation.
* This semaphore is bound to the task it is created in!
* Take care of calling this function with the correct executing task,
* (for example in the initializeAfterTaskCreation() function).
*/
class CountingSemaphoreUsingTask: public SemaphoreIF {
public: