Change class prefix from RTOS to Rtos

This commit is contained in:
Henrik Stickann
2022-12-02 16:32:59 +01:00
parent 75f939436e
commit 57d0dd0bcd
6 changed files with 18 additions and 18 deletions

View File

@@ -17,13 +17,13 @@ namespace sta
*
* @ingroup STA_RTOS_API
*/
class RTOSMutex : public Mutex
class RtosMutex : public Mutex
{
public:
/**
* @param handle CMSIS RTOS2 mutex
*/
RTOSMutex(osMutexId_t * handle);
RtosMutex(osMutexId_t * handle);
void acquire() override;
void release() override;