2020-06-05 17:55:03 +02:00
|
|
|
#ifndef FRAMEWORK_OSAL_FREERTOS_MUTEX_H_
|
|
|
|
#define FRAMEWORK_OSAL_FREERTOS_MUTEX_H_
|
|
|
|
|
|
|
|
#include <framework/ipc/MutexIF.h>
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief OS component to implement MUTual EXclusion
|
|
|
|
*
|
|
|
|
* @details
|
|
|
|
* Mutexes are binary semaphores which include a priority inheritance mechanism.
|
|
|
|
* Documentation: https://www.freertos.org/Real-time-embedded-RTOS-mutexes.html
|
|
|
|
* @ingroup osal
|
|
|
|
*/
|
|
|
|
class Mutex : public MutexIF {
|
|
|
|
public:
|
|
|
|
Mutex() = default;
|
2020-06-05 21:36:50 +02:00
|
|
|
ReturnValue_t lockMutex(uint32_t timeoutMs = MutexIF::BLOCKING) override;
|
2020-06-05 17:55:03 +02:00
|
|
|
ReturnValue_t unlockMutex() override;
|
|
|
|
|
|
|
|
std::timed_mutex* getMutexHandle();
|
|
|
|
private:
|
|
|
|
bool locked = false;
|
|
|
|
std::timed_mutex mutex;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* FRAMEWORK_FREERTOS_MUTEX_H_ */
|