Doxygen: Sync to SYNC

This commit is contained in:
@CarlWachter 2024-01-06 17:21:06 +01:00
parent f193cde9be
commit 5d13c813e4
4 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@
*/ */
/** /**
* @defgroup STA_RTOS_Sync Process synchronization * @defgroup STA_RTOS_SYNC Process synchronization
* @ingroup STA_RTOS_API * @ingroup STA_RTOS_API
* @brief Classes for process synchronization. * @brief Classes for process synchronization.
*/ */

View File

@ -14,7 +14,7 @@ namespace sta
/** /**
* @brief Implementation of Event using CMSIS RTOS2. * @brief Implementation of Event using CMSIS RTOS2.
* *
* @ingroup STA_RTOS_Sync * @ingroup STA_RTOS_SYNC
*/ */
class RtosEvent : public Event class RtosEvent : public Event
{ {

View File

@ -13,7 +13,7 @@ namespace sta
{ {
/** /**
* @brief Implementation of Mutex interface using CMSIS RTOS2. * @brief Implementation of Mutex interface using CMSIS RTOS2.
* @ingroup STA_RTOS_Sync * @ingroup STA_RTOS_SYNC
*/ */
class RtosMutex : public Mutex class RtosMutex : public Mutex
{ {

View File

@ -14,7 +14,7 @@ namespace sta
/** /**
* @brief Implementation of Signal interface using CMSIS RTOS2. * @brief Implementation of Signal interface using CMSIS RTOS2.
* *
* @ingroup STA_RTOS_Sync * @ingroup STA_RTOS_SYNC
* *
*/ */
class RtosSignal : public Signal class RtosSignal : public Signal