1
0
forked from fsfw/fsfw

better init error output

This commit is contained in:
2020-07-26 03:12:04 +02:00
parent e179288c00
commit 6425c0dd4c
2 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ public:
~Mutex();
ReturnValue_t lockMutex(uint32_t timeoutMs = MutexIF::BLOCKING) override;
ReturnValue_t unlockMutex() override;
private:
SemaphoreHandle_t handle;
};