fsfw/osal/FreeRTOS/CountingSemaphore.h

35 lines
1.2 KiB
C
Raw Normal View History

2020-05-18 20:35:13 +02:00
#ifndef FRAMEWORK_OSAL_FREERTOS_COUNTINGSEMAPHORE_H_
#define FRAMEWORK_OSAL_FREERTOS_COUNTINGSEMAPHORE_H_
#include <framework/osal/FreeRTOS/BinarySemaphore.h>
2020-05-18 20:39:48 +02:00
/**
* @brief Counting semaphores, which can be acquire more than once.
* @details
* See: https://www.freertos.org/CreateCounting.html
* API of counting semaphores is almost identical to binary semaphores,
* so we just inherit from binary semaphore and provide the respective
* constructors.
*/
class CountingSemaphore: public BinarySemaphore {
2020-05-18 20:35:13 +02:00
public:
CountingSemaphore(const uint8_t maxCount, uint8_t initCount);
2020-05-18 20:35:13 +02:00
//! @brief Copy ctor, disabled
CountingSemaphore(const CountingSemaphore&) = delete;
//! @brief Copy assignment, disabled
CountingSemaphore& operator=(const CountingSemaphore&) = delete;
//! @brief Move ctor
CountingSemaphore (CountingSemaphore &&);
//! @brief Move assignment
CountingSemaphore & operator=(CountingSemaphore &&);
2020-05-27 23:41:59 +02:00
/* Same API as binary semaphore otherwise. acquire() can be called
* until there are not semaphores left and release() can be called
* until maxCount is reached. */
2020-05-29 01:41:16 +02:00
uint8_t getMaxCount() const;
2020-05-18 20:35:13 +02:00
private:
const uint8_t maxCount;
2020-05-18 20:35:13 +02:00
uint8_t initCount = 0;
};
#endif /* FRAMEWORK_OSAL_FREERTOS_COUNTINGSEMAPHORE_H_ */